Synthesizing test sentences warnings during training #988
-
When training a model, some common warnings are shown below:
I usually ignore these warnings if the loss is decreasing as expected, but I'm not shure if this is the best reaction ! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Had same warnings when was training FastPitch. |
Beta Was this translation helpful? Give feedback.
-
Hi @mbarnig, as discussed in our call now maybe playing around with |
Beta Was this translation helpful? Give feedback.
-
Referring to the answers given in the first Coqui-TTS online meeting and to the contribution of @thorstenMueller, my understanding concerning the warnings about At the beginning of the training these warnings are normal. The warnings should disappear after some hundred epochs. If the values are still out of range when the model is converging, there is an issue with the dataset or with the model parameters, which must be solved before restarting or continuing the training. The output of the warnings can be disabled up to a threshold with the parameter The value of the |
Beta Was this translation helpful? Give feedback.
Referring to the answers given in the first Coqui-TTS online meeting and to the contribution of @thorstenMueller, my understanding concerning the warnings about
out of range values
is the following :At the beginning of the training these warnings are normal. The warnings should disappear after some hundred epochs. If the values are still out of range when the model is converging, there is an issue with the dataset or with the model parameters, which must be solved before restarting or continuing the training.
The output of the warnings can be disabled up to a threshold with the parameter
test_delay_epochs
to reduce the size of the logs.The value of the
max_decoder_steps
can be increased…