Instructions to use ResembleAI/Chatterbox-Multilingual-es-es with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Chatterbox
How to use ResembleAI/Chatterbox-Multilingual-es-es 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 public model card wording
Browse files
README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
---
|
|
|
|
| 2 |
language:
|
| 3 |
- es
|
| 4 |
tags:
|
|
@@ -6,7 +7,9 @@ tags:
|
|
| 6 |
- text-to-speech
|
| 7 |
- tts
|
| 8 |
- multilingual
|
| 9 |
-
-
|
|
|
|
|
|
|
| 10 |
pipeline_tag: text-to-speech
|
| 11 |
---
|
| 12 |
|
|
@@ -14,17 +17,26 @@ pipeline_tag: text-to-speech
|
|
| 14 |
> 🎙️ **Live demo:** Try this model in the [`ResembleAI/Chatterbox-Multilingual-TTS-es-es`](https://huggingface.co/spaces/ResembleAI/Chatterbox-Multilingual-TTS-es-es) Space.
|
| 15 |
<!-- chatterbox-space-link -->
|
| 16 |
|
| 17 |
-
# Chatterbox Multilingual
|
| 18 |
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
|
| 21 |
## Files
|
| 22 |
|
| 23 |
- `t3_es_es.safetensors`: T3 state dict in safetensors format.
|
|
|
|
|
|
|
| 24 |
|
| 25 |
## Language
|
| 26 |
|
| 27 |
- Locale: `es-ES`
|
|
|
|
| 28 |
|
| 29 |
## Checkpoint Metadata
|
| 30 |
|
|
@@ -39,6 +51,6 @@ Private Chatterbox multilingual T3 candidate weights for Spanish (Spain).
|
|
| 39 |
|
| 40 |
## Loader Notes
|
| 41 |
|
| 42 |
-
This
|
| 43 |
|
| 44 |
-
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
language:
|
| 4 |
- es
|
| 5 |
tags:
|
|
|
|
| 7 |
- text-to-speech
|
| 8 |
- tts
|
| 9 |
- multilingual
|
| 10 |
+
- single-language-tts
|
| 11 |
+
- voice-cloning
|
| 12 |
+
- chatterbox-v3
|
| 13 |
pipeline_tag: text-to-speech
|
| 14 |
---
|
| 15 |
|
|
|
|
| 17 |
> 🎙️ **Live demo:** Try this model in the [`ResembleAI/Chatterbox-Multilingual-TTS-es-es`](https://huggingface.co/spaces/ResembleAI/Chatterbox-Multilingual-TTS-es-es) Space.
|
| 18 |
<!-- chatterbox-space-link -->
|
| 19 |
|
| 20 |
+
# Chatterbox Multilingual: Spanish (Spain)
|
| 21 |
|
| 22 |
+
Chatterbox Multilingual: Spanish (Spain) is a dedicated single-language finetune in the **Chatterbox Multilingual V3 Single Language Pack**. It is optimized for Spanish as spoken in Spain, with language- and region-specific behavior for expressive text-to-speech and voice cloning.
|
| 23 |
+
|
| 24 |
+
Use this model when you want tighter Spanish (Spain) quality control than the broad multilingual checkpoint. For a single model that covers all supported languages, use [`ResembleAI/chatterbox`](https://huggingface.co/ResembleAI/chatterbox).
|
| 25 |
+
|
| 26 |
+
## Demo
|
| 27 |
+
|
| 28 |
+
Try the hosted demo Space: [`ResembleAI/Chatterbox-Multilingual-TTS-es-es`](https://huggingface.co/spaces/ResembleAI/Chatterbox-Multilingual-TTS-es-es).
|
| 29 |
|
| 30 |
## Files
|
| 31 |
|
| 32 |
- `t3_es_es.safetensors`: T3 state dict in safetensors format.
|
| 33 |
+
- `s3gen_v3.pt` / `s3gen_v3.safetensors`: V3 S3Gen speech decoder checkpoint.
|
| 34 |
+
- `grapheme_mtl_merged_expanded_v1.json`: multilingual tokenizer config.
|
| 35 |
|
| 36 |
## Language
|
| 37 |
|
| 38 |
- Locale: `es-ES`
|
| 39 |
+
- Chatterbox language ID: `es`
|
| 40 |
|
| 41 |
## Checkpoint Metadata
|
| 42 |
|
|
|
|
| 51 |
|
| 52 |
## Loader Notes
|
| 53 |
|
| 54 |
+
This repository contains Chatterbox Multilingual V3 single-language assets used by the linked demo Space. The T3 checkpoint is loaded with multilingual vocabulary shape `2454` and S3 speech vocabulary shape `8194`.
|
| 55 |
|
| 56 |
+
The demo combines these model-specific assets with the shared Chatterbox inference code and companion assets needed for end-to-end speech generation.
|