English | 简体中文 | 日本語
Currently released model supports zero-shot voice conversion 🔊 , zero-shot real-time voice conversion 🗣️ and zero-shot singing voice conversion 🎶. Without any training, it is able to clone a voice given a reference speech of 1~30 seconds.
To find a list of demos and comparisons with previous voice conversion models, please visit our demo page🌐
We are keeping on improving the model quality and adding more features.
We have performed a series of objective evaluations on our Seed-VC's voice conversion capabilities.
For ease of reproduction, source audios are 100 random utterances from LibriTTS-test-clean, and reference audios are 12 randomly picked in-the-wild voices with unique characteristics.
Source audios can be found under ./examples/libritts-test-clean
Reference audios can be found under ./examples/reference
We evaluate the conversion results in terms of speaker embedding cosine similarity (SECS), word error rate (WER) and character error rate (CER) and compared
our results with two strong open sourced baselines, namely OpenVoice and CosyVoice.
Results in the table below shows that our Seed-VC model significantly outperforms the baseline models in both intelligibility and speaker similarity.
Models\Metrics | SECS↑ | WER↓ | CER↓ | SIG↑ | BAK↑ | OVRL↑ |
---|---|---|---|---|---|---|
Ground Truth | 1.0000 | 8.02 | 1.57 | ~ | ~ | ~ |
OpenVoice | 0.7547 | 15.46 | 4.73 | 3.56 | 4.02 | 3.27 |
CosyVoice | 0.8440 | 18.98 | 7.29 | 3.51 | 4.02 | 3.21 |
Seed-VC(Ours) | 0.8676 | 11.99 | 2.92 | 3.42 | 3.97 | 3.11 |
We have also compared with non-zero-shot voice conversion models for several speakers (based on model availability):
Characters | Models\Metrics | SECS↑ | WER↓ | CER↓ | SIG↑ | BAK↑ | OVRL↑ |
---|---|---|---|---|---|---|---|
~ | Ground Truth | 1.0000 | 6.43 | 1.00 | ~ | ~ | ~ |
Tokai Teio | So-VITS-4.0 | 0.8637 | 21.46 | 9.63 | 3.06 | 3.66 | 2.68 |
Seed-VC(Ours) | 0.8899 | 15.32 | 4.66 | 3.12 | 3.71 | 2.72 | |
Milky Green | So-VITS-4.0 | 0.6850 | 48.43 | 32.50 | 3.34 | 3.51 | 2.82 |
Seed-VC(Ours) | 0.8072 | 7.26 | 1.32 | 3.48 | 4.07 | 3.20 | |
Matikane Tannhuaser | So-VITS-4.0 | 0.8594 | 16.25 | 8.64 | 3.25 | 3.71 | 2.84 |
Seed-VC(Ours) | 0.8768 | 12.62 | 5.86 | 3.18 | 3.83 | 2.85 |
Results show that, despite not being trained on the target speakers, Seed-VC is able to achieve significantly better results than the non-zero-shot models.
However, this may vary a lot depending on the SoVITS model quality. PR or Issue is welcomed if you find this comparison unfair or inaccurate.
(Tokai Teio model from zomehwh/sovits-tannhauser)
(Matikane Tannhuaser model from zomehwh/sovits-tannhauser)
(Milky Green model from sparanoid/milky-green-sovits-4)
English ASR result computed by facebook/hubert-large-ls960-ft model
Speaker embedding computed by resemblyzer model
You can reproduce the evaluation by running eval.py
script.
python eval.py
--source ./examples/libritts-test-clean
--target ./examples/reference
--output ./examples/eval/converted
--diffusion-steps 25
--length-adjust 1.0
--inference-cfg-rate 0.7
--xvector-extractor "resemblyzer"
--baseline "" # fill in openvoice or cosyvoice to compute baseline result
--max-samples 100 # max source utterances to go through
Before that, make sure you have openvoice and cosyvoice repo correctly installed on ../OpenVoice/
and ../CosyVoice/
if you would like to run baseline evaluation.
Additional singing voice conversion evaluation is done on M4Singer dataset, with 4 target speakers whose audio data is available here.
Speaker similariy is calculated by averaging the cosine similarities between conversion result and all available samples in respective character dataset.
For each character, one random utterance is chosen as the prompt for zero-shot inference. For comparison, we trained respective RVCv2-f0-48k model for each character as baseline.
100 random utterances for each singer type are used as source audio.
Models\Metrics | F0CORR↑ | F0RMSE↓ | SECS↑ | CER↓ | SIG↑ | BAK↑ | OVRL↑ |
---|---|---|---|---|---|---|---|
RVCv2 | 0.9404 | 30.43 | 0.7264 | 28.46 | 3.41 | 4.05 | 3.12 |
Seed-VC(Ours) | 0.9375 | 33.35 | 0.7405 | 19.70 | 3.39 | 3.96 | 3.06 |
Despite Seed-VC is not trained on the target speakers, and only one random utterance is used as prompt, it still constantly outperforms speaker-specific RVCv2 models in terms of speaker similarity (SECS) and intelligibility (CER), which demonstrates the superior voice cloning capability and robustness of Seed-VC.
However, it is observed that Seed-VC's audio quality (DNSMOS) is slightly lower than RVCv2. We take this drawback seriously and
will give high priority to improve the audio quality in the future.
PR or issue is welcomed if you find this comparison unfair or inaccurate.
Chinese ASR result computed by SenseVoiceSmall
Speaker embedding computed by resemblyzer model
We set +12 semitones pitch shift for male-to-female conversion and -12 semitones for female-to-male converison, otherwise 0 pitch shift
Suggested python 3.10 on Windows or Linux.
pip install -r requirements.txt
Checkpoints of the latest model release will be downloaded automatically when first run inference.
Command line inference:
python inference.py --source <source-wav>
--target <referene-wav>
--output <output-dir>
--diffusion-steps 25 # recommended 50~100 for singingvoice conversion
--length-adjust 1.0
--inference-cfg-rate 0.7
--f0-condition False # set to True for singing voice conversion
--auto-f0-adjust False # set to True to auto adjust source pitch to target pitch level, normally not used in singing voice conversion
--semi-tone-shift 0 # pitch shift in semitones for singing voice conversion
where:
source
is the path to the speech file to convert to reference voicetarget
is the path to the speech file as voice referenceoutput
is the path to the output directorydiffusion-steps
is the number of diffusion steps to use, default is 25, use 50-100 for best quality, use 4-10 for fastest inferencelength-adjust
is the length adjustment factor, default is 1.0, set <1.0 for speed-up speech, >1.0 for slow-down speechinference-cfg-rate
has subtle difference in the output, default is 0.7 f0-condition
is the flag to condition the pitch of the output to the pitch of the source audio, default is False, set to True for singing voice conversion auto-f0-adjust
is the flag to auto adjust source pitch to target pitch level, default is False, normally not used in singing voice conversionsemi-tone-shift
is the pitch shift in semitones for singing voice conversion, default is 0 Gradio web interface:
python app.py
Then open the browser and go to http://localhost:7860/
to use the web interface.
Real-time voice conversion GUI:
python real-time-gui.py
IMPORTANT: It is strongly recommended to use a GPU for real-time voice conversion.
Some performance testing has been done on a NVIDIA RTX 3060 Laptop GPU, results and recommended parameter settings are listed below:
Remarks | Diffusion Steps | Inference CFG Rate | Max Prompt Length | Block Time (s) | Crossfade Length (s) | Extra context (left) (s) | Extra context (right) (s) | Latency (ms) | Quality | Inference Time per Chunk (ms) |
---|---|---|---|---|---|---|---|---|---|---|
suitable for most voices | 10 | 0.7 | 3.0 | 1.0s | 0.04s | 0.5s | 0.02s | 2070ms | Medium | 849ms |
better performance for high-pitched female voices | 20 | 0.7 | 3.0 | 2.0s | 0.04s | 0.5s | 0.02s | 4070ms | High | 1585ms |
suitable for some male voices, as audio quality requirement is lower | 5 | 0.7 | 3.0 | 0.6s | 0.04s | 0.5s | 0.02s | 1270ms | Low | 488ms |
Faster inference by setting inference_cfg_rate to 0.0, but not sure whether performance drops... | 10 | 0.0 | 3.0 | 0.7s | 0.04s | 0.5s | 0.02s | 1470ms | Medium | 555ms |
You can adjust the parameters in the GUI according to your own device performance, the voice conversion stream should work well as long as Inference Time is less than Block Time.
Note that inference speed may drop if you are running other GPU intensive tasks (e.g. gaming, watching videos)
Generally, latency is around 1~2s to prevent quality drop (the sad nature of diffusion models...😥), but we are keeping on looking for ways to reduce it.
(GUI and audio chunking logic are modified from RVC, thanks for their brilliant implementation!)