Evaluates multilingual automatic speech recognition (ASR) capabilities across 1,600+ languages, including zero-shot generalization to previously unsupported languages. It measures transcription accuracy under varying resource conditions and compares performance against established baselines like Whisper, USM, and MMS. Use when the user wants to benchmark on MMS-Lab, FLEURS, MLS, Common Voice 22, or asks about evaluating this task. Reports CER.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill omnilingual-asr-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Omnilingual Asr Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-omnilingual-asr-eval)More formats (shields.io, HTML) on the badges page.
---
name: omnilingual-asr-eval
description: Evaluates multilingual automatic speech recognition (ASR) capabilities across 1,600+ languages, including zero-shot generalization to previously unsupported languages. It measures transcription accuracy under varying resource conditions and compares performance against established baselines like Whisper, USM, and MMS. Use when the user wants to benchmark on MMS-Lab, FLEURS, MLS, Common Voice 22, or asks about evaluating this task. Reports CER.
metadata:
skill_kind: dataset_eval
source_arxiv: 2511.09690
bibtex_key: keren2025omnilingualasr
confidence: high
---
# omnilingual-asr-eval
> Omnilingual ASR: Open-Source Multilingual Speech Recognition for 1600+ Languages — Keren et al. (2025) (arXiv:2511.09690, 2025)
## What this evaluates
Evaluates multilingual automatic speech recognition (ASR) capabilities across 1,600+ languages, including zero-shot generalization to previously unsupported languages. It measures transcription accuracy under varying resource conditions and compares performance against established baselines like Whisper, USM, and MMS.
## Datasets
- **MMS-Lab** — total ?; splits: dev (-1), test (-1)
- **FLEURS** — total ?; splits: dev (-1), test (-1)
- **MLS** — total ?; splits: dev (-1), test (-1)
- **Common Voice 22** — total ?; splits: dev (-1), test (-1)
## Metrics
- `CER` **(primary)** — range: percent
- Character Error Rate: the minimum number of character edits (substitutions, deletions, insertions) required to transform the predicted transcript into the reference transcript, divided by the number of characters in the reference.
- `WER` — range: percent
- Word Error Rate: identical to CER but computed at the word level instead of the character level.
- `Win Rate` — range: percent
- Percentage of languages on which the evaluated model achieves a lower CER than the baseline model on a given benchmark.
## Input / output format
**Input**: Raw audio utterances, optionally conditioned with source and target language identifier (LID) tokens for translation or script-specific decoding.
**Output**: Transcribed text sequence (character-level for CTC models, token-level for LLM-ASR models).
## Scoring recipe
```python
def compute_avg_cer(predictions_by_lang, references_by_lang):
lang_cers = []
for lang in predictions_by_lang:
preds = predictions_by_lang[lang]
refs = references_by_lang[lang]
total_errors = sum(levenshtein(p, r) for p, r in zip(preds, refs))
total_chars = sum(len(r) for r in refs)
lang_cers.append(total_errors / total_chars if total_chars > 0 else 0.0)
return sum(lang_cers) / len(lang_cers)
```
## Common pitfalls
- Averaging CER across languages rather than across utterances, which disproportionately weights low-resource languages and can mask performance on high-resource ones.
- CTC models frequently suffer from script misprediction in low-resource settings, outputting characters from entirely different languages when the wrong script is selected.
- LM fusion significantly reduces CER on FLEURS and MLS benchmarks but is not applied uniformly across all model variants or baseline comparisons.
## Evidence (verbatim from paper)
> We report character error rate (CER) averaged across languages. In this comparison, we only considered languages that Whisper covers in each benchmark; the number following each dataset name indicates the corresponding number of languages evaluated.
## Citation
```bibtex
@misc{keren2025omnilingualasr,
title={Omnilingual ASR: Open-Source Multilingual Speech Recognition for 1600+ Languages},
author={Keren et al. (2025)},
year={2025},
note={arXiv:2511.09690}
}
```
- arXiv: 2511.09690
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!