fix audio shape bug for audio len

pull/691/head
Hui Zhang 3 years ago
parent 718bd30765
commit 9c0b6c5bb0

@ -271,7 +271,7 @@ class SpeechCollator():
utts.append(utt)
# audio
audios.append(audio) # [T, D]
audio_lens.append(audio.shape[1])
audio_lens.append(audio.shape[0])
# text
# for training, text is token ids
# else text is string, convert to unicode ord

Loading…
Cancel
Save