Instructions to use IndexTeam/Index-TTS with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- IndexTTS
How to use IndexTeam/Index-TTS with IndexTTS:
# Download model from huggingface_hub import snapshot_download snapshot_download(IndexTeam/Index-TTS, local_dir="checkpoints") from indextts.infer import IndexTTS # Ensure config.yaml is present in the checkpoints directory tts = IndexTTS(model_dir="checkpoints", cfg_path="checkpoints/config.yaml") voice = "path/to/your/reference_voice.wav" # Path to the voice reference audio file text = "Hello, how are you?" output_path = "output_index.wav" tts.infer(voice, text, output_path)
- Notebooks
- Google Colab
- Kaggle
Update library tag for better download tracking and code snippets!
#6
by Steveeeeeeen HF Staff - opened
README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
pipeline_tag: text-to-speech
|
|
|
|
| 4 |
---
|
| 5 |
|
| 6 |
|
|
@@ -35,4 +36,4 @@ Experience **IndexTTS**: Please contact <u>xuanwu@bilibili.com</u> for more deta
|
|
| 35 |
journal={arXiv preprint arXiv:2502.05512},
|
| 36 |
year={2025}
|
| 37 |
}
|
| 38 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
pipeline_tag: text-to-speech
|
| 4 |
+
library_name: index-tts
|
| 5 |
---
|
| 6 |
|
| 7 |
|
|
|
|
| 36 |
journal={arXiv preprint arXiv:2502.05512},
|
| 37 |
year={2025}
|
| 38 |
}
|
| 39 |
+
```
|