Views
No views yet
1git clone --recursive https://github.com/FunAudioLLM/CosyVoice.git
2# If you failed to clone submodule due to network failures, please run following command until success
3cd CosyVoice
4git submodule update --init --recursive1conda create -n cosyvoice python=3.10
2conda activate cosyvoice
3# pynini is required by WeTextProcessing, use conda to install it as it can be executed on all platform.
4conda install -y -c conda-forge pynini==2.1.5
5pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/ --trusted-host=mirrors.aliyun.com
6
7# If you encounter sox compatibility issues
8# ubuntu
9sudo apt-get install sox libsox-dev
10# centos
11sudo yum install sox sox-develCosyVoice-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-25Hz', local_dir='pretrained_models/CosyVoice-300M-25Hz')
6snapshot_download('iic/CosyVoice-300M-SFT', local_dir='pretrained_models/CosyVoice-300M-SFT')
7snapshot_download('iic/CosyVoice-300M-Instruct', local_dir='pretrained_models/CosyVoice-300M-Instruct')
8snapshot_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-25Hz.git pretrained_models/CosyVoice-300M-25Hz
6git clone https://www.modelscope.cn/iic/CosyVoice-300M-SFT.git pretrained_models/CosyVoice-300M-SFT
7git clone https://www.modelscope.cn/iic/CosyVoice-300M-Instruct.git pretrained_models/CosyVoice-300M-Instruct
8git clone https://www.modelscope.cn/iic/CosyVoice-ttsfrd.git pretrained_models/CosyVoice-ttsfrdttsfrd resouce and install ttsfrd package for better text normalization performance.ttsfrd package, we will use WeTextProcessing by default.1cd pretrained_models/CosyVoice-ttsfrd/
2unzip resource.zip -d .
3pip install ttsfrd-0.3.6-cp38-cp38-linux_x86_64.whlCosyVoice2-0.5B or CosyVoice-300M model.
For sft inference, please use CosyVoice-300M-SFT model.
For instruct inference, please use CosyVoice-300M-Instruct model.
We strongly recommend using CosyVoice2-0.5B model for better streaming performance.third_party/Matcha-TTS to your PYTHONPATH.export PYTHONPATH=third_party/Matcha-TTS1from cosyvoice.cli.cosyvoice import CosyVoice, CosyVoice2
2from cosyvoice.utils.file_utils import load_wav
3import torchaudio
4cosyvoice = CosyVoice2('pretrained_models/CosyVoice2-0.5B', load_jit=True, load_onnx=False, load_trt=False)
5
6# zero_shot usage
7prompt_speech_16k = load_wav('zero_shot_prompt.wav', 16000)
8for i, j in enumerate(cosyvoice.inference_zero_shot('收到好友从远方寄来的生日礼物,那份意外的惊喜与深深的祝福让我心中充满了甜蜜的快乐,笑容如花儿般绽放。', '希望你以后能够做的比我还好呦。', prompt_speech_16k, stream=False)):
9 torchaudio.save('zero_shot_{}.wav'.format(i), j['tts_speech'], cosyvoice.sample_rate)
10
11# fine grained control, for supported control, check cosyvoice/tokenizer/tokenizer.py#L248
12prompt_speech_16k = load_wav('zero_shot_prompt.wav', 16000)
13for i, j in enumerate(cosyvoice.inference_cross_lingual('在他讲述那个荒诞故事的过程中,他突然[laughter]停下来,因为他自己也被逗笑了[laughter]。', prompt_speech_16k, stream=False)):
14 torchaudio.save('fine_grained_control_{}.wav'.format(i), j['tts_speech'], cosyvoice.sample_rate)
15
16# instruct usage
17for i, j in enumerate(cosyvoice.inference_instruct2('收到好友从远方寄来的生日礼物,那份意外的惊喜与深深的祝福让我心中充满了甜蜜的快乐,笑容如花儿般绽放。', '用四川话说这句话', prompt_speech_16k, stream=False)):
18 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.
You can get familiar with CosyVoice following this recipie.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>
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}