MohamedRashad/common-voice-18-arabic
Dataset Card for Common Voice 18 – Arabic Edition Dataset Summary This dataset is an unofficial Arabic-only extraction of Mozilla Common Voice Corpus 18.0, prepared for Automatic Speech Recognition (ASR) research and development. It is derived from the original Common Voice 18 release and filtered to include Arabic (ar) speech data only, while preserving the original dataset structure, splits, and metadata fields. The dataset consists of validated, unvalidated… See the full description on the dataset page: https://huggingface.co/datasets/MohamedRashad/common-voice-18-arabic.
Dataset Card for Common Voice 18 – Arabic Edition
Dataset Summary
This dataset is an unofficial Arabic-only extraction of Mozilla Common Voice Corpus 18.0, prepared for Automatic Speech Recognition (ASR) research and development.
It is derived from the original Common Voice 18 release and filtered to include Arabic (`ar`) speech data only, while preserving the original dataset structure, splits, and metadata fields. The dataset consists of validated, unvalidated, and invalidated speech recordings paired with Arabic transcriptions and speaker metadata.
- Language: Arabic (
ar) - Task: Automatic Speech Recognition (ASR)
- Audio Sampling Rate: 48 kHz
- License: CC-0 (Public Domain)
- Source: Mozilla Common Voice Corpus 18.0
Supported Tasks and Leaderboards
- Automatic Speech Recognition (ASR)
- Speech-to-Text (STT)
- Arabic acoustic and language modeling
- Speaker and accent analysis (limited metadata)
Dataset Structure
Data Instances
Each data sample includes:
- An audio recording of spoken Arabic
- A corresponding sentence (transcription)
- Speaker metadata (age, gender, accent, locale)
- Voting-based validation information
Features
Dataset Splits
How to Use
Load with 🤗 Datasets
from datasets import load_dataset
dataset = load_dataset("MohamedRashad/common-voice-18-arabic", split="train")Streaming Mode
from datasets import load_dataset
dataset = load_dataset(
"MohamedRashad/common-voice-18-arabic",
split="train",
streaming=True
)
print(next(iter(dataset)))PyTorch DataLoader
from datasets import load_dataset
from torch.utils.data import DataLoader
dataset = load_dataset("MohamedRashad/common-voice-18-arabic", split="train")
dataloader = DataLoader(dataset, batch_size=32, shuffle=True)Dataset Creation
This dataset was created by:
- Downloading Mozilla Common Voice Corpus 18.0
- Filtering the corpus to include Arabic language data only
- Preserving original splits and metadata
- Converting the data into Hugging Face
datasetsformat
No additional annotation or modification of audio or text was performed.
Licensing Information
This dataset is released under the Creative Commons Zero (CC-0) license, the same as the original Mozilla Common Voice dataset. You are free to use, modify, and redistribute it without restriction.
Citation
If you use this dataset, please cite the original Common Voice paper:
@inproceedings{commonvoice:2020,
author = {Ardila, R. and Branson, M. and Davis, K. and Henretty, M. and Kohler, M. and Meyer, J. and Morais, R. and Saunders, L. and Tyers, F. M. and Weber, G.},
title = {Common Voice: A Massively-Multilingual Speech Corpus},
booktitle = {Proceedings of the 12th Conference on Language Resources and Evaluation (LREC 2020)},
pages = {4211--4215},
year = 2020
}Acknowledgements
Thanks to Mozilla and the thousands of volunteer contributors who made the Common Voice project possible.
