Hi!
Firstly, thanks for releasing this work on GitHub -- it's been super useful in my research.
The problem seems to be in the call to wavfile_to_mfccs in the TIMIT pre-processing here
mfccs_and_deltas, segment_duration_frames, hop_duration_frames = utils.wavfile_to_mfccs(wavfile)
But the return values of wavfile_to_mfccs have the last two arguments switched (here):
return mfccs_and_deltas, hop_length, n_fft
If you want, I can put in a one-line PR fixing this.
Hi!
Firstly, thanks for releasing this work on GitHub -- it's been super useful in my research.
The problem seems to be in the call to
wavfile_to_mfccsin the TIMIT pre-processing heremfccs_and_deltas, segment_duration_frames, hop_duration_frames = utils.wavfile_to_mfccs(wavfile)But the return values of
wavfile_to_mfccshave the last two arguments switched (here):return mfccs_and_deltas, hop_length, n_fftIf you want, I can put in a one-line PR fixing this.