hammh0a commited on
Commit
cf0c3e2
ยท
verified ยท
1 Parent(s): 7c0034b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +67 -10
README.md CHANGED
@@ -1,14 +1,71 @@
1
  ---
2
- license: mit
3
- language:
4
- - ar
5
  tags:
6
- - Arabic
7
- - LLM
8
- pretty_name: AraLingBench
 
 
 
 
 
9
  size_categories:
10
- - n<1K
11
  ---
12
- """
13
- https://arxiv.org/abs/2511.14295
14
- """
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ dataset_name: "AraLingBench"
3
+ pretty_name: "AraLingBench"
 
4
  tags:
5
+ - arabic
6
+ - evaluation
7
+ - multiple-choice
8
+ - question-answering
9
+ language:
10
+ - ar
11
+ task_categories:
12
+ - question-answering
13
  size_categories:
14
+ - n<1K
15
  ---
16
+
17
+ # AraLingBench
18
+
19
+ ๐Ÿ“„ **Paper:** [arXiv:2511.14295](https://arxiv.org/abs/2511.14295)
20
+ ๐Ÿ’ป **GitHub:** [hammh0a/AraLingBench](https://github.com/hammh0a/AraLingBench)
21
+
22
+ AraLingBench is a **150-question Arabic multiple-choice benchmark** that tests core linguistic competence of language models across five pillars:
23
+
24
+ - ุงู„ู†ุญูˆ (Grammar)
25
+ - ุงู„ุตุฑู (Morphology)
26
+ - ุงู„ุฅู…ู„ุงุก (Spelling & Orthography)
27
+ - ูู‡ู… ุงู„ู„ุบุฉ (Reading Comprehension)
28
+ - ุงู„ุชุฑูƒูŠุจ ุงู„ู„ุบูˆูŠ ูˆุงู„ุฃุณู„ูˆุจูŠ (Syntax & Stylistics)
29
+
30
+ All questions are **human-authored and validated**, with a single correct answer and a difficulty label: `Easy`, `Medium`, or `Hard`.
31
+
32
+ ## Data Fields
33
+
34
+ Each example has:
35
+ - `label` *(str)* โ€” linguistic category
36
+ - `context` *(str)* โ€” optional supporting text (may be empty)
37
+ - `question` *(str)* โ€” question in Arabic
38
+ - `options` *(List[str])* โ€” answer choices
39
+ - `answer` *(str)* โ€” correct choice (matches one of `options`)
40
+ - `difficulty` *(str)* โ€” one of `Easy`, `Medium`, `Hard`
41
+
42
+ Single split:
43
+ - `train` โ€” 150 examples (use as an evaluation set)
44
+
45
+ ## Usage
46
+
47
+ ```python
48
+ from datasets import load_dataset
49
+
50
+ ds = load_dataset("hammh0a/AraLingBench")
51
+ example = ds["train"][0]
52
+
53
+ print(example["label"])
54
+ print(example["question"])
55
+ print(example["options"])
56
+ print(example["answer"])
57
+ ```
58
+
59
+ ## Citation
60
+
61
+ If you use AraLingBench, please cite:
62
+
63
+ ```bibtex
64
+ @article{zbib2025aralingbench,
65
+ title = {AraLingBench: A Human-Annotated Benchmark for Evaluating Arabic Linguistic Capabilities of Large Language Models},
66
+ author = {Mohammad Zbib and Hasan Abed Al Kader Hammoud and Sina Mukalled and Nadine Rizk and Fatima Karnib and Issam Lakkis and Ammar Mohanna and Bernard Ghanem},
67
+ journal = {arXiv preprint arXiv:2511.14295},
68
+ year = {2025},
69
+ url = {https://arxiv.org/abs/2511.14295}
70
+ }
71
+ ```