Upload model
Browse files
model.py
CHANGED
|
@@ -137,7 +137,6 @@ class WavJEPA(nn.Module):
|
|
| 137 |
)
|
| 138 |
cur_frames = audio.shape[-1]
|
| 139 |
pad_frames = self.target_length - (cur_frames % self.target_length)
|
| 140 |
-
print(pad_frames)
|
| 141 |
if pad_frames > 0:
|
| 142 |
# Padding with constant 0s
|
| 143 |
pad_arg = (
|
|
|
|
| 137 |
)
|
| 138 |
cur_frames = audio.shape[-1]
|
| 139 |
pad_frames = self.target_length - (cur_frames % self.target_length)
|
|
|
|
| 140 |
if pad_frames > 0:
|
| 141 |
# Padding with constant 0s
|
| 142 |
pad_arg = (
|