Closed yasntrk closed 2 years ago
found the solution
from text import symbols
lets = ['Ç', #change this part for your own language
'Ğ',
"Ü",
"İ",
"Ö",
"Ş",
"ç",
"ü",
"ö",
"ğ",
"ı",
"ş"]
unwanted = ["Q",
"q",
"W",
"w",
"X",
"x",]
for letters in lets:
symbols.append(letters)
for unwanteds in unwanted:
symbols.remove(unwanteds)
worked for me
Hi, when i tried to load my trained model with different language i am getting this error:
this my reference notebook.
https://colab.research.google.com/github/tugstugi/dl-colab-notebooks/blob/master/notebooks/NVidia_Tacotron2_Waveglow.ipynb#scrollTo=qjKmOQha_8fS&uniqifier=1
how can i solve this problem? any idea