Skip to content

Commit 5233bde

Browse files
authored
fast fix for @sil problem
1 parent e42595a commit 5233bde

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tensorflow_tts/processor/libritts.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,5 @@ def clean_g2p(self, g2p_text: list):
114114
"@END"
115115
) # TODO try learning without end token and compare results
116116
break
117-
data.append("@" + txt) if txt != " " else data.append(
118-
"@SIL"
119-
) # TODO change it in inference
117+
data.append("@" + txt) if txt != " "
120118
return data

0 commit comments

Comments
 (0)