remove unused vars on test glow tts

This commit is contained in:
Edresson 2021-05-05 07:15:36 -03:00
parent d78f27ea41
commit 65860a954a
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ class GlowTTSInferenceTest(unittest.TestCase):
print(" > Num parameters for GlowTTS model:%s" % (count_parameters(model)))
# inference encoder and decoder with MAS
y, _, _, _, _, _, _ = model.inference_with_MAS(
y, *_ = model.inference_with_MAS(
input_dummy, input_lengths, mel_spec, mel_lengths, None
)