MohamedRashad/fleurs-ar-eg
Dataset Card for FLEURS Arabic–Egyptian Edition Dataset Summary FLEURS Arabic–Egyptian Edition is an unofficial, language-specific subset and adaptation of the FLEURS dataset, focused on Arabic (Egyptian) speech data. The dataset is designed for Automatic Speech Recognition (ASR) research and evaluation and follows the original FLEURS structure while being packaged as a standalone Arabic-focused dataset. The data originates from the FLEURS (Few-shot Learning… See the full description on the dataset page: https://huggingface.co/datasets/MohamedRashad/fleurs-ar-eg.
Dataset Card for FLEURS Arabic–Egyptian Edition
Dataset Summary
FLEURS Arabic–Egyptian Edition is an unofficial, language-specific subset and adaptation of the FLEURS dataset, focused on Arabic (Egyptian) speech data. The dataset is designed for Automatic Speech Recognition (ASR) research and evaluation and follows the original FLEURS structure while being packaged as a standalone Arabic-focused dataset.
The data originates from the FLEURS (Few-shot Learning Evaluation of Universal Representations of Speech) corpus, which itself is the speech counterpart of the FLORES multilingual benchmark. This edition keeps the original sentence-level alignment, metadata, and splits, while standardizing audio to 16 kHz.
Dataset Structure
Data Instances
Each data sample consists of a read-speech audio recording paired with a sentence-level transcription. The utterances are derived from parallel sentences originally used in the FLORES benchmark.
Features
Language Groups
Arabic (ar_eg) belongs to the Central Asia / Middle East / North Africa (CMN) group, consistent with the original FLEURS taxonomy.
Dataset Splits
How to Use
Load with 🤗 Datasets
from datasets import load_dataset
dataset = load_dataset("MohamedRashad/fleurs-ar-eg", split="train")Streaming Mode
from datasets import load_dataset
dataset = load_dataset(
"MohamedRashad/fleurs-ar-eg",
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/fleurs-ar-eg", split="train")
dataloader = DataLoader(dataset, batch_size=16, shuffle=True)Dataset Creation
This dataset was created by:
- Starting from the official FLEURS dataset
- Selecting the Arabic (Egyptian) language configuration
- Preserving the original sentence-level splits and metadata
- Packaging the data into a standalone Hugging Face dataset
- Keeping audio standardized at 16 kHz for ASR compatibility
No additional annotation, filtering, or transcription modification was performed beyond dataset restructuring.
Considerations for Using the Data
Social Impact
This dataset supports the development and evaluation of Arabic speech technologies, particularly for underrepresented dialects such as Egyptian Arabic. It aims to improve accessibility to speech-driven applications and multilingual research.
Biases
- The dataset consists of read speech, which may not reflect spontaneous conversational Arabic.
- Speaker demographics are limited and may not represent the full diversity of Egyptian Arabic speakers.
- Gender labels are coarse and self-reported or inferred.
Limitations
- Limited dataset size (~10 hours of audio)
- Domain restricted to read, formal sentences
- Accent variation within Egyptian Arabic is not explicitly labeled
License
This dataset is released under the Creative Commons Attribution (CC-BY) license, inherited from the original FLEURS dataset.
Users must provide appropriate attribution when using or redistributing the data.
Citation
If you use this dataset, please cite the original FLEURS paper:
@article{fleurs2022arxiv,
title = {FLEURS: Few-shot Learning Evaluation of Universal Representations of Speech},
author = {Conneau, Alexis and Ma, Min and Khanuja, Simran and Zhang, Yu and Axelrod, Vera and Dalmia, Siddharth and Riesa, Jason and Rivera, Clara and Bapna, Ankur},
journal = {arXiv preprint arXiv:2205.12446},
url = {https://arxiv.org/abs/2205.12446},
year = {2022}
}Acknowledgements
Special thanks to the FLEURS authors and contributors for creating and releasing this multilingual speech benchmark, and to the Hugging Face ecosystem for tooling and support.
