unispeaker-mvc-eval
Unispeaker: A Unified Approach for Multimodality-driven Speaker Generation — Sheng et al. (2025) (arXiv:2501.06394, 2025)
What this evaluates
Evaluates multimodal voice generation and conversion capabilities across face-driven, text-driven, and attribute-based tasks. Probes the model's ability to align facial, textual, and attribute descriptions with target speech while preserving speaker identity, content clarity, and naturalness.
Datasets
- LRS3 — total ?; splits: train (-1), test (-1)
Metrics
MOS-Match (primary) — range: other
- Mean Opinion Score for voice suitability, measuring how well the generated voice matches the target modality (face, text, or attributes). Evaluated via human listening tests on a standard scale.
MOS-Nat — range: other
- Mean Opinion Score for naturalness, assessing the perceptual naturalness of the generated speech without reference to the target modality.
SST — range: other
- Speaker Similarity Score, quantifying the acoustic similarity between the generated voice and the target speaker's identity, typically computed via cosine similarity of speaker embeddings.
SSD — range: other
- Speech Distortion Score, measuring the level of acoustic distortion or noise introduced during generation, often using PESQ or STOI.
SSC — range: other
- Speech Clarity Score, evaluating the intelligibility and overall quality of the generated speech, typically assessed via human listening tests.
Input / output format
Input: Multimodal conditioning inputs (face images, textual descriptions, or voice attributes) combined with content text for TTS or reference speech for VC.
Output: Generated audio waveform/speech.
Scoring recipe
def compute_metrics(predictions, gold):
# predictions: generated audio files
# gold: target audio / modality descriptions
mos_match = human_listen_test(predictions, gold['modality'], aspect='suitability')
mos_nat = human_listen_test(predictions, aspect='naturalness')
sst = cosine_similarity(speaker_embeddings(predictions), speaker_embeddings(gold['target_speaker']))
ssd = pesq_or_stoi(predictions, gold['target_speaker'])
ssc = human_listen_test(predictions, aspect='clarity')
return {'MOS-Match': mos_match, 'MOS-Nat': mos_nat, 'SST': sst, 'SSD': ssd, 'SSC': ssc}
Common pitfalls
- MOS-Match and MOS-Nat are distinct subjective metrics; confusing them leads to incorrect suitability vs. quality reporting.
- ABX test results are highly dependent on listener demographics and audio playback conditions, requiring strict standardization.
- Performance scales non-linearly with multimodal dataset size; evaluating on small subsets without reporting scale may misrepresent capability.
Evidence (verbatim from paper)
Across five tasks, UniSpeaker outperformed previous approaches on all three metrics, except for MOS-Match in the AVE task.
Citation
@misc{sheng2025unispeaker,
title={Unispeaker: A Unified Approach for Multimodality-driven Speaker Generation},
author={Sheng et al. (2025)},
year={2025},
note={arXiv:2501.06394}
}
1---2name: unispeaker-mvc-eval3description: Evaluates multimodal voice generation and conversion capabilities across face-driven, text-driven, and attribute-based tasks. Probes the model's ability to align facial, textual, and attribute descriptions with target speech while preserving speaker identity, content clarity, and naturalness. Use when the user wants to benchmark on LRS3, or asks about evaluating this task. Reports MOS-Match.4---56# unispeaker-mvc-eval78> Unispeaker: A Unified Approach for Multimodality-driven Speaker Generation — Sheng et al. (2025) (arXiv:2501.06394, 2025)910## What this evaluates1112Evaluates multimodal voice generation and conversion capabilities across face-driven, text-driven, and attribute-based tasks. Probes the model's ability to align facial, textual, and attribute descriptions with target speech while preserving speaker identity, content clarity, and naturalness.1314## Datasets1516- **LRS3** — total ?; splits: train (-1), test (-1)1718## Metrics1920- `MOS-Match` **(primary)** — range: other21 - Mean Opinion Score for voice suitability, measuring how well the generated voice matches the target modality (face, text, or attributes). Evaluated via human listening tests on a standard scale.22- `MOS-Nat` — range: other23 - Mean Opinion Score for naturalness, assessing the perceptual naturalness of the generated speech without reference to the target modality.24- `SST` — range: other25 - Speaker Similarity Score, quantifying the acoustic similarity between the generated voice and the target speaker's identity, typically computed via cosine similarity of speaker embeddings.26- `SSD` — range: other27 - Speech Distortion Score, measuring the level of acoustic distortion or noise introduced during generation, often using PESQ or STOI.28- `SSC` — range: other29 - Speech Clarity Score, evaluating the intelligibility and overall quality of the generated speech, typically assessed via human listening tests.3031## Input / output format3233**Input**: Multimodal conditioning inputs (face images, textual descriptions, or voice attributes) combined with content text for TTS or reference speech for VC.3435**Output**: Generated audio waveform/speech.3637## Scoring recipe3839```python40def compute_metrics(predictions, gold):41 # predictions: generated audio files42 # gold: target audio / modality descriptions43 mos_match = human_listen_test(predictions, gold['modality'], aspect='suitability')44 mos_nat = human_listen_test(predictions, aspect='naturalness')45 sst = cosine_similarity(speaker_embeddings(predictions), speaker_embeddings(gold['target_speaker']))46 ssd = pesq_or_stoi(predictions, gold['target_speaker'])47 ssc = human_listen_test(predictions, aspect='clarity')48 return {'MOS-Match': mos_match, 'MOS-Nat': mos_nat, 'SST': sst, 'SSD': ssd, 'SSC': ssc}49```5051## Common pitfalls5253- MOS-Match and MOS-Nat are distinct subjective metrics; confusing them leads to incorrect suitability vs. quality reporting.54- ABX test results are highly dependent on listener demographics and audio playback conditions, requiring strict standardization.55- Performance scales non-linearly with multimodal dataset size; evaluating on small subsets without reporting scale may misrepresent capability.5657## Evidence (verbatim from paper)5859> Across five tasks, UniSpeaker outperformed previous approaches on all three metrics, except for MOS-Match in the AVE task.6061## Citation6263```bibtex64@misc{sheng2025unispeaker,65 title={Unispeaker: A Unified Approach for Multimodality-driven Speaker Generation},66 author={Sheng et al. (2025)},67 year={2025},68 note={arXiv:2501.06394}69}70```7172- arXiv: 2501.06394