Datasets:
Add Egyptian Arabic <-> English translation dataset (50K) + card
Browse files- README.md +116 -0
- data/train-00000-of-00001.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,116 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- translation
|
| 5 |
+
language:
|
| 6 |
+
- ar
|
| 7 |
+
- en
|
| 8 |
+
tags:
|
| 9 |
+
- egyptian-arabic
|
| 10 |
+
- arabic
|
| 11 |
+
- egyptian
|
| 12 |
+
- dialectal-arabic
|
| 13 |
+
- translation
|
| 14 |
+
- machine-translation
|
| 15 |
+
- parallel-corpus
|
| 16 |
+
size_categories:
|
| 17 |
+
- 10K<n<100K
|
| 18 |
+
pretty_name: Egyptian Arabic ↔ English Translation (50K)
|
| 19 |
+
configs:
|
| 20 |
+
- config_name: default
|
| 21 |
+
data_files:
|
| 22 |
+
- split: train
|
| 23 |
+
path: data/train-*.parquet
|
| 24 |
+
---
|
| 25 |
+
|
| 26 |
+
# Egyptian Arabic ↔ English Translation (50K)
|
| 27 |
+
|
| 28 |
+
An **open-source** parallel corpus of **50,000** Egyptian Arabic sentences paired
|
| 29 |
+
with their English translations. Released to help the community build and evaluate
|
| 30 |
+
translation systems for **Egyptian / dialectal Arabic** — a widely spoken variety
|
| 31 |
+
that remains under-served by open translation data compared to Modern Standard
|
| 32 |
+
Arabic.
|
| 33 |
+
|
| 34 |
+
Use it freely for machine translation, LLM fine-tuning and evaluation, dialectal
|
| 35 |
+
Arabic NLP, and data augmentation.
|
| 36 |
+
|
| 37 |
+
## Dataset structure
|
| 38 |
+
|
| 39 |
+
A single `train` split with 50,000 rows and two text columns:
|
| 40 |
+
|
| 41 |
+
| Column | Language | Description |
|
| 42 |
+
|---|---|---|
|
| 43 |
+
| `Arabic` | Egyptian Arabic (`ar`) | A sentence in colloquial Egyptian Arabic |
|
| 44 |
+
| `English` | English (`en`) | Its English translation |
|
| 45 |
+
|
| 46 |
+
The pairs are aligned one-to-one, so the dataset can be used in **either
|
| 47 |
+
direction** (Egyptian Arabic → English or English → Egyptian Arabic).
|
| 48 |
+
|
| 49 |
+
### Examples
|
| 50 |
+
|
| 51 |
+
| Arabic | English |
|
| 52 |
+
|---|---|
|
| 53 |
+
| تعالى شوفها | Come see it |
|
| 54 |
+
| دي فكرة ممتازة | That's a great idea |
|
| 55 |
+
| اتأكد إن مفيش كاميرات. | Make sure there are no cameras. |
|
| 56 |
+
| شكراً يا أستاذ. | Thank you, dear professor. |
|
| 57 |
+
| عمرك رحت زفتى في التمانينات؟ | Have you ever been to Zefta in the 80s? |
|
| 58 |
+
|
| 59 |
+
## Usage
|
| 60 |
+
|
| 61 |
+
```python
|
| 62 |
+
from datasets import load_dataset
|
| 63 |
+
|
| 64 |
+
ds = load_dataset("oddadmix/egyptian-arabic-english-translation-50k", split="train")
|
| 65 |
+
print(ds[0])
|
| 66 |
+
# {'Arabic': '...', 'English': '...'}
|
| 67 |
+
|
| 68 |
+
# Build a supervised translation pair
|
| 69 |
+
for ex in ds.select(range(3)):
|
| 70 |
+
src, tgt = ex["Arabic"], ex["English"]
|
| 71 |
+
```
|
| 72 |
+
|
| 73 |
+
Or straight from the parquet with pandas / polars:
|
| 74 |
+
|
| 75 |
+
```python
|
| 76 |
+
import pandas as pd
|
| 77 |
+
df = pd.read_parquet("data/train-00000-of-00001.parquet")
|
| 78 |
+
```
|
| 79 |
+
|
| 80 |
+
## Intended uses
|
| 81 |
+
|
| 82 |
+
- Training and fine-tuning **Egyptian Arabic ↔ English** translation models.
|
| 83 |
+
- Fine-tuning or instruction-tuning LLMs for dialectal Arabic understanding and generation.
|
| 84 |
+
- Building evaluation / benchmark sets for dialectal machine translation.
|
| 85 |
+
- Data augmentation for low-resource Arabic dialect NLP.
|
| 86 |
+
|
| 87 |
+
## Notes and limitations
|
| 88 |
+
|
| 89 |
+
- The Arabic side is **colloquial Egyptian**, so spelling and phrasing vary
|
| 90 |
+
naturally (dialectal Arabic has no single standardized orthography). Expect
|
| 91 |
+
informal register, code-switching, and conversational style.
|
| 92 |
+
- Sentence lengths range from a few words to full paragraphs.
|
| 93 |
+
- No predefined train/validation/test split is provided — create your own split
|
| 94 |
+
to fit your setup (e.g. `ds.train_test_split(test_size=0.05, seed=42)`).
|
| 95 |
+
- As with any translation corpus, occasional imperfect alignments may exist;
|
| 96 |
+
filter or clean further if your task is sensitive to noise.
|
| 97 |
+
|
| 98 |
+
## License
|
| 99 |
+
|
| 100 |
+
Released under the **Apache-2.0** license — free to use, modify, and redistribute,
|
| 101 |
+
including commercially, with attribution. If Apache-2.0 doesn't fit your needs,
|
| 102 |
+
open a discussion on the dataset page.
|
| 103 |
+
|
| 104 |
+
## Citation
|
| 105 |
+
|
| 106 |
+
```bibtex
|
| 107 |
+
@misc{egyptian_arabic_english_translation_50k,
|
| 108 |
+
title = {Egyptian Arabic--English Translation (50K)},
|
| 109 |
+
author = {oddadmix},
|
| 110 |
+
year = {2026},
|
| 111 |
+
url = {https://huggingface.co/datasets/oddadmix/egyptian-arabic-english-translation-50k}
|
| 112 |
+
}
|
| 113 |
+
```
|
| 114 |
+
|
| 115 |
+
Contributions, corrections, and issues are welcome — this dataset is shared to
|
| 116 |
+
support open work on Egyptian Arabic. 🇪🇬
|
data/train-00000-of-00001.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac25d3ceff020650b51cb9ad02e79d4ba98f81ff7185849364a4ae2cc916683e
|
| 3 |
+
size 12536940
|