Instructions to use OuteAI/OuteTTS-0.3-1B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- OuteTTS
How to use OuteAI/OuteTTS-0.3-1B with OuteTTS:
import outetts enum = outetts.Models("OuteAI/OuteTTS-0.3-1B".split("/", 1)[1]) # VERSION_1_0_SIZE_1B cfg = outetts.ModelConfig.auto_config(enum, outetts.Backend.HF) tts = outetts.Interface(cfg) speaker = tts.load_default_speaker("EN-FEMALE-1-NEUTRAL") tts.generate( outetts.GenerationConfig( text="Hello there, how are you doing?", speaker=speaker, ) ).save("output.wav") - Notebooks
- Google Colab
- Kaggle
AttributeError: module 'outetts' has no attribute 'HFModelConfig_v2'. Did you mean: 'ModelConfig'?
#5
by asdfasdf12345 - opened
AttributeError: module 'outetts' has no attribute 'HFModelConfig_v2'. Did you mean: 'ModelConfig'?
Hi,
OuteTTS runtime library got updated to version 0.4. It changes the usage, refer to the new docs: https://github.com/edwko/OuteTTS/blob/main/docs/interface_usage.md, or downgrade to 0.3.3 to use this example.
edwko changed discussion status to closed