You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

SaarAI ASR Benchmark Outputs

Raw per-utterance model outputs (transcription manifests) produced by the gsma-asr-bench runners on SaarAI/asr-leaderboard-datasets.

  • files: 91
  • utterances: 472231
  • languages: 5
  • models: 22

Layout

data/<language_name>/<split>__<dataset_config>__<model_slug>.jsonl
index.jsonl   # one record per file (language, split, model, rows, sha256, ...)
index.csv

Directories categorise by language name; the file name begins with the split name, so both can be parsed without opening the file:

from pathlib import Path
split, dataset_config, model_slug = Path(path).stem.split('__', 2)
language_name = Path(path).parent.name

Loading

from datasets import load_dataset

# everything
ds = load_dataset("SaarAI/asr-benchmark-outputs", data_files="data/**/*.jsonl", split="train")

# one language / one split
ds = load_dataset("SaarAI/asr-benchmark-outputs", data_files="data/amharic/ambient_room_noise__*.jsonl", split="train")

Row schema

audio_filepath, duration, time, text (reference), pred_text (hypothesis) plus the metadata added at upload time: model_slug, model_family, language, language_name, iso_639_3, dataset_config, split, benchmark_dataset.

Contents

language splits files utterances
amharic ambient_room_noise, clean_studio, distant_low_volume_mic, harsh_environment, narrowband_2g_packet_loss, randomized_phone_channel, wideband_phone_volte 16 255440
kinyarwanda test 10 100760
ndebele test 10 19330
shona test 13 22737
zulu test 42 73964
Downloads last month
-