Commit
·
b19bad6
1
Parent(s):
6523473
update
Browse files- vits-coqui.py +4 -1
vits-coqui.py
CHANGED
@@ -115,7 +115,10 @@ def main():
|
|
115 |
and token.lower() != token.upper()
|
116 |
and len(token.upper()) == 1
|
117 |
):
|
118 |
-
|
|
|
|
|
|
|
119 |
|
120 |
|
121 |
if __name__ == "__main__":
|
|
|
115 |
and token.lower() != token.upper()
|
116 |
and len(token.upper()) == 1
|
117 |
):
|
118 |
+
if token == "i" and "I" in vits.tokenizer.characters._char_to_id:
|
119 |
+
pass
|
120 |
+
else:
|
121 |
+
f.write(f"{token.upper()} {idx}\n")
|
122 |
|
123 |
|
124 |
if __name__ == "__main__":
|