Instructions to use officialuser/chatterbox-nepali with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Chatterbox
How to use officialuser/chatterbox-nepali with Chatterbox:
# pip install chatterbox-tts import torchaudio as ta from chatterbox.tts import ChatterboxTTS model = ChatterboxTTS.from_pretrained(device="cuda") text = "Ezreal and Jinx teamed up with Ahri, Yasuo, and Teemo to take down the enemy's Nexus in an epic late-game pentakill." wav = model.generate(text) ta.save("test-1.wav", wav, model.sr) # If you want to synthesize with a different voice, specify the audio prompt AUDIO_PROMPT_PATH="YOUR_FILE.wav" wav = model.generate(text, audio_prompt_path=AUDIO_PROMPT_PATH) ta.save("test-2.wav", wav, model.sr) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -7,11 +7,12 @@ tags:
|
|
| 7 |
- chatterbox
|
| 8 |
- tts
|
| 9 |
- voice-cloning
|
| 10 |
-
- multilingual
|
| 11 |
license: mit
|
| 12 |
datasets:
|
| 13 |
- officialuser/nepali-tts-dataset
|
| 14 |
pipeline_tag: text-to-speech
|
|
|
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# 🇳🇵 Chatterbox-TTS (Nepali Edition)
|
|
@@ -47,4 +48,4 @@ python3 test_nepali.py \
|
|
| 47 |
This model is released under the **MIT License**.
|
| 48 |
* Base model architecture (Chatterbox) by **Resemble AI**.
|
| 49 |
* Nepali fine-tuning and Devanagari script optimization by **officialuser**.
|
| 50 |
-
* Built for the open-source Nepali speech synthesis community.
|
|
|
|
| 7 |
- chatterbox
|
| 8 |
- tts
|
| 9 |
- voice-cloning
|
|
|
|
| 10 |
license: mit
|
| 11 |
datasets:
|
| 12 |
- officialuser/nepali-tts-dataset
|
| 13 |
pipeline_tag: text-to-speech
|
| 14 |
+
base_model:
|
| 15 |
+
- ResembleAI/chatterbox
|
| 16 |
---
|
| 17 |
|
| 18 |
# 🇳🇵 Chatterbox-TTS (Nepali Edition)
|
|
|
|
| 48 |
This model is released under the **MIT License**.
|
| 49 |
* Base model architecture (Chatterbox) by **Resemble AI**.
|
| 50 |
* Nepali fine-tuning and Devanagari script optimization by **officialuser**.
|
| 51 |
+
* Built for the open-source Nepali speech synthesis community.
|