You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While fine-tuning works as expected, doing regular training with a dataset that isn't LJSpeech would eventually cause a NaN loss at some point.
The culprit appears to be the following line, which causes a division by zero if wav happens to contain perfect silence:
While fine-tuning works as expected, doing regular training with a dataset that isn't LJSpeech would eventually cause a NaN loss at some point.
The culprit appears to be the following line, which causes a division by zero if
wav
happens to contain perfect silence:hifigan/hifigan/dataset.py
Line 106 in 374a456
I'm not sure what the best solution for this would be, as a quick fix I simply clipped the divisor so it can't reach zero:
The text was updated successfully, but these errors were encountered: