Research

AI-generated text

Benchmark optimization inflates ASR scores by teaching models to match test-specific transcripts

Open-source speech recognition models can learn to reproduce quirks of public benchmarks instead of faithfully transcribing audio, inflating reported performance.

Benchmark optimization inflates ASR scores by teaching models to match test-specific transcripts

Public voice-AI benchmarks increasingly report human-level performance, but those scores do not always reflect how models behave on real-world audio. Because public benchmarks are open and widely used, models can become optimized for the tests themselves: they may learn benchmark-specific patterns that improve scores without improving general transcription quality.

Why this matters

Traditional benchmarks often omit many conditions that make voice systems reliable and contextually appropriate in practice. If models learn to reproduce quirks of a benchmark’s reference transcripts rather than transcribe what the audio actually contains, reported improvements can be misleading for real deployments.

What the researchers did

The authors introduced three probes to quantify benchmark optimization and evaluated 11 widely used open-source ASR models, including CohereLabs/cohere-transcribe-03-2026, nvidia/canary-qwen-2.5b, ibm-granite/granite-speech-4.1-2b, microsoft/Phi-4-multimodal-instruct, nvidia/parakeet-tdt-0.6b-v2, bosonai/higgs-audio-v3-8b-stt-v2, Qwen/Qwen3-ASR-0.6B-hf, mistralai/Voxtral-Mini-3B-2507, moonshotai/Kimi-Audio-7B-Instruct, openai/whisper-large-v3 and moonshine-ai/moonshine-streaming-medium.

The three probes were:

  • Consensus disagreement (Reference disagreement) on VoxPopuli: an ensemble of independently selected low-phoneme-error-rate (PER) models flagged cases where the models unanimously disagreed with the benchmark reference transcript; a sample of flagged cases was then validated with human annotations.
  • Masked Entity Retrieval: numbers in audio were deliberately silenced, so models should not output those numbers if they transcribe faithfully; the test checks whether models instead recover the reference number.
  • Orthographic Switching: whether models adopt the exact spelling convention used in each benchmark’s reference (e.g., "Mr." vs "Mister", "anyone" vs "any one") even when the audio is ambiguous.

Key findings

  • Reproducing erroneous references: Several of the highest-scoring systems reproduced reference-transcript errors in VoxPopuli and LibriSpeech, even when the audio contradicted the reference or when relevant words were silenced. For example, one VoxPopuli clip clearly contains the phrase "Thank you, Mr. President," but the reference omits "Thank you." Six of the 11 tested models reproduced the erroneous reference on that clip.

  • Acoustic cues and dataset membership: Some models appeared to rely on subtle acoustic cues tied to the benchmark—cues that let them identify which dataset a clip likely came from and thus produce the "expected" benchmark transcript even when it contradicted the audio. When the same sentence was synthesized as a voice clone of a new parliamentary recording or expressed in generic TTS, most models reverted to audio-faithful transcripts, suggesting that benchmark-associated acoustics drive some of the behavior.

  • Scale of the problem: The methodology flagged potential reference errors in about 40% of the VoxPopuli test clips analyzed, affecting roughly 3% of all reference words. Models exhibiting benchmark-optimized behavior reproduced erroneous reference transcripts 18–30% of the time. The models with the lowest WERs—the ones reported as the best on the benchmarks—were also the most likely to reproduce these errors.

  • Masked numbers: On LibriSpeech, some of the strongest benchmark-performing models reproduced masked numbers in approximately 30–40% of examples, even though the numbers had been removed from the audio. This recovery rate was higher on public benchmark splits and lower on held-out or newly collected audio (ep-fresh and libri-fresh), implying that benchmark-associated audio context—not only textual autocomplete—helped models recover the references.

  • Orthographic switching: Several models exceeded the 50% random-choice baseline for choosing orthographic variants and some reached roughly 90% switch accuracy, indicating that the models can identify which dataset an audio sample likely comes from and select the spelling convention the benchmark expects, despite identical pronunciations.

Localization and mitigations

  • When presented with freshly collected data from the same domains but recorded after the models’ training cutoffs (e.g., recent European Parliament recordings for VoxPopuli or new LibriVox narrators for LibriSpeech), many models stopped matching the benchmark reference and reverted to more audio-faithful transcriptions.

  • Interventions such as restricting the model’s attention to relevant frames, asking the model to translate the audio, trimming surrounding benchmark context, or appending unrelated conversational audio often restored faithful transcripts. Conversely, appending VoxPopuli audio could make otherwise faithful samples more likely to match the benchmark reference.

These observations support the idea that models can transcribe literal spoken words but use surrounding acoustic context to decide whether to follow the audio or to follow a benchmark-specific transcription policy.

Recommendations and conclusion

The authors recommend using fully held-out evaluation sets (as in Real World VoiceEQ Bench, the Open ASR Leaderboard and the Far-field ASR Leaderboard), looking beyond WER on a single public dataset, and increasing transparency around training data and model-selection procedures. They also suggest benchmark developers avoid simple i.i.d. test splits in favor of temporal, speaker, or other metadata-based separations.

Public benchmarks remain valuable because they are transparent, repeatable, and easy to run, but they are most useful when we can distinguish genuine transcription improvements from benchmark-specific gains that do not generalize to new audio. To help practitioners, the Open ASR Leaderboard added a "Benchmark fitting" tab that includes analyses quantifying VoxPopuli reference error rates and orthographic switching across public datasets. Relevant scripts and un-normalized model outputs are open-sourced on GitHub.

For full details, the authors encourage reading the complete report.