Skip to content
This repository has been archived by the owner on Aug 3, 2021. It is now read-only.

Commit

Permalink
rectified conditional statement in text2speech.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nitish-awasthi authored Sep 4, 2020
1 parent 61204b2 commit 76ce03d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion open_seq2seq/data/text2speech/text2speech.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def build_graph(self):
num_parallel_calls=8,
)
if (self.params.get("duration_max", None) or
self.params.get("duration_max", None)):
self.params.get("duration_min", None)):
self._dataset = self._dataset.filter(
lambda txt, txt_len, spec, stop, spec_len:
tf.logical_and(
Expand Down

0 comments on commit 76ce03d

Please sign in to comment.