I would like to know, inside layers/
, why they got different values of max_decoder_steps in both tacotron.py
and tacotron2.py
?
in layers/tacotron.py
, the self.max_decoder_steps = 500
BUT
in layers/tacotron2.py
, the self.max_decoder_steps = 1000
Which i assume MAYBE that could be the reason why i keep on getting the message
warning: audio amplitude out of range, auto clipped.
| > Synthesizing test sentences
| > Decoder stopped with 'max_decoder_steps
| > Decoder stopped with 'max_decoder_steps
| > Decoder stopped with 'max_decoder_steps
| > Decoder stopped with 'max_decoder_steps
during training of Tacotron 2 but everything went fine on plain Tacotron.
Any explanation for this max_decoder_steps
values together with the warnings ?