Instructions to use 2Noise/ChatTTS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ChatTTS
How to use 2Noise/ChatTTS with ChatTTS:
import ChatTTS import torchaudio chat = ChatTTS.Chat() chat.load_models(compile=False) # Set to True for better performance texts = ["PUT YOUR TEXT HERE",] wavs = chat.infer(texts, ) torchaudio.save("output1.wav", torch.from_numpy(wavs[0]), 24000) - Notebooks
- Google Colab
- Kaggle
Update pipeline tag to make the model easily discoverable. (#11)
Browse files- Update README.md (9872a267e449fd5e9aa2381a843574b89acf46f3)
Co-authored-by: Tiezhen WANG <xianbao@users.noreply.huggingface.co>