File size: 4,783 Bytes
4d48b35 b97d3b5 4d48b35 b97d3b5 4d48b35 b97d3b5 4d48b35 b97d3b5 4d48b35 b97d3b5 4d48b35 b97d3b5 4d48b35 b97d3b5 4d48b35 b97d3b5 4d48b35 b97d3b5 4d48b35 b97d3b5 4d48b35 b97d3b5 | 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | ---
language:
- ar
license: cc-by-sa-4.0
task_categories:
- text-classification
- token-classification
- feature-extraction
- translation
- question-answering
task_ids:
- language-modeling
- named-entity-recognition
- semantic-similarity
pretty_name: Hadrami Arabic Dialect Dataset
dataset_info:
version: 2.0.0
size_categories:
- 1K<n<10K
annotations_creators:
- expert-generated
language_creators:
- expert-generated
multilinguality:
- monolingual
source_datasets:
- original
tags:
- arabic
- dialect
- nlp
- linguistics
- low-resource
- yemen
- hadramawt
- arabic-nlp
- lexicon
- semantic-intent
- transliteration
- rag
- dialect-translation
- yemeni-arabic
- hadrami
- morphology
- lexicography
thumbnail: cover.png
---
# Hadrami Arabic Dialect Dataset
A structured dataset of **1,000 entries** from the Hadrami Arabic dialect (spoken primarily in the Hadramawt region of Yemen). Each entry includes the dialectal word alongside its Modern Standard Arabic (MSA/Fusha) equivalent, linguistic metadata, usage examples, proverbs, and semantic tags.
> 🔊 **Roadmap:** Audio pronunciations for each entry are planned for a future release.
---
---
## Dataset Summary
| Field | Value |
|---|---|
| Entries | 1,000 |
| Language | Arabic (Hadrami dialect + MSA) |
| Source | قاموس اللهجة الحضرمية — فهد بن هلابي |
| Format | CSV / JSON |
| License | CC BY 4.0 |
| Task Tags | NLP, Dialectal Arabic, Lexicography, Low-resource Language |
---
## Schema
| Column | Type | Description |
|---|---|---|
| `id` | int | Unique entry identifier |
| `word_vocalized` | string | Dialectal word with full diacritics (تشكيل) |
| `word_clean` | string | Dialectal word without diacritics |
| `root` | string | Arabic trilateral/quadrilateral root. May be `null` for loanwords or proper names |
| `pos` | string | Part of speech (see POS values below) |
| `fusha_equivalent` | string | Modern Standard Arabic equivalent word or phrase |
| `definition` | string | Definition in MSA |
| `region` | string | Geographic usage region within Hadramawt |
| `synonyms` | JSON array | List of dialectal synonyms |
| `phonetic_variants` | JSON array | Alternative pronunciations |
| `note` | string / null | Linguistic or usage note. `null` if not applicable |
| `source` | string | Source reference (book title, author, page) |
| `examples` | JSON array | Usage examples (see structure below) |
| `proverbs` | JSON array | Related proverbs in dialect |
| `tags` | JSON array | Semantic category tags |
### `examples` field structure
Each example is a JSON object with two keys:
```json
{
"f": "الجملة بالفصحى",
"h": "الجملة بالحضرمية"
}
```
- `f` — sentence in Modern Standard Arabic (Fusha)
- `h` — equivalent sentence in Hadrami dialect
### POS values
`Noun`, `Verb`, `Adjective`, `Adverb`, `Expression`, `Preposition`, `Particle`, `Noun/Verb`, `Verb/Adjective`, `Verb/Phrase`, `Noun/Adjective`
---
## Notable Statistics
| Field | Coverage |
|---|---|
| Entries with examples | 1,043 / 1,000 (99.6%) |
| Entries with synonyms | 742 / 1,000 (70.9%) |
| Entries with proverbs | 89 / 1,000 (8.5%) |
| Entries with notes | 620 / 1,000 (59.2%) |
| `note` nulls | 427 — intentionally null, not missing |
---
## Top Semantic Tags
`Daily Life` · `Nature` · `Agriculture` · `Social Customs` · `Architecture` · `Food` · `Clothing` · `Tools` · `Expressions` · `Home` · `Water` · `Weather` · `History`
---
## Usage (Python)
```python
import pandas as pd
import json
df = pd.read_csv("hadrami_dictionary_v2.csv")
# Parse JSON array columns
for col in ["synonyms", "phonetic_variants", "examples", "proverbs", "tags"]:
df[col] = df[col].apply(json.loads)
# Example: get all nouns
nouns = df[df["pos"] == "Noun"]
# Example: get entries tagged with Food
food = df[df["tags"].apply(lambda t: "Food" in t)]
```
---
## Loading from HuggingFace
```python
from datasets import load_dataset
ds = load_dataset("saeedbark/hadrami-arabic-dialect-dataset")
```
---
## Citation
If you use this dataset, please cite the original source:
> فهد بن هلابي. *قاموس اللهجة الحضرمية*. (Fahd bin Hilabi, Dictionary of the Hadrami Dialect)
---
## Contributing
Found an error or want to add entries? Open an issue or pull request on the dataset repository.
---
## Changelog
### v2.0.0 (2026-05-04)
- Added field (NLP semantic role classification)
- Added field (Latin script for each entry)
- Added field (pre-built Arabic full-text search blob)
- Normalized all and values
- Tags converted to lowercase for consistency
- 1,000 verified entries (quality-reviewed subset)
### v1.0.0
- Initial release with 1,047 entries |