Skip to content
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

fix(api): handle missing attribute in is_multi_lingual #3450

Closed
wants to merge 1 commit into from

Conversation

eginhard
Copy link
Contributor

Fixes #3449, i.e. the following works again:

from TTS.api import TTS

cloud = TTS(model_name="tts_models/de/thorsten/vits")  # just to download the model
_ = cloud.tts("test")  # this works fine

from TTS.utils.generic_utils import get_user_data_dir
model = os.path.join(get_user_data_dir("tts"), "tts_models--de--thorsten--vits", "model_file.pth")
config = os.path.join(get_user_data_dir("tts"), "tts_models--de--thorsten--vits", "config.json")
local = TTS(model_path=model, config_path=config)
_ = local.tts("test")  # this failed previously

Copy link

stale bot commented Jan 21, 2024

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. You might also look our discussion channels.

@stale stale bot added the wontfix This will not be worked on but feel free to help. label Jan 21, 2024
@stale stale bot closed this Jan 28, 2024
@nicemanis
Copy link

Why is this not merged?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
wontfix This will not be worked on but feel free to help.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Bug] Synthesis from monolingual local models fails
2 participants