Results of training on my own dataset
dongdongdashen opened this issue · comments
dongdong commented
Domhnall-Liopa commented
Hi, is it possible you've got teacher forcing enabled? Going by the attention matrix, the encoder doesn't seem to have an impact on the decoder
dongdong commented
Domhnall-Liopa commented
I think if you use the following in hparams.py:
tacotron_teacher_forcing_mode="constant",
tacotron_teacher_forcing_ratio=0.,
It will disable teacher forcing in training
dongdong commented
I think if you use the following in hparams.py:
tacotron_teacher_forcing_mode="constant", tacotron_teacher_forcing_ratio=0.,
It will disable teacher forcing in training
thanks!
comvee commented
Could you share the attention plot after disabling the teacher-forcing? Did you solve the problem?