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

[Bug] when i run print(TTS().list_models()) I get <TTS.utils.manage.ModelManager object at 0x7fa9d4c5a7a0> #3427

Closed
DrewThomasson opened this issue Dec 14, 2023 · 2 comments · Fixed by eginhard/coqui-tts#5
Labels
bug Something isn't working wontfix This will not be worked on but feel free to help.

Comments

@DrewThomasson
Copy link

Describe the bug

was found in coqui tts V0.22.0 not sure why its happening the but when i run print(TTS().list_models()) i get <TTS.utils.manage.ModelManager object at 0x7fa9d4c5a7a0>

To Reproduce

When i run print(TTS().list_models()) I get <TTS.utils.manage.ModelManager object at 0x7fa9d4c5a7a0>

Expected behavior

It should be giving me a list of all of the models but it doesn't

Logs

No response

Environment

Seems to occur in what I,ve tested being python 3.11 and 3.10

Additional context

I found a fix tho

@DrewThomasson DrewThomasson added the bug Something isn't working label Dec 14, 2023
@DrewThomasson
Copy link
Author

The temp fix workaround I found was instead of using print(TTS().list_models()) I do:

from TTS.api import TTS
tts_manager = TTS().list_models()
all_models = tts_manager.list_models()
print(all_models)

doing that makes it actually print out the list of models

Copy link

stale bot commented Jan 14, 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 14, 2024
@stale stale bot closed this as completed Jan 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working wontfix This will not be worked on but feel free to help.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant