vevo-voice-imitation-eval
Vevo: Controllable Zero-Shot Voice Imitation with Self-Supervised Disentanglement — Zhang et al. (2025) (arXiv:2502.07243, 2025)
What this evaluates
This benchmark evaluates a model's ability to perform zero-shot voice imitation by disentangling linguistic content, speaker timbre, and vocal style (accent/emotion). It probes the model's capacity to generate high-intelligibility speech that accurately transfers the target speaker's identity and stylistic attributes from a reference clip without task-specific fine-tuning.
Datasets
- Vevo Evaluation Set (AB, CV, ACCENT, EMOTION) — total 700; splits: test (700)
Metrics
WER (primary) — range: percent
- Word Error Rate calculated using Whisper-large-v3 to transcribe generated audio and compare against ground-truth text. Lower is better.
S-SIM — range: [0, 1]
- Cosine similarity between speaker embeddings extracted from the generated audio and the reference audio using WavLM TDNN. Higher is better.
A-SIM — range: [0, 1]
- Cosine similarity between accent embeddings extracted using CommonAccent. Higher is better.
E-SIM — range: [0, 1]
- Cosine similarity between emotion embeddings extracted using emotion2vec. Higher is better.
FPC — range: [0, 1]
- F0 correlation between generated and source audio, evaluated only on the EMOTION split.
N-MOS — range: other
- Mean Opinion Score (1-5) for naturalness rated by human listeners.
CMOS — range: other
- Comparative MOS (-3 to 3) for naturalness, accentedness, and emotiveness relative to baselines.
Input / output format
Input: Source linguistic content (text or speech) and a reference audio clip containing the target timbre and/or style (accent/emotion).
Output: Generated speech waveform matching the source content and the reference's timbre/style.
Scoring recipe
# WER
gen_transcript = whisper_large_v3(generated_audio)
wer = calculate_wer(gold_text, gen_transcript)
# S-SIM / A-SIM / E-SIM
ref_emb = extractor.encode(reference_audio)
gen_emb = extractor.encode(generated_audio)
sim = cosine_similarity(ref_emb, gen_emb)
# FPC (EMOTION split only)
fpc = pearson_corr(f0(generated_audio), f0(source_audio))
Common pitfalls
- FPC and PS-MOS are only evaluated on the EMOTION split, not the full test set.
- Subjective MOS/CMOS scores depend on listener panels and baseline models hosted on external demo websites, making exact reproduction difficult.
- Vevo-Voice trades intelligibility (WER) for style imitation due to its autoregressive style tokenizer, so lower WER does not indicate overall failure.
Evidence (verbatim from paper)
For the objective metrics, we evaluate the intelligibility (WER), speaker similarity (S-SIM), accent similarity (A-SIM), emotion similarity (E-SIM), and F0 correlation (FPC). Specially, we calculate WER based on Whisper-large-v3. For the three similarity metrics – S-SIM, A-SIM, and E-SIM – we calculate the cosine similarity between the embeddings (of speaker, accent, or emotion) of the generated sample and the reference.
Citation
@misc{zhang2025vevo,
title={Vevo: Controllable Zero-Shot Voice Imitation with Self-Supervised Disentanglement},
author={Zhang et al. (2025)},
year={2025},
note={arXiv:2502.07243}
}
1---2name: vevo-voice-imitation-eval3description: This benchmark evaluates a model's ability to perform zero-shot voice imitation by disentangling linguistic content, speaker timbre, and vocal style (accent/emotion). It probes the model's capacity to generate high-intelligibility speech that accurately transfers the target speaker's identity and stylistic attributes from a reference clip without task-specific fine-tuning. Use when the user wants to benchmark on Vevo Evaluation Set (AB, CV, ACCENT, EMOTION), or asks about evaluating this task. Reports WER.4---56# vevo-voice-imitation-eval78> Vevo: Controllable Zero-Shot Voice Imitation with Self-Supervised Disentanglement — Zhang et al. (2025) (arXiv:2502.07243, 2025)910## What this evaluates1112This benchmark evaluates a model's ability to perform zero-shot voice imitation by disentangling linguistic content, speaker timbre, and vocal style (accent/emotion). It probes the model's capacity to generate high-intelligibility speech that accurately transfers the target speaker's identity and stylistic attributes from a reference clip without task-specific fine-tuning.1314## Datasets1516- **Vevo Evaluation Set (AB, CV, ACCENT, EMOTION)** — total 700; splits: test (700)1718## Metrics1920- `WER` **(primary)** — range: percent21 - Word Error Rate calculated using Whisper-large-v3 to transcribe generated audio and compare against ground-truth text. Lower is better.22- `S-SIM` — range: [0, 1]23 - Cosine similarity between speaker embeddings extracted from the generated audio and the reference audio using WavLM TDNN. Higher is better.24- `A-SIM` — range: [0, 1]25 - Cosine similarity between accent embeddings extracted using CommonAccent. Higher is better.26- `E-SIM` — range: [0, 1]27 - Cosine similarity between emotion embeddings extracted using emotion2vec. Higher is better.28- `FPC` — range: [0, 1]29 - F0 correlation between generated and source audio, evaluated only on the EMOTION split.30- `N-MOS` — range: other31 - Mean Opinion Score (1-5) for naturalness rated by human listeners.32- `CMOS` — range: other33 - Comparative MOS (-3 to 3) for naturalness, accentedness, and emotiveness relative to baselines.3435## Input / output format3637**Input**: Source linguistic content (text or speech) and a reference audio clip containing the target timbre and/or style (accent/emotion).3839**Output**: Generated speech waveform matching the source content and the reference's timbre/style.4041## Scoring recipe4243```python44# WER45gen_transcript = whisper_large_v3(generated_audio)46wer = calculate_wer(gold_text, gen_transcript)4748# S-SIM / A-SIM / E-SIM49ref_emb = extractor.encode(reference_audio)50gen_emb = extractor.encode(generated_audio)51sim = cosine_similarity(ref_emb, gen_emb)5253# FPC (EMOTION split only)54fpc = pearson_corr(f0(generated_audio), f0(source_audio))55```5657## Common pitfalls5859- FPC and PS-MOS are only evaluated on the EMOTION split, not the full test set.60- Subjective MOS/CMOS scores depend on listener panels and baseline models hosted on external demo websites, making exact reproduction difficult.61- Vevo-Voice trades intelligibility (WER) for style imitation due to its autoregressive style tokenizer, so lower WER does not indicate overall failure.6263## Evidence (verbatim from paper)6465> For the objective metrics, we evaluate the intelligibility (WER), speaker similarity (S-SIM), accent similarity (A-SIM), emotion similarity (E-SIM), and F0 correlation (FPC). Specially, we calculate WER based on Whisper-large-v3. For the three similarity metrics – S-SIM, A-SIM, and E-SIM – we calculate the cosine similarity between the embeddings (of speaker, accent, or emotion) of the generated sample and the reference.6667## Citation6869```bibtex70@misc{zhang2025vevo,71 title={Vevo: Controllable Zero-Shot Voice Imitation with Self-Supervised Disentanglement},72 author={Zhang et al. (2025)},73 year={2025},74 note={arXiv:2502.07243}75}76```7778- arXiv: 2502.07243