You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/evaluation/speech-audio.md
+72-4Lines changed: 72 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,19 @@ ASR benchmark based on the [HuggingFace Open ASR Leaderboard](https://huggingfac
20
20
- Benchmark is defined in [`nemo_skills/dataset/asr-leaderboard/__init__.py`](https://github.com/NVIDIA-NeMo/Skills/blob/main/nemo_skills/dataset/asr-leaderboard/__init__.py)
21
21
- Original datasets are hosted on HuggingFace (downloaded automatically during preparation)
22
22
23
+
### AppTek Call-Center Dialogues
24
+
25
+
AppTek Call-Center Dialogues is a long-form English ASR benchmark of role-played agent-customer calls across 14 accent groups and 16 service domains. It contains 1,746 split-channel WAV files, totaling 128.6 hours. Many calls run several minutes long (the longest exceeds 20 minutes), so a model's generation budget and long-audio settings often need tuning before evaluation.
26
+
27
+
The benchmark uses the official HuggingFace release: [apptek-com/apptek_callcenter_dialogues](https://huggingface.co/datasets/apptek-com/apptek_callcenter_dialogues). Scoring uses WER with Whisper English normalization plus the dataset-specific word mappings from the released `score.py` and `word_mappings.py`.
28
+
29
+
#### Dataset Location
30
+
31
+
- Benchmark is defined in [`nemo_skills/dataset/apptek-callcenter-dialogues/__init__.py`](https://github.com/NVIDIA-NeMo/Skills/blob/main/nemo_skills/dataset/apptek-callcenter-dialogues/__init__.py)
32
+
- Original data is hosted on HuggingFace and downloaded automatically during preparation.
33
+
- All accent metadata is mapped to one NeMo Skills split: `test.jsonl`.
34
+
- A standalone Parakeet v3 reproduction script lives at [`recipes/apptek-callcenter-dialogues/reproduce_parakeet_v3.py`](https://github.com/NVIDIA-NeMo/Skills/blob/main/recipes/apptek-callcenter-dialogues/reproduce_parakeet_v3.py) for cross-checking the WER against the dataset paper.
35
+
23
36
### MMAU-Pro
24
37
25
38
MMAU-Pro (Multimodal Audio Understanding - Pro) is a comprehensive benchmark for evaluating audio understanding capabilities across three different task categories:
@@ -51,6 +64,28 @@ Prepare specific datasets only:
51
64
ns prepare_data asr-leaderboard --datasets librispeech_clean ami
52
65
```
53
66
67
+
### AppTek Call-Center Dialogues
68
+
69
+
The full dataset is 34.9 GB. If `--data_dir` is not passed to the dataset prepare script, raw files are downloaded to a sibling directory outside the repo, such as `<repo-parent>/Skills-data/apptek-callcenter-dialogues`.
Reported columns match the standard NeMo Skills ASR table — `wer`, `substitutions`, `insertions`, `deletions`, `ref_words` — and the summary includes per-accent rows such as `apptek-callcenter-dialogues-en-AU` because each sample sets `subset_for_metrics` to the accent code.
323
+
324
+
For reference, the AppTek dataset paper reports Parakeet v3 at 9.2% WER with Silero VAD segmentation and ~10.4% WER without external segmentation; report the segmentation setup with any reproduced number.
0 commit comments