From d5d9e6e8ea87995a5679d78b24e7df2a3c88e185 Mon Sep 17 00:00:00 2001 From: erogol Date: Wed, 13 May 2020 13:52:17 +0200 Subject: [PATCH] bug fix --- utils/synthesis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/synthesis.py b/utils/synthesis.py index 188a3acf..3903ba44 100644 --- a/utils/synthesis.py +++ b/utils/synthesis.py @@ -64,7 +64,7 @@ def run_model_tf(model, inputs, CONFIG, truncated, speaker_id=None, style_mel=No raise NotImplemented(' [!] Truncated inference not implemented for TF') # TODO: handle multispeaker case decoder_output, postnet_output, alignments, stop_tokens = model( - inputs, training=False) + inputs) return decoder_output, postnet_output, alignments, stop_tokens