Closed nto4 closed 1 year ago
Check if you have model.pth config and vocab are downloaded in
~/.local/share/tts/tts_models--multilingual--multi-dataset--xtts_v1
(linux)
This will show exact model path
from TTS.utils.generic_utils import get_user_data_dir
model_path = os.path.join(get_user_data_dir("tts"), "tts_models--multilingual--multi-dataset--xtts_v1")
print(model_path)
if folder is empty but exists, remove the tts_models--multilingual--multi-dataset--xtts_v1
try redownloading model via cli (after accepting terms) or if you use code make sure you agree Terms of service before importing TTS
import os
# By using XTTS you agree to CPML license https://coqui.ai/cpml
os.environ["COQUI_TOS_AGREED"] = "1"
# After you agree import TTS to trigger download
from TTS.api import TTS
# Other XTTS model stuff
Deleting weight solve my problem
Describe the bug
im upgrade TTS package TTS==0.17.5 to latest im facing this error what is problm here ?
To Reproduce
feed text filepaht and speaker wav and langugae like this
Expected behavior
No response
Logs
No response
Environment
Additional context
No response