Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Eren Golge committed Jan 5, 2019
1 parent f9764f3 commit 2810d57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layers/tacotron.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def init_layers(self):
def forward(self, inputs):
for linear in self.layers:
#inputs = self.dropout(self.relu(linear(inputs)))
inputs = self.relu(self.linear(inputs))
inputs = self.relu(linear(inputs))
return inputs


Expand Down

0 comments on commit 2810d57

Please sign in to comment.