Evaluates universal speech representations across 102 languages using few-shot learning on parallel speech data. Probes capabilities in automatic speech recognition (ASR), speech language identification, and retrieval tasks. Use when the user wants to benchmark on FLEURS, or asks about evaluating this task. Reports character level error rate.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill fleurs-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Fleurs Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-fleurs-eval)More formats (shields.io, HTML) on the badges page.
---
name: fleurs-eval
description: Evaluates universal speech representations across 102 languages using few-shot learning on parallel speech data. Probes capabilities in automatic speech recognition (ASR), speech language identification, and retrieval tasks. Use when the user wants to benchmark on FLEURS, or asks about evaluating this task. Reports character level error rate.
metadata:
skill_kind: dataset_eval
source_arxiv: 2205.12446
bibtex_key: conneau2022fleurs
confidence: medium
---
# fleurs-eval
> FLEURS: Few-shot Learning Evaluation of Universal Representations of Speech — Conneau et al. (2022) (arXiv:2205.12446, 2022)
## What this evaluates
Evaluates universal speech representations across 102 languages using few-shot learning on parallel speech data. Probes capabilities in automatic speech recognition (ASR), speech language identification, and retrieval tasks.
## Datasets
- **FLEURS** — total ?; splits: train (1509), dev (150), test (350)
## Metrics
- `character level error rate` **(primary)** — range: [0, 1]
- Standard character-level edit distance normalized by the length of the reference transcript. Calculated on character-based modeling units after NFC/FST normalization, lowercasing, punctuation removal, and word boundary tokenization.
## Input / output format
**Input**: 16kHz audio recordings (≤30 seconds per segment) paired with parallel text transcripts across 102 languages.
**Output**: Predicted character sequences corresponding to the input audio segments.
## Scoring recipe
```python
def calculate_cer(predictions, references):
total_errors = 0
total_ref_len = 0
for pred, ref in zip(predictions, references):
pred_norm = normalize(pred)
ref_norm = normalize(ref)
total_errors += edit_distance(pred_norm, ref_norm)
total_ref_len += len(ref_norm)
return total_errors / total_ref_len if total_ref_len > 0 else 0.0
```
## Common pitfalls
- Approximately 21.5% of sentences in the first version lack any validated recordings, requiring careful handling of missing data.
- Speakers are strictly disjoint between train/dev and test sets, so models cannot rely on speaker-specific features.
- Text normalization (NFC, FST, lowercasing, punctuation removal, character splitting) must be applied consistently to both predictions and references to match the stated evaluation unit.
## Evidence (verbatim from paper)
> Among the various possible modeling units (e.g. character or sentence-pieces) for massively multilingual ASR, a universal vocabulary of characters requires the least resources to build, and better matches a common evaluation metric (i.e. character level error rate).
## Citation
```bibtex
@misc{conneau2022fleurs,
title={FLEURS: Few-shot Learning Evaluation of Universal Representations of Speech},
author={Conneau et al. (2022)},
year={2022},
note={arXiv:2205.12446}
}
```
- arXiv: 2205.12446
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!