Text-to-Speech
Transformers
Safetensors
Qwen3-TTS
English
Chinese
text-generation
zen3
zen3-tts
zenlm
qwen3-tts
speech-synthesis
voice-design
controllable
12hz
Instructions to use zenlm/zen3-tts-voice-design with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use zenlm/zen3-tts-voice-design with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-to-speech", model="zenlm/zen3-tts-voice-design")# Load model directly from transformers import AutoModelForSeq2SeqLM model = AutoModelForSeq2SeqLM.from_pretrained("zenlm/zen3-tts-voice-design", device_map="auto") - Notebooks
- Google Colab
- Kaggle
docs: clarify Zen fine-tune of Qwen3 audio base + honest base_model attribution
Browse files
README.md
CHANGED
|
@@ -5,27 +5,36 @@ pipeline_tag: text-to-speech
|
|
| 5 |
language:
|
| 6 |
- en
|
| 7 |
- zh
|
|
|
|
|
|
|
|
|
|
| 8 |
tags:
|
| 9 |
- zen3
|
| 10 |
- zen3-tts
|
| 11 |
- zenlm
|
| 12 |
-
-
|
| 13 |
- speech-synthesis
|
| 14 |
- voice-design
|
| 15 |
- controllable
|
| 16 |
- 12hz
|
| 17 |
-
- zen-3
|
| 18 |
---
|
| 19 |
|
| 20 |
# Zen3 TTS Voice Design
|
| 21 |
|
| 22 |
-
Zen3 TTS variant
|
| 23 |
|
| 24 |
-
|
| 25 |
|
| 26 |
-
|
|
|
|
|
|
|
| 27 |
|
| 28 |
## Weights
|
| 29 |
|
| 30 |
-
|
| 31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
language:
|
| 6 |
- en
|
| 7 |
- zh
|
| 8 |
+
base_model:
|
| 9 |
+
- Qwen/Qwen3-TTS-12Hz-1.7B-VoiceDesign
|
| 10 |
+
base_model_relation: finetune
|
| 11 |
tags:
|
| 12 |
- zen3
|
| 13 |
- zen3-tts
|
| 14 |
- zenlm
|
| 15 |
+
- qwen3-tts
|
| 16 |
- speech-synthesis
|
| 17 |
- voice-design
|
| 18 |
- controllable
|
| 19 |
- 12hz
|
|
|
|
| 20 |
---
|
| 21 |
|
| 22 |
# Zen3 TTS Voice Design
|
| 23 |
|
| 24 |
+
Zen3 TTS variant for voice design: synthesize new speakers from natural-language descriptors (timbre, age, accent, affect) without reference audio.
|
| 25 |
|
| 26 |
+
Derived by fine-tuning [`Qwen/Qwen3-TTS-12Hz-1.7B-VoiceDesign`](https://huggingface.co/Qwen/Qwen3-TTS-12Hz-1.7B-VoiceDesign) (Alibaba Cloud, Apache-2.0).
|
| 27 |
|
| 28 |
+
- Architecture: `Qwen3TTSForConditionalGeneration` (`qwen3_tts`)
|
| 29 |
+
- Parameters: ~1.7B
|
| 30 |
+
- Base model: [`Qwen/Qwen3-TTS-12Hz-1.7B-VoiceDesign`](https://huggingface.co/Qwen/Qwen3-TTS-12Hz-1.7B-VoiceDesign)
|
| 31 |
|
| 32 |
## Weights
|
| 33 |
|
| 34 |
+
This repository contains the model weights: `model.safetensors` (talker) plus a `speech_tokenizer/` module (12 Hz codec), config and tokenizer files.
|
| 35 |
|
| 36 |
+
The model uses the `qwen3_tts` architecture and loads with `transformers` (>= 4.57). It is API-compatible with the upstream base — follow the inference recipe on the base model card [`Qwen/Qwen3-TTS-12Hz-1.7B-VoiceDesign`](https://huggingface.co/Qwen/Qwen3-TTS-12Hz-1.7B-VoiceDesign).
|
| 37 |
+
|
| 38 |
+
## Provenance
|
| 39 |
+
|
| 40 |
+
Fine-tuned from [`Qwen/Qwen3-TTS-12Hz-1.7B-VoiceDesign`](https://huggingface.co/Qwen/Qwen3-TTS-12Hz-1.7B-VoiceDesign) (Apache-2.0). See `NOTICE` for full attribution.
|