Datasets:
Tasks:
Automatic Speech Recognition
Formats:
parquet
Languages:
English
Size:
10K - 100K
ArXiv:
License:
Update dataset card
Browse files
README.md
CHANGED
|
@@ -1,3 +1,88 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- automatic-speech-recognition
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- asr
|
| 9 |
+
- robustness
|
| 10 |
+
- benchmark
|
| 11 |
+
- out-of-distribution
|
| 12 |
+
- hallucination
|
| 13 |
+
- speech
|
| 14 |
+
pretty_name: WildASR
|
| 15 |
+
size_categories:
|
| 16 |
+
- 1K<n<10K
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# WildASR
|
| 20 |
+
|
| 21 |
+
Official dataset for **Back to Basics: Revisiting ASR in the Age of Voice Agents**.
|
| 22 |
+
|
| 23 |
+
Code: [github.com/boson-ai/WildASR-public](https://github.com/boson-ai/WildASR-public)
|
| 24 |
+
|
| 25 |
+
## Overview
|
| 26 |
+
|
| 27 |
+
WildASR is a multilingual diagnostic benchmark built from **real human speech** to stress-test ASR robustness under real-world out-of-distribution (OOD) conditions. We decompose robustness into three axes:
|
| 28 |
+
|
| 29 |
+
- **Environmental Degradation** (the *where*): reverberation, far-field, phone codec, noise gap, clipping
|
| 30 |
+
- **Demographic Shift** (the *who*): children, older adults, accented speech
|
| 31 |
+
- **Linguistic Diversity** (the *what*): short utterances, incomplete audio, code-switching
|
| 32 |
+
|
| 33 |
+
## Dataset
|
| 34 |
+
|
| 35 |
+
Due to licensing constraints, we currently release 7 splits covering environment degradation (clean, clipping, far-field, noise gap, phone codec, reverberation) and demographic shift (accent). 10,058 samples, ~30 hours total. Each sample contains `audio` (16kHz WAV), `transcript`, and metadata (`category`, `subset`, `language`, etc.). More splits and languages will be added as licenses are cleared.
|
| 36 |
+
|
| 37 |
+
## Usage
|
| 38 |
+
|
| 39 |
+
```python
|
| 40 |
+
from datasets import load_dataset
|
| 41 |
+
|
| 42 |
+
# Load all splits
|
| 43 |
+
ds = load_dataset("bosonai/WildASR")
|
| 44 |
+
|
| 45 |
+
# Load a specific split
|
| 46 |
+
clean = load_dataset("bosonai/WildASR", split="environment_degradation__en__fleurs_clean_en")
|
| 47 |
+
|
| 48 |
+
# Play audio (in a notebook)
|
| 49 |
+
clean[0]["audio"]
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
### Run evaluation with WildASR toolkit
|
| 53 |
+
|
| 54 |
+
```bash
|
| 55 |
+
pip install git+https://github.com/boson-ai/WildASR-public.git
|
| 56 |
+
|
| 57 |
+
# Save a split as parquet for the eval toolkit
|
| 58 |
+
clean.to_parquet("data/fleurs_clean.parquet")
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
```python
|
| 62 |
+
from run_eval.eval import create_client, run_asr_evaluation, ASREvalConfig
|
| 63 |
+
|
| 64 |
+
client = create_client("whisper-large-v3", "en")
|
| 65 |
+
cfg = ASREvalConfig(
|
| 66 |
+
model_name="whisper-large-v3",
|
| 67 |
+
data_path="data/fleurs_clean.parquet",
|
| 68 |
+
output_dir="results/whisper-large-v3",
|
| 69 |
+
language="en",
|
| 70 |
+
wer_method="qwen",
|
| 71 |
+
)
|
| 72 |
+
run_asr_evaluation(client=client, config=cfg)
|
| 73 |
+
```
|
| 74 |
+
|
| 75 |
+
## Citation
|
| 76 |
+
|
| 77 |
+
```bibtex
|
| 78 |
+
@misc{wildasr2026,
|
| 79 |
+
title = {Back to Basics: Revisiting ASR in the Age of Voice Agents},
|
| 80 |
+
author = {Geeyang Tay and Wentao Ma and Jaewon Lee and Yuzhi Tang and Daniel Lee and Weisu Yin and Dongming Shen and Yi Zhu and Mu Li and Alex Smola},
|
| 81 |
+
year = {2026},
|
| 82 |
+
note = {arXiv:TODO}
|
| 83 |
+
}
|
| 84 |
+
```
|
| 85 |
+
|
| 86 |
+
## License
|
| 87 |
+
|
| 88 |
+
Apache 2.0
|