-
Notifications
You must be signed in to change notification settings - Fork 4.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] Can not run tts with yourtts #4076
Comments
The following code works fine for me: import torch
from TTS.api import TTS
device = "cuda" if torch.cuda.is_available() else "cpu"
tts = TTS(model_name="tts_models/multilingual/multi-dataset/your_tts").to(device)
tts.tts_to_file(text="hello", speaker="female-en-5", language="en") If there is an error about not finding the model file, there might have been an issue with the download. Try deleting the model folder and run that code again. To find that folder: from trainer.io import get_user_data_dir
print(get_user_data_dir("tts")) |
how did you download the model? |
Running that code downloads the model automatically |
I do not have model folder
but cause to error not find model path |
I don't know how to get model!! |
Please read my previous message:
|
Describe the bug
I tried to run
but after running result to this
[!] Model file not found in the output path
I wanted to run with config of model but could not find that in repo
To Reproduce
Expected behavior
No response
Logs
No response
Environment
Additional context
No response
The text was updated successfully, but these errors were encountered: