ASR Benchmarks Are Gameable: 6 of 11 Top Models Reproduce Audio Errors
In this article
Researchers from Hume AI, publishing through Hugging Face on August 21, 2026, have released a methodology for detecting and quantifying benchmark optimization — sometimes called "benchmaxxing" — in automatic speech recognition. The work evaluated 11 widely used open-source ASR models against VoxPopuli English and LibriSpeech (clean, other) and found that several top-scoring systems reproduce benchmark reference transcripts even when the audio contradicts them. The paper, Towards Quantifying Benchmark Optimization in ASR Models (arXiv 2608.19936), introduces three concrete probes rather than offering only qualitative warnings.
Word error rate on a single public benchmark has become a dominant purchasing signal for developers integrating voice into products, but the study shows that the models with the lowest WER are also the most likely to reproduce erroneous reference transcripts — meaning the metric that drives selection is partially measuring benchmark familiarity, not transcription accuracy. This parallels a broader pattern where benchmark scores mislead procurement, as explored in pipeline architecture choices versus raw model capability.
Reference Disagreement Probe
The first probe exploits known transcription errors in VoxPopuli. An ensemble of models selected for low phoneme error rate (PER) — a measure of how faithfully written output matches the sounds in audio — flags clips where all ensemble members unanimously disagree with the reference transcript. Human annotators then validated those corrections.
The canonical example: a VoxPopuli clip audibly begins with "Thank you, Mr. President," but the reference transcript omits "Thank you." Six of 11 models reproduced the benchmark's erroneous omission on the original clip. Those same six models also wrote "Mr" without a period, matching the benchmark's punctuation style, while models that included the audible phrase wrote "Mr." When the same sentence was resynthesized in a voice clone of the original parliamentary speaker, five models still dropped the courtesy phrase. When resynthesized in a voice from a European Parliament recording made after every model's training cutoff, only one model (microsoft/Phi-4-multimodal-instruct) continued to omit it. In a fully generic TTS voice unconnected to parliamentary audio, all 11 models restored "Thank you."
The methodology flagged potential reference errors in 40% of VoxPopuli test clips analyzed, affecting roughly 3% of all reference words. Models showing benchmark-optimized behavior reproduced erroneous references 18–30% of the time, with lower WER predicting higher error reproduction rate.
| Model | Real VoxPopuli clip | Same-speaker clone | Post-cutoff EP clone |
|---|---|---|---|
| CohereLabs/cohere-transcribe-03-2026 | ❌ Omits courtesy | ❌ Omits courtesy | ✅ Includes courtesy |
| nvidia/canary-qwen-2.5b | ❌ Omits courtesy | ❌ Omits courtesy | ✅ Includes courtesy |
| ibm-granite/granite-speech-4.1-2b | ❌ Omits courtesy | ❌ Omits courtesy | ✅ Includes courtesy |
| microsoft/Phi-4-multimodal-instruct | ❌ Omits courtesy | ❌ Omits courtesy | ❌ Omits courtesy |
| nvidia/parakeet-tdt-0.6b-v2 | ❌ Omits courtesy | ✅ Includes courtesy | ✅ Includes courtesy |
| bosonai/higgs-audio-v3-8b-stt-v2 | ❌ Omits courtesy | ❌ Omits courtesy | ✅ Includes courtesy |
| Qwen/Qwen3-ASR-0.6B-hf | ✅ Includes courtesy | ✅ Includes courtesy | ✅ Includes courtesy |
| mistralai/Voxtral-Mini-3B-2507 | ✅ Includes courtesy | ✅ Includes courtesy | ✅ Includes courtesy |
| moonshotai/Kimi-Audio-7B-Instruct | ✅ Includes courtesy | ✅ Includes courtesy | ✅ Includes courtesy |
| openai/whisper-large-v3 | ✅ Includes courtesy | ✅ Includes courtesy | ✅ Includes courtesy |
| moonshine-ai/moonshine-streaming-medium | ✅ Includes courtesy | ✅ Includes courtesy | ✅ Includes courtesy |
| Total omitting courtesy | 6 / 11 | 5 / 11 | 1 / 11 |
Masked Entity Retrieval
The second probe digitally silences numbers in audio samples and records whether models output them anyway. Because a silenced token carries no acoustic information, any recovery must come from non-auditory context. On LibriSpeech, some of the strongest benchmark-performing models recovered masked numbers in roughly 30–40% of examples. The effect weakened on freshly collected audio, suggesting that the surrounding benchmark-associated acoustic environment aided recovery.
A combined example illustrates both probes simultaneously: the reference transcript reads "more than 1 amendments to the 2011 draft budget," while the audio says "more than one thousand six hundred amendments to the [silenced] draft budget." Several models output the literal reference string "more than 1 amendments" and inserted the silenced year "2011," reproducing two distinct errors in a single clip.
Orthographic Switching
The third probe targets orthographic variants — word forms that are phonetically identical but spelled differently, such as "anyone" vs. "any one" or "Mr." vs. "Mister." A switch rate of 0% means a model always uses one variant; roughly 50% means random selection; up to 100% means the model correctly identifies which spelling each benchmark expects.
Within LibriSpeech, the split on a sentence where "any one" was the benchmark convention was 6 models vs. 5; it flipped to 2 vs. 9 on a sentence where "anyone" was expected. Across datasets, VoxPopuli consistently uses "Mr." while LibriSpeech spells out "Mister." Multiple models exceeded the 50% random-choice baseline, with some reaching roughly 90% switch accuracy — evidence that models identify dataset membership from acoustic context and select the orthography the benchmark expects.
Practical Implications
A "Benchmark fitting" tab has been added to the Open ASR Leaderboard quantifying VoxPopuli reference error reproduction rates and orthographic switching rates across all submitted models; the underlying scripts and unnormalized model outputs are open-sourced on GitHub. The researchers recommend that benchmark developers move away from simple i.i.d. test splits toward temporal, speaker-based, or metadata-separated evaluation — the structure that Real World VoiceEQ Bench and the Far-field ASR Leaderboard already employ. This concern about evaluation integrity connects to the verification crisis emerging around gated capability claims more broadly in AI. For developers choosing ASR models today, WER on LibriSpeech or VoxPopuli should be weighted against held-out and temporally separated evaluations, not treated as a standalone quality signal.