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 README.md
#30
by stepresmi - opened
README.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
| 2 |
license: cc-by-nc-4.0
|
| 3 |
library_name: chat_tts
|
| 4 |
pipeline_tag: text-to-audio
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
|
|
|
|
| 2 |
license: cc-by-nc-4.0
|
| 3 |
library_name: chat_tts
|
| 4 |
pipeline_tag: text-to-audio
|
| 5 |
+
language:
|
| 6 |
+
- tr
|
| 7 |
+
base_model:
|
| 8 |
+
- deepseek-ai/DeepSeek-V2.5
|
| 9 |
---
|
| 10 |
|
| 11 |
|