Open manashmandal opened 6 years ago
@manashmndl if you are looking for the lstm model, you could find the training script, lstm_ctc.py in the repo. For the wavenet model, I'm using a pretrained model that I got from here.
@chiachunfu thanks for your answer, but which MFCC implementation did you follow? The librosa one or the other library?
@manashmndl I used the mfcc function implemented in python_speech_features module.
How did you train your model? Could you please provide the training file as well?
On
Data_Process.ipynb
file when calculating m, v and s you used mfcc parameters like this,But when I am running other cells on my data,
This throws an exception that shape doesn't match, so I changed the function
convert_wav_mfcc
to thisNow everything works fine.