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

rectified conditional statement in text2speech.py #553

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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