ultraeval-audio-eval
UltraEval-Audio: A Unified Framework for Comprehensive Evaluation of Audio Foundation Models — Shi et al. (2026) (arXiv:2601.01373, 2026)
What this evaluates
Evaluates audio foundation models across understanding, generation, and codec capabilities. It probes semantic accuracy, timbre fidelity, acoustic quality, and multilingual speech comprehension using a unified taxonomy and standardized benchmarks.
Datasets
Metrics
WER (primary) — range: [0, 1]
- Word Error Rate: minimum number of word edits (insertions, deletions, substitutions) required to change the predicted transcript to the reference transcript, normalized by reference length.
ASR-WER — range: [0, 1]
- Computed by transcribing generated or reconstructed audio with a high-performance ASR model (e.g., Whisper-large-v3) and calculating WER on the transcriptions.
SIM — range: [-1, 1]
- Speaker embedding cosine similarity: cosine distance between WavLM-large embeddings of original and reconstructed audio to measure timbre fidelity.
UTMOS — range: [1, 5]
- Objective metric predicting overall speech naturalness and perceptual comfort.
Input / output format
Input: Audio files (speech, music, or environmental sounds) or text prompts, depending on the task (understanding, generation, or codec).
Output: Text transcriptions, translations, or answers for understanding tasks; synthesized or reconstructed audio files for generation/codec tasks.
Scoring recipe
def compute_wer(pred_text, ref_text):
edits = levenshtein_distance(pred_text.split(), ref_text.split())
return edits / max(len(ref_text.split()), 1)
def compute_sim(orig_audio, recon_audio):
emb_orig = wavlm_large.encode(orig_audio)
emb_recon = wavlm_large.encode(recon_audio)
return cosine_similarity(emb_orig, emb_recon)
def compute_utmos(audio):
return utmos_model.predict(audio)
Common pitfalls
- Inconsistent use of ASR models for computing ASR-WER across different benchmarks can skew semantic accuracy comparisons.
- Codec evaluation metrics (WER, SIM, UTMOS) measure different dimensions; relying solely on WER ignores timbre and acoustic quality degradation.
- TTS synthesis artifacts in SpeechCMMLU may introduce pronunciation errors if CER filtering is not strictly applied during dataset construction.
Evidence (verbatim from paper)
For semantics, we measure how well reconstructed audio preserves the original content using WER. Specifically, the reconstructed audio is transcribed by high-performance ASR models and compared to the original transcript. We employ Whisper-large-v3 for English and Paraformer-zh for Chinese. For timbre fidelity, we extract audio embeddings using WavLM-large fine-tuned on speaker verification, and compute the cosine similarity between embeddings of the original and reconstructed audio.
Citation
@misc{shi2026ultraevalaudio,
title={UltraEval-Audio: A Unified Framework for Comprehensive Evaluation of Audio Foundation Models},
author={Shi et al. (2026)},
year={2026},
note={arXiv:2601.01373}
}
1---2name: ultraeval-audio-eval3description: Evaluates audio foundation models across understanding, generation, and codec capabilities. It probes semantic accuracy, timbre fidelity, acoustic quality, and multilingual speech comprehension using a unified taxonomy and standardized benchmarks. Use when the user wants to benchmark on SpeechCMMLU, SpeechHSK, LibriSpeech, AISHELL-1, or asks about evaluating this task. Reports WER.4---56# ultraeval-audio-eval78> UltraEval-Audio: A Unified Framework for Comprehensive Evaluation of Audio Foundation Models — Shi et al. (2026) (arXiv:2601.01373, 2026)910## What this evaluates1112Evaluates audio foundation models across understanding, generation, and codec capabilities. It probes semantic accuracy, timbre fidelity, acoustic quality, and multilingual speech comprehension using a unified taxonomy and standardized benchmarks.1314## Datasets1516- **SpeechCMMLU** — total 3519; splits: test (3519); repo https://github.com/OpenBMB/UltraEval-Audio17- **SpeechHSK** — total 170; splits: test (170); repo https://github.com/OpenBMB/UltraEval-Audio18- **LibriSpeech** — total ?; splits: test (-1)19- **AISHELL-1** — total ?; splits: test (-1)2021## Metrics2223- `WER` **(primary)** — range: [0, 1]24 - Word Error Rate: minimum number of word edits (insertions, deletions, substitutions) required to change the predicted transcript to the reference transcript, normalized by reference length.25- `ASR-WER` — range: [0, 1]26 - Computed by transcribing generated or reconstructed audio with a high-performance ASR model (e.g., Whisper-large-v3) and calculating WER on the transcriptions.27- `SIM` — range: [-1, 1]28 - Speaker embedding cosine similarity: cosine distance between WavLM-large embeddings of original and reconstructed audio to measure timbre fidelity.29- `UTMOS` — range: [1, 5]30 - Objective metric predicting overall speech naturalness and perceptual comfort.3132## Input / output format3334**Input**: Audio files (speech, music, or environmental sounds) or text prompts, depending on the task (understanding, generation, or codec).3536**Output**: Text transcriptions, translations, or answers for understanding tasks; synthesized or reconstructed audio files for generation/codec tasks.3738## Scoring recipe3940```python41def compute_wer(pred_text, ref_text):42 edits = levenshtein_distance(pred_text.split(), ref_text.split())43 return edits / max(len(ref_text.split()), 1)4445def compute_sim(orig_audio, recon_audio):46 emb_orig = wavlm_large.encode(orig_audio)47 emb_recon = wavlm_large.encode(recon_audio)48 return cosine_similarity(emb_orig, emb_recon)4950def compute_utmos(audio):51 return utmos_model.predict(audio)52```5354## Common pitfalls5556- Inconsistent use of ASR models for computing ASR-WER across different benchmarks can skew semantic accuracy comparisons.57- Codec evaluation metrics (WER, SIM, UTMOS) measure different dimensions; relying solely on WER ignores timbre and acoustic quality degradation.58- TTS synthesis artifacts in SpeechCMMLU may introduce pronunciation errors if CER filtering is not strictly applied during dataset construction.5960## Evidence (verbatim from paper)6162> For semantics, we measure how well reconstructed audio preserves the original content using WER. Specifically, the reconstructed audio is transcribed by high-performance ASR models and compared to the original transcript. We employ Whisper-large-v3 for English and Paraformer-zh for Chinese. For timbre fidelity, we extract audio embeddings using WavLM-large fine-tuned on speaker verification, and compute the cosine similarity between embeddings of the original and reconstructed audio.6364## Citation6566```bibtex67@misc{shi2026ultraevalaudio,68 title={UltraEval-Audio: A Unified Framework for Comprehensive Evaluation of Audio Foundation Models},69 author={Shi et al. (2026)},70 year={2026},71 note={arXiv:2601.01373}72}73```7475- arXiv: 2601.01373