From ed0f9f4d78e1a2fab1c994c071070d18e65211e0 Mon Sep 17 00:00:00 2001 From: Eren Golge Date: Mon, 19 Mar 2018 09:30:10 -0700 Subject: [PATCH] remove masking --- models/tacotron.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/tacotron.py b/models/tacotron.py index 0b55b76b..7653f1c3 100644 --- a/models/tacotron.py +++ b/models/tacotron.py @@ -34,7 +34,7 @@ class Tacotron(nn.Module): # (B, T', mel_dim*r) mel_outputs, alignments = self.decoder( - encoder_outputs, mel_specs, input_lengths=input_lengths) + encoder_outputs, mel_specs) # Post net processing below