Datasets:
File size: 1,406 Bytes
60effe3 9e49279 60effe3 9e49279 1397e1f 9e49279 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | ---
license: mit
task_categories:
- question-answering
language:
- arz
tags:
- dialectal-arabic
- cultural-commonsense
- egyptian-arabic
size_categories:
- n<1K
---
# MasrawiQA
MasrawiQA is a culturally rooted, manually curated evaluation benchmark containing 129 question-answer pairs designed exclusively for the Cairene and Lower Egyptian Arabic dialect (`arz_arab`). Introduced as part of the MRL 2026 Shared Task, this dataset evaluates language models on authentic street slang, everyday idioms, and dense regional knowledge spanning Egyptian sports history, local cuisine, and urban pop culture.
## Dataset Structure
The dataset consists of a single split containing the following features:
- `ID`: Unique numeric identifier for each item.
- `Question`: Casual Egyptian Arabic question text mapping real-world digital orthography.
- `Answer`: Deterministic, short gold-standard solution string (1–3 words).
- `Automatic Translation`: Literal English machine translation baseline.
- `Corrected Translation`: Manually verified, context-accurate English translation capturing figurative intent.
- `Source URL`: Verification URL linking to public archives confirming the underlying fact.
## Usage
You can load this dataset directly using the Hugging Face `datasets` library:
```python
from datasets import load_dataset
dataset = load_dataset("JohnnyGeorge/MasrawiQA")
print(dataset['train'][0]) |