Views
No views yet
1git clone --recursive https://github.com/FunAudioLLM/CosyVoice.git
2# If you failed to clone the submodule due to network failures, please run the following command until success
3cd CosyVoice
4git submodule update --init --recursive1conda create -n cosyvoice -y python=3.10
2conda activate cosyvoice
3pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ --trusted-host=mirrors.aliyun.com
4
5# If you encounter sox compatibility issues
6# ubuntu
7sudo apt-get install sox libsox-dev
8# centos
9sudo yum install sox sox-develCosyVoice2-0.5B CosyVoice-300M CosyVoice-300M-SFT CosyVoice-300M-Instruct model and CosyVoice-ttsfrd resource.1# SDK模型下载
2from modelscope import snapshot_download
3snapshot_download('iic/CosyVoice2-0.5B', local_dir='pretrained_models/CosyVoice2-0.5B')
4snapshot_download('iic/CosyVoice-300M', local_dir='pretrained_models/CosyVoice-300M')
5snapshot_download('iic/CosyVoice-300M-SFT', local_dir='pretrained_models/CosyVoice-300M-SFT')
6snapshot_download('iic/CosyVoice-300M-Instruct', local_dir='pretrained_models/CosyVoice-300M-Instruct')
7snapshot_download('iic/CosyVoice-ttsfrd', local_dir='pretrained_models/CosyVoice-ttsfrd')1# git模型下载,请确保已安装git lfs
2mkdir -p pretrained_models
3git clone https://www.modelscope.cn/iic/CosyVoice2-0.5B.git pretrained_models/CosyVoice2-0.5B
4git clone https://www.modelscope.cn/iic/CosyVoice-300M.git pretrained_models/CosyVoice-300M
5git clone https://www.modelscope.cn/iic/CosyVoice-300M-SFT.git pretrained_models/CosyVoice-300M-SFT
6git clone https://www.modelscope.cn/iic/CosyVoice-300M-Instruct.git pretrained_models/CosyVoice-300M-Instruct
7git clone https://www.modelscope.cn/iic/CosyVoice-ttsfrd.git pretrained_models/CosyVoice-ttsfrdttsfrd resource and install ttsfrd package for better text normalization performance.ttsfrd package, we will use wetext by default.1cd pretrained_models/CosyVoice-ttsfrd/
2unzip resource.zip -d .
3pip install ttsfrd_dependency-0.1-py3-none-any.whl
4pip install ttsfrd-0.4.2-cp310-cp310-linux_x86_64.whlCosyVoice2-0.5B for better performance.
Follow the code below for detailed usage of each model.1import sys
2sys.path.append('third_party/Matcha-TTS')
3from cosyvoice.cli.cosyvoice import CosyVoice, CosyVoice2
4from cosyvoice.utils.file_utils import load_wav
5import torchaudio1cosyvoice = CosyVoice2('pretrained_models/CosyVoice2-0.5B', load_jit=False, load_trt=False, load_vllm=False, fp16=False)
2
3# NOTE if you want to reproduce the results on https://funaudiollm.github.io/cosyvoice2, please add text_frontend=False during inference
4# zero_shot usage
5prompt_speech_16k = load_wav('./asset/zero_shot_prompt.wav', 16000)
6for i, j in enumerate(cosyvoice.inference_zero_shot('收到好友从远方寄来的生日礼物,那份意外的惊喜与深深的祝福让我心中充满了甜蜜的快乐,笑容如花儿般绽放。', '希望你以后能够做的比我还好呦。', prompt_speech_16k, stream=False)):
7 torchaudio.save('zero_shot_{}.wav'.format(i), j['tts_speech'], cosyvoice.sample_rate)
8
9# save zero_shot spk for future usage
10assert cosyvoice.add_zero_shot_spk('希望你以后能够做的比我还好呦。', prompt_speech_16k, 'my_zero_shot_spk') is True
11for i, j in enumerate(cosyvoice.inference_zero_shot('收到好友从远方寄来的生日礼物,那份意外的惊喜与深深的祝福让我心中充满了甜蜜的快乐,笑容如花儿般绽放。', '', '', zero_shot_spk_id='my_zero_shot_spk', stream=False)):
12 torchaudio.save('zero_shot_{}.wav'.format(i), j['tts_speech'], cosyvoice.sample_rate)
13cosyvoice.save_spkinfo()
14
15# fine grained control, for supported control, check cosyvoice/tokenizer/tokenizer.py#L248
16for i, j in enumerate(cosyvoice.inference_cross_lingual('在他讲述那个荒诞故事的过程中,他突然[laughter]停下来,因为他自己也被逗笑了[laughter]。', prompt_speech_16k, stream=False)):
17 torchaudio.save('fine_grained_control_{}.wav'.format(i), j['tts_speech'], cosyvoice.sample_rate)
18
19# instruct usage
20for i, j in enumerate(cosyvoice.inference_instruct2('收到好友从远方寄来的生日礼物,那份意外的惊喜与深深的祝福让我心中充满了甜蜜的快乐,笑容如花儿般绽放。', '用四川话说这句话', prompt_speech_16k, stream=False)):
21 torchaudio.save('instruct_{}.wav'.format(i), j['tts_speech'], cosyvoice.sample_rate)
22
23# bistream usage, you can use generator as input, this is useful when using text llm model as input
24# NOTE you should still have some basic sentence split logic because llm can not handle arbitrary sentence length
25def text_generator():
26 yield '收到好友从远方寄来的生日礼物,'
27 yield '那份意外的惊喜与深深的祝福'
28 yield '让我心中充满了甜蜜的快乐,'
29 yield '笑容如花儿般绽放。'
30for i, j in enumerate(cosyvoice.inference_zero_shot(text_generator(), '希望你以后能够做的比我还好呦。', prompt_speech_16k, stream=False)):
31 torchaudio.save('zero_shot_{}.wav'.format(i), j['tts_speech'], cosyvoice.sample_rate)vllm==v0.9.0. Older vllm version do not support CosyVoice2 inference.vllm==v0.9.0 has a lot of specific requirements, for example torch==2.7.0. You can create a new env to in case your hardward do not support vllm and old env is corrupted.1conda create -n cosyvoice_vllm --clone cosyvoice
2conda activate cosyvoice_vllm
3pip install vllm==v0.9.0 -i https://mirrors.aliyun.com/pypi/simple/ --trusted-host=mirrors.aliyun.com
4python vllm_example.py1cosyvoice = CosyVoice('pretrained_models/CosyVoice-300M-SFT', load_jit=False, load_trt=False, fp16=False)
2# sft usage
3print(cosyvoice.list_available_spks())
4# change stream=True for chunk stream inference
5for i, j in enumerate(cosyvoice.inference_sft('你好,我是通义生成式语音大模型,请问有什么可以帮您的吗?', '中文女', stream=False)):
6 torchaudio.save('sft_{}.wav'.format(i), j['tts_speech'], cosyvoice.sample_rate)
7
8cosyvoice = CosyVoice('pretrained_models/CosyVoice-300M')
9# zero_shot usage, <|zh|><|en|><|jp|><|yue|><|ko|> for Chinese/English/Japanese/Cantonese/Korean
10prompt_speech_16k = load_wav('./asset/zero_shot_prompt.wav', 16000)
11for i, j in enumerate(cosyvoice.inference_zero_shot('收到好友从远方寄来的生日礼物,那份意外的惊喜与深深的祝福让我心中充满了甜蜜的快乐,笑容如花儿般绽放。', '希望你以后能够做的比我还好呦。', prompt_speech_16k, stream=False)):
12 torchaudio.save('zero_shot_{}.wav'.format(i), j['tts_speech'], cosyvoice.sample_rate)
13# cross_lingual usage
14prompt_speech_16k = load_wav('./asset/cross_lingual_prompt.wav', 16000)
15for i, j in enumerate(cosyvoice.inference_cross_lingual('<|en|>And then later on, fully acquiring that company. So keeping management in line, interest in line with the asset that\'s coming into the family is a reason why sometimes we don\'t buy the whole thing.', prompt_speech_16k, stream=False)):
16 torchaudio.save('cross_lingual_{}.wav'.format(i), j['tts_speech'], cosyvoice.sample_rate)
17# vc usage
18prompt_speech_16k = load_wav('./asset/zero_shot_prompt.wav', 16000)
19source_speech_16k = load_wav('./asset/cross_lingual_prompt.wav', 16000)
20for i, j in enumerate(cosyvoice.inference_vc(source_speech_16k, prompt_speech_16k, stream=False)):
21 torchaudio.save('vc_{}.wav'.format(i), j['tts_speech'], cosyvoice.sample_rate)
22
23cosyvoice = CosyVoice('pretrained_models/CosyVoice-300M-Instruct')
24# instruct usage, support <laughter></laughter><strong></strong>[laughter][breath]
25for i, j in enumerate(cosyvoice.inference_instruct('在面对挑战时,他展现了非凡的<strong>勇气</strong>与<strong>智慧</strong>。', '中文男', 'Theo \'Crimson\', is a fiery, passionate rebel leader. Fights with fervor for justice, but struggles with impulsiveness.', stream=False)):
26 torchaudio.save('instruct_{}.wav'.format(i), j['tts_speech'], cosyvoice.sample_rate)1# change iic/CosyVoice-300M-SFT for sft inference, or iic/CosyVoice-300M-Instruct for instruct inference
2python3 webui.py --port 50000 --model_dir pretrained_models/CosyVoice-300Mexamples/libritts/cosyvoice/run.sh.1cd runtime/python
2docker build -t cosyvoice:v1.0 .
3# change iic/CosyVoice-300M to iic/CosyVoice-300M-Instruct if you want to use instruct inference
4# for grpc usage
5docker run -d --runtime=nvidia -p 50000:50000 cosyvoice:v1.0 /bin/bash -c "cd /opt/CosyVoice/CosyVoice/runtime/python/grpc && python3 server.py --port 50000 --max_conc 4 --model_dir iic/CosyVoice-300M && sleep infinity"
6cd grpc && python3 client.py --port 50000 --mode <sft|zero_shot|cross_lingual|instruct>
7# for fastapi usage
8docker run -d --runtime=nvidia -p 50000:50000 cosyvoice:v1.0 /bin/bash -c "cd /opt/CosyVoice/CosyVoice/runtime/python/fastapi && python3 server.py --port 50000 --model_dir iic/CosyVoice-300M && sleep infinity"
9cd fastapi && python3 client.py --port 50000 --mode <sft|zero_shot|cross_lingual|instruct>1cd runtime/triton_trtllm
2docker compose up -d
1@article{du2024cosyvoice,
2 title={Cosyvoice: A scalable multilingual zero-shot text-to-speech synthesizer based on supervised semantic tokens},
3 author={Du, Zhihao and Chen, Qian and Zhang, Shiliang and Hu, Kai and Lu, Heng and Yang, Yexin and Hu, Hangrui and Zheng, Siqi and Gu, Yue and Ma, Ziyang and others},
4 journal={arXiv preprint arXiv:2407.05407},
5 year={2024}
6}
7
8@article{du2024cosyvoice,
9 title={Cosyvoice 2: Scalable streaming speech synthesis with large language models},
10 author={Du, Zhihao and Wang, Yuxuan and Chen, Qian and Shi, Xian and Lv, Xiang and Zhao, Tianyu and Gao, Zhifu and Yang, Yexin and Gao, Changfeng and Wang, Hui and others},
11 journal={arXiv preprint arXiv:2412.10117},
12 year={2024}
13}
14
15@article{du2025cosyvoice,
16 title={CosyVoice 3: Towards In-the-wild Speech Generation via Scaling-up and Post-training},
17 author={Du, Zhihao and Gao, Changfeng and Wang, Yuxuan and Yu, Fan and Zhao, Tianyu and Wang, Hao and Lv, Xiang and Wang, Hui and Shi, Xian and An, Keyu and others},
18 journal={arXiv preprint arXiv:2505.17589},
19 year={2025}
20}
21
22@inproceedings{lyu2025build,
23 title={Build LLM-Based Zero-Shot Streaming TTS System with Cosyvoice},
24 author={Lyu, Xiang and Wang, Yuxuan and Zhao, Tianyu and Wang, Hao and Liu, Huadai and Du, Zhihao},
25 booktitle={ICASSP 2025-2025 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
26 pages={1--2},
27 year={2025},
28 organization={IEEE}
29}