Respair / Zip_dial

huggingface.co
Total runs: 0
24-hour runs: 0
7-day runs: 0
30-day runs: 0
Model's Last Updated: July 25 2025

Introduction of Zip_dial

Model Details of Zip_dial

ZipVoice⚡

Fast and High-Quality Zero-Shot Text-to-Speech with Flow Matching
Overview

ZipVoice is a series of fast and high-quality zero-shot TTS models based on flow matching.

1. Key features
  • Small and fast: only 123M parameters.

  • High-quality voice cloning: state-of-the-art performance in speaker similarity, intelligibility, and naturalness.

  • Multi-lingual: support Chinese and English.

  • Multi-mode: support both single-speaker and dialogue speech generation.

2. Model variants
Model Name Description Paper Demo
ZipVoice The basic model supporting zero-shot single-speaker TTS in both Chinese and English.
ZipVoice-Distill The distilled version of ZipVoice, featuring improved speed with minimal performance degradation.
ZipVoice-Dialog A dialogue generation model built on ZipVoice, capable of generating single-channel two-party spoken dialogues.
ZipVoice-Dialog-Stereo The stereo variant of ZipVoice-Dialog, enabling two-channel dialogue generation with each speaker assigned to a distinct channel.
News

2025/07/14 : ZipVoice-Dialog and ZipVoice-Dialog-Stereo , two spoken dialogue generation models, are released. arXiv demo page

2025/07/14 : OpenDialog dataset, a 6.8k-hour spoken dialogue dataset, is realeased. Download at hf , ms . Check details at arXiv .

2025/06/16 : ZipVoice and ZipVoice-Distill are released. arXiv demo page

Installation
1. Clone the ZipVoice repository
git clone https://github.com/k2-fsa/ZipVoice.git
2. (Optional) Create a Python virtual environment
python3 -m venv zipvoice
source zipvoice/bin/activate
3. Install the required packages
pip install -r requirements.txt
4. Install k2 for training or efficient inference

k2 is necessary for training and can speed up inference. Nevertheless, you can still use the inference mode of ZipVoice without installing k2.

Note: Make sure to install the k2 version that matches your PyTorch and CUDA version. For example, if you are using pytorch 2.5.1 and CUDA 12.1, you can install k2 as follows:

pip install k2==1.24.4.dev20250208+cuda12.1.torch2.5.1 -f https://k2-fsa.github.io/k2/cuda.html

Please refer to https://k2-fsa.org/get-started/k2/ for details. Users in China mainland can refer to https://k2-fsa.org/zh-CN/get-started/k2/ .

  • To check the k2 installation:
python3 -c "import k2; print(k2.__file__)"
Usage
1. Single-speaker speech generation

To generate single-speaker speech with our pre-trained ZipVoice or ZipVoice-Distill models, use the following commands (Required models will be downloaded from HuggingFace):

1.1 Inference of a single sentence
python3 -m zipvoice.bin.infer_zipvoice \
    --model-name zipvoice \
    --prompt-wav prompt.wav \
    --prompt-text "I am the transcription of the prompt wav." \
    --text "I am the text to be synthesized." \
    --res-wav-path result.wav
  • --model-name can be zipvoice or zipvoice_distill , which are models before and after distillation, respectively.
  • If <> or [] appear in the text, strings enclosed by them will be treated as special tokens. <> denotes Chinese pinyin and [] denotes other special tags.
  • Could run ONNX models on CPU faster with zipvoice.bin.infer_zipvoice_onnx .

Note: If you have trouble connecting to HuggingFace, try:

export HF_ENDPOINT=https://hf-mirror.com
1.2 Inference of a list of sentences
python3 -m zipvoice.bin.infer_zipvoice \
    --model-name zipvoice \
    --test-list test.tsv \
    --res-dir results
  • Each line of test.tsv is in the format of {wav_name}\t{prompt_transcription}\t{prompt_wav}\t{text} .
2. Dialogue speech generation
2.1 Inference command

To generate two-party spoken dialogues with our pre-trained ZipVoice-Dialogue or ZipVoice-Dialogue-Stereo models, use the following commands (Required models will be downloaded from HuggingFace):

python3 -m zipvoice.bin.infer_zipvoice_dialog \
    --model-name "zipvoice_dialog" \
    --test-list test.tsv \
    --res-dir results
  • --model-name can be zipvoice_dialog or zipvoice_dialog_stereo , which generate mono and stereo dialogues, respectively.
2.2 Input formats

Each line of test.tsv is in one of the following formats:

(1) Merged prompt format where the audios and transcriptions of two speakers prompts are merged into one prompt wav file:

{wav_name}\t{prompt_transcription}\t{prompt_wav}\t{text}
  • wav_name is the name of the output wav file.
  • prompt_transcription is the transcription of the conversational prompt wav, e.g, "[S1] Hello. [S2] How are you?"
  • prompt_wav is the path to the prompt wav.
  • text is the text to be synthesized, e.g. "[S1] I'm fine. [S2] What's your name?"

(2) Splitted prompt format where the audios and transciptions of two speakers exist in separate files:

{wav_name}\t{spk1_prompt_transcription}\t{spk2_prompt_transcription}\t{spk1_prompt_wav}\t{spk2_prompt_wav}\t{text}'
  • wav_name is the name of the output wav file.
  • spk1_prompt_transcription is the transcription of the first speaker's prompt wav, e.g, "Hello"
  • spk2_prompt_transcription is the transcription of the second speaker's prompt wav, e.g, "How are you?"
  • spk1_prompt_wav is the path to the first speaker's prompt wav file.
  • spk2_prompt_wav is the path to the second speaker's prompt wav file.
  • text is the text to be synthesized, e.g. "[S1] I'm fine. [S2] What's your name?"
3. Other features
3.1 Correcting mispronounced chinese polyphone characters

We use pypinyin to convert Chinese characters to pinyin. However, it can occasionally mispronounce polyphone characters (多音字).

To manually correct these mispronunciations, enclose the corrected pinyin in angle brackets < > and include the tone mark .

Example:

  • Original text: 这把剑长三十公分
  • Correct the pinyin of : 这把剑<chang2>三十公分

Note: If you want to manually assign multiple pinyins, enclose each pinyin with <> , e.g., 这把<jian4><chang2><san1>十公分

Train Your Own Model

See the egs directory for training, fine-tuning and evaluation examples.

Discussion & Communication

You can directly discuss on Github Issues .

You can also scan the QR code to join our wechat group or follow our wechat official account.

Wechat Group Wechat Official Account
wechat wechat
Citation
@article{zhu2025zipvoice,
      title={ZipVoice: Fast and High-Quality Zero-Shot Text-to-Speech with Flow Matching},
      author={Zhu, Han and Kang, Wei and Yao, Zengwei and Guo, Liyong and Kuang, Fangjun and Li, Zhaoqing and Zhuang, Weiji and Lin, Long and Povey, Daniel},
      journal={arXiv preprint arXiv:2506.13053},
      year={2025}
}

@article{zhu2025zipvoicedialog,
      title={ZipVoice-Dialog: Non-Autoregressive Spoken Dialogue Generation with Flow Matching},
      author={Zhu, Han and Kang, Wei and Guo, Liyong and Yao, Zengwei and Kuang, Fangjun and Zhuang, Weiji and Li, Zhaoqing and Han, Zhifeng and Zhang, Dong and Zhang, Xin and Song, Xingchen and Lin, Long and Povey, Daniel},
      journal={arXiv preprint arXiv:2507.09318},
      year={2025}
}

Runs of Respair Zip_dial on huggingface.co

0
Total runs
0
24-hour runs
0
3-day runs
0
7-day runs
0
30-day runs

More Information About Zip_dial huggingface.co Model

Zip_dial huggingface.co

Zip_dial huggingface.co is an AI model on huggingface.co that provides Zip_dial's model effect (), which can be used instantly with this Respair Zip_dial model. huggingface.co supports a free trial of the Zip_dial model, and also provides paid use of the Zip_dial. Support call Zip_dial model through api, including Node.js, Python, http.

Respair Zip_dial online free

Zip_dial huggingface.co is an online trial and call api platform, which integrates Zip_dial's modeling effects, including api services, and provides a free online trial of Zip_dial, you can try Zip_dial online for free by clicking the link below.

Respair Zip_dial online free url in huggingface.co:

https://huggingface.co/Respair/Zip_dial

Zip_dial install

Zip_dial is an open source model from GitHub that offers a free installation service, and any user can find Zip_dial on GitHub to install. At the same time, huggingface.co provides the effect of Zip_dial install, users can directly use Zip_dial installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

Zip_dial install url in huggingface.co:

https://huggingface.co/Respair/Zip_dial

Url of Zip_dial

Zip_dial huggingface.co Url

Provider of Zip_dial huggingface.co

Respair
ORGANIZATIONS

Other API from Respair

huggingface.co

Total runs: 50
Run Growth: 40
Growth Rate: 80.00%
Updated:October 07 2025
huggingface.co

Total runs: 7
Run Growth: 6
Growth Rate: 85.71%
Updated:November 06 2024
huggingface.co

Total runs: 4
Run Growth: 4
Growth Rate: 100.00%
Updated:September 13 2025
huggingface.co

Total runs: 2
Run Growth: 2
Growth Rate: 100.00%
Updated:September 20 2024
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:January 29 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:June 06 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:June 06 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:October 22 2024
huggingface.co

Total runs: 0
Run Growth: -6
Growth Rate: 0.00%
Updated:April 16 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:January 30 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:November 17 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:August 12 2024
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:July 01 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:February 17 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:January 31 2025