Hippius
v1safetensorsfp32Publicapache-2.0qwen-ttstext-to-speech

ranupthestairs/test

sha256:dfce370d409ff15f32636514cbc13a2002791729c1453526351989c5232ec0d2·Indexed Jun 9, 2026

Parameters

2.1B

Total size

4.2 GB

Files

13

Quantization

FP32

README.md

3.1 KB

Qwen3-TTS


  🤗 Hugging Face   |   🤖 ModelScope   |   📑 Blog   |   📑 Paper   |   💻 GitHub

We release Qwen3-TTS, a series of powerful speech generation models developed by Qwen, offering comprehensive support for voice cloning, voice design, ultra-high-quality human-like speech generation, and natural language-based voice control.

Overview

Qwen3-TTS covers 10 major languages (Chinese, English, Japanese, Korean, German, French, Russian, Portuguese, Spanish, and Italian) as well as multiple dialectal voice profiles. Key features:

  • Powerful Speech Representation: Powered by the self-developed Qwen3-TTS-Tokenizer-12Hz, it achieves efficient acoustic compression and high-dimensional semantic modeling.
  • Universal End-to-End Architecture: Utilizing a discrete multi-codebook LM architecture to bypass traditional information bottlenecks.
  • Extreme Low-Latency Streaming Generation: Supports streaming generation with end-to-end synthesis latency as low as 97ms.
  • Intelligent Voice Control: Supports speech generation driven by natural language instructions for flexible control over timbre, emotion, and prosody.

Quickstart

Environment Setup

Install the qwen-tts Python package from PyPI:

pip install -U qwen-tts

Python Package Usage

import torch
import soundfile as sf
from qwen_tts import Qwen3TTSModel

# Load the model
model = Qwen3TTSModel.from_pretrained(
    "Qwen/Qwen3-TTS-12Hz-1.7B-CustomVoice",
    device_map="cuda:0",
    dtype=torch.bfloat16,
    attn_implementation="flash_attention_2",
)

# Custom Voice Generation
wavs, sr = model.generate_custom_voice(
    text="其实我真的有发现,我是一个特别善于观察别人情绪的人。",
    language="Chinese",
    speaker="Vivian",
    instruct="用特别愤怒的语气说",
)
sf.write("output.wav", wavs[0], sr)

Evaluation

Zero-shot speech generation on the Seed-TTS test set (Word Error Rate (WER, ↓)):

Model test-zh test-en
Qwen3-TTS-12Hz-1.7B-Base 0.77 1.24

Citation

If you find our paper and code useful in your research, please consider giving a star ⭐ and citation 📝:

@article{Qwen3-TTS,
  title={Qwen3-TTS Technical Report},
  author={Hangrui Hu and Xinfa Zhu and Ting He and Dake Guo and Bin Zhang and Xiong Wang and Zhifang Guo and Ziyue Jiang and Hongkun Hao and Zishan Guo and Xinyu Zhang and Pei Zhang and Baosong Yang and Jin Xu and Jingren Zhou and Junyang Lin},
  journal={arXiv preprint arXiv:2601.15621},
  year={2026}
}

Model architecture

config.json
Architecture
Qwen3TTSForConditionalGeneration
Model type
qwen3_tts

Files

13 items
  • model.safetensors

    391e8db219f2

    3.6 GB

    safetensors

  • speech_tokenizer/model.safetensors

    836b7b357f5e

    650.7 MB

    safetensors

  • vocab.json

    ca10d7e9fb3e

    2.6 MB

  • merges.txt

    599bab540750

    1.6 MB

  • tokenizer_config.json

    dc3c31c3bdae

    7.2 KB

  • config.json

    aecd2cc4c1fe

    4.3 KB

  • README.md

    acfaf6c0d433

    3.1 KB

  • speech_tokenizer/config.json

    ee65bb901c87

    2.3 KB

  • .gitattributes

    11ad7efa2497

    1.5 KB

  • generation_config.json

    f1b90b4513f3

    245 B

  • speech_tokenizer/preprocessor_config.json

    fcb3805e597e

    234 B

  • preprocessor_config.json

    efdde1022ea9

    127 B

  • speech_tokenizer/configuration.json

    6bc26d64eb50

    76 B

ranupthestairs/test · v1 · Hippius Hub