CoolFace
Datasetpublic

hf-audio/open-asr-leaderboard-multilingual-datasets

ASR Leaderboard Datasets This repository contains test splits from multiple speech corpora, including FLEURS, Common Voice (MCV), and Multilingual LibriSpeech (MLS). How to Load To load a specific subset, use load_dataset with the corresponding config_name in the format <set>_<lang>. from datasets import load_dataset # Load the FLEURS dataset for Bulgarian fleurs_bg = load_dataset("nithinraok/asr-leaderboard-datasets", "fleurs_bg") print(fleurs_bg) # Load the… See the full description on the dataset page: https://huggingface.co/datasets/hf-audio/open-asr-leaderboard-multilingual-datasets.

sourceHugging Facecc-by-nc-sa-4.0updated 2mo agoView on Hugging Face
4likes1.1kdownloads
Dataset Card

ASR Leaderboard Datasets

This repository contains test splits from multiple speech corpora, including FLEURS, Common Voice (MCV), and Multilingual LibriSpeech (MLS).

How to Load

To load a specific subset, use load_dataset with the corresponding config_name in the format <set>_<lang>.

python
from datasets import load_dataset

# Load the FLEURS dataset for Bulgarian
fleurs_bg = load_dataset("nithinraok/asr-leaderboard-datasets", "fleurs_bg")
print(fleurs_bg)

# Load the MCV dataset for English
mcv_en = load_dataset("nithinraok/asr-leaderboard-datasets", "mcv_en")
print(mcv_en)

# Load the MLS dataset for Spanish
mls_es = load_dataset("nithinraok/asr-leaderboard-datasets", "mls_es")
print(mls_es)