Update README.md
Browse files
README.md
CHANGED
|
@@ -32,4 +32,70 @@ configs:
|
|
| 32 |
path: data/validation-*
|
| 33 |
- split: test
|
| 34 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
path: data/validation-*
|
| 33 |
- split: test
|
| 34 |
path: data/test-*
|
| 35 |
+
task_categories:
|
| 36 |
+
- automatic-speech-recognition
|
| 37 |
+
|
| 38 |
+
pretty_name: A
|
| 39 |
---
|
| 40 |
+
|
| 41 |
+
# Egyptian Arabic ASR Clean 72 h
|
| 42 |
+
|
| 43 |
+
## Dataset Summary
|
| 44 |
+
This corpus contains **≈72 h** of Egyptian‑Arabic speech aligned to text.
|
| 45 |
+
Audio has been resampled to **16 kHz mono WAV**, transcripts are normalised Arabic (no diacritics, Tatweel, digits verbalised), and the data are split 80 / 10 / 10 into train / validation / test.
|
| 46 |
+
|
| 47 |
+
## Supported Tasks and Leaderboards
|
| 48 |
+
| Task | Tags | Notes |
|
| 49 |
+
|------|------|-------|
|
| 50 |
+
| **Automatic Speech Recognition** | `asr`, `speech-recognition` | Primary use‑case |
|
| 51 |
+
| **Forced Alignment / VAD** | `alignment`, `vad` | Clips ≤ 25 s |
|
| 52 |
+
|
| 53 |
+
## Languages
|
| 54 |
+
The dataset is **predominantly Egyptian Arabic** (`ar‑EG`).
|
| 55 |
+
~85 % of recorded hours are male speakers; speaker IDs are unavailable.
|
| 56 |
+
|
| 57 |
+
## Dataset Structure
|
| 58 |
+
|
| 59 |
+
### Data Fields
|
| 60 |
+
| Field | Type | Description |
|
| 61 |
+
|-------|------|-------------|
|
| 62 |
+
| `audio` | `Audio` | Pointer to WAV @ 16 kHz |
|
| 63 |
+
| `text` | `string` | Normalised Arabic transcript |
|
| 64 |
+
| `duration` | `float` | Seconds (post‑resample) |
|
| 65 |
+
| `dataset_source` | `string` | One‑letter code A–D |
|
| 66 |
+
|
| 67 |
+
### Splits
|
| 68 |
+
| Split | Hours |
|
| 69 |
+
|-------|-------|
|
| 70 |
+
| train | ≈57.6 |
|
| 71 |
+
| validation | ≈7.2 |
|
| 72 |
+
| test | ≈7.2 |
|
| 73 |
+
|
| 74 |
+
## Source Data
|
| 75 |
+
| Code | Raw Hours | Description |
|
| 76 |
+
|------|-----------|-------------|
|
| 77 |
+
| A | ~465 | Long clips, heavy overlap |
|
| 78 |
+
| B | ~65 | Similar to A, shorter |
|
| 79 |
+
| C | ~5 | Dual‑channel conversations |
|
| 80 |
+
| D | ~2.5 | YouTube excerpts |
|
| 81 |
+
| *Other* | <5 | Minor sources |
|
| 82 |
+
|
| 83 |
+
Only **≈12 %** of the original 570 h survived the cleaning pipeline.
|
| 84 |
+
|
| 85 |
+
## Data Collection and Processing
|
| 86 |
+
|
| 87 |
+
1. **Format Unification** – convert all audio to 16 kHz WAV.
|
| 88 |
+
2. **Deduplication** – drop exact audio/text duplicates; remove nulls.
|
| 89 |
+
3. **Metadata Pruning** – retain only core fields.
|
| 90 |
+
4. **Text Normalisation** – strip diacritics, Tatweel, punctuation, Latin letters; verbalise digits; fix common glyph errors; run CAMeL‑Tools morphology checks.
|
| 91 |
+
5. **Alignment Diagnostics** – compute chars/s and words/s; flag extreme values.
|
| 92 |
+
6. **Duration Filtering** – keep clips 0.5–25 s.
|
| 93 |
+
7. **Shuffle & Split** – 80 / 10 / 10 random split, uploaded as `datasets.DatasetDict`.
|
| 94 |
+
|
| 95 |
+
## Usage Example
|
| 96 |
+
```python
|
| 97 |
+
from datasets import load_dataset
|
| 98 |
+
|
| 99 |
+
ds = load_dataset("your-username/egyptian_arabic_asr_clean72h")
|
| 100 |
+
print(ds["train"][0]["audio"].sampling_rate) # 16000
|
| 101 |
+
print(ds["train"][0]["text"])
|