fx models dimension bug

This commit is contained in:
adamnsandle
2021-01-11 12:13:46 +00:00
parent bcba7acdb0
commit 07687e33d8
3 changed files with 0 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -66,7 +66,6 @@ def get_speech_ts(wav: torch.Tensor,
step = int(num_samples / num_steps) # stride / hop
outs = []
to_concat = []
for i in range(0, len(wav), step):
chunk = wav[i: i+num_samples]
if len(chunk) < num_samples: