mirror of https://github.com/coqui-ai/TTS.git
`mixed_precision` set to false
Change default value of `"mixed_precision" : false` as when it is set true it leads to `raise RuntimeError(f" [!] NaN loss with {key}.") RuntimeError: [!] NaN loss with decoder_loss.`
This commit is contained in:
parent
d245b5d48f
commit
d0cef713cf
|
@ -41,7 +41,7 @@
|
||||||
"run_description": "tacotron2 with double decoder consistency.",
|
"run_description": "tacotron2 with double decoder consistency.",
|
||||||
"batch_size": 64,
|
"batch_size": 64,
|
||||||
"eval_batch_size": 16,
|
"eval_batch_size": 16,
|
||||||
"mixed_precision": true,
|
"mixed_precision": false,
|
||||||
"loss_masking": true,
|
"loss_masking": true,
|
||||||
"decoder_loss_alpha": 0.25,
|
"decoder_loss_alpha": 0.25,
|
||||||
"postnet_loss_alpha": 0.25,
|
"postnet_loss_alpha": 0.25,
|
||||||
|
@ -88,4 +88,4 @@
|
||||||
"phoneme_cache_path": "DEFINE THIS",
|
"phoneme_cache_path": "DEFINE THIS",
|
||||||
"use_phonemes": false,
|
"use_phonemes": false,
|
||||||
"phoneme_language": "en-us"
|
"phoneme_language": "en-us"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue