Text-to-Speech
Transformers
Safetensors
Spanish
Catalan
English
qwen3
feature-extraction
text-generation-inference
Instructions to use ebellob/qwav3_4B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ebellob/qwav3_4B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="ebellob/qwav3_4B")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("ebellob/qwav3_4B") model = AutoModel.from_pretrained("ebellob/qwav3_4B", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -19,7 +19,7 @@ The training recipe involves a VALL-E approach of giving 400 audio tokens as con
|
|
| 19 |
perform zero-shot voice cloning. This has not been completely accomplished, as the amount of training data is insufficient. However, the model is capable of grasping
|
| 20 |
concepts such as the gender of the voice, producing male voices when given male context and viceversa.
|
| 21 |
|
| 22 |
-
You can visit a demo page with some audios at https://github.
|
| 23 |
|
| 24 |
Training and inference recipes will be published soon.
|
| 25 |
|
|
|
|
| 19 |
perform zero-shot voice cloning. This has not been completely accomplished, as the amount of training data is insufficient. However, the model is capable of grasping
|
| 20 |
concepts such as the gender of the voice, producing male voices when given male context and viceversa.
|
| 21 |
|
| 22 |
+
You can visit a demo page with some audios at https://erikupv.github.io/QWav3_Demo/
|
| 23 |
|
| 24 |
Training and inference recipes will be published soon.
|
| 25 |
|