mirror of https://github.com/coqui-ai/TTS.git
bug fix addinf gmissing output for synthesis
This commit is contained in:
parent
9915d79173
commit
52c0b4e3e1
2
train.py
2
train.py
|
@ -472,7 +472,7 @@ def evaluate(model, criterion, ap, global_step, epoch):
|
||||||
style_wav = c.get("style_wav_for_test")
|
style_wav = c.get("style_wav_for_test")
|
||||||
for idx, test_sentence in enumerate(test_sentences):
|
for idx, test_sentence in enumerate(test_sentences):
|
||||||
try:
|
try:
|
||||||
wav, alignment, decoder_output, postnet_output, stop_tokens = synthesis(
|
wav, alignment, decoder_output, postnet_output, stop_tokens, inputs = synthesis(
|
||||||
model,
|
model,
|
||||||
test_sentence,
|
test_sentence,
|
||||||
c,
|
c,
|
||||||
|
|
Loading…
Reference in New Issue