Datasets:

Modalities:
Text
Formats:
parquet
Languages:
Arabic
Size:
n<1K
ArXiv:
Tags:
License:
Zaid commited on
Commit
646152a
1 Parent(s): e8b71d9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -0
README.md CHANGED
@@ -19,3 +19,68 @@ configs:
19
  - split: train
20
  path: data/train-*
21
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  - split: train
20
  path: data/train-*
21
  ---
22
+
23
+ # Dataset Card for "CIDAR-EVAL-100"
24
+
25
+ # CIDAR-EVAL-100
26
+
27
+ CIDAR-EVAL-100 contains **100** instruction-only dataset.
28
+
29
+ ## 📚 Datasets Summary
30
+
31
+ <table>
32
+ <tr>
33
+ <th>Name</th>
34
+ <th>Explanation</th>
35
+ </tr>
36
+ <tr>
37
+ <td><a href=https://huggingface.co/datasets/arbml/cidar>CIDAR</a></t>
38
+ <td>10,000 instructions and responses in Arabic</td>
39
+ </tr>
40
+ <tr>
41
+ <td><a href=https://huggingface.co/datasets/arbml/cidar-eval-100><b>CIDAR-EVAL-100</b></a></t>
42
+ <td>100 instructions to evaluate LLMs on cultural relevance</td>
43
+ </tr>
44
+ <tr>
45
+ <td><a href=https://huggingface.co/datasets/arbml/cidar-mcq-100>CIDAR-MCQ-100</a></t>
46
+ <td>100 Multiple choice questions and answers to evaluate LLMs on cultural relevance </td>
47
+ </tr>
48
+ </table>
49
+
50
+ ## 📋 Dataset Structure
51
+ - `Source(str)`: Source of the instruction.
52
+ - `Sentence(str)`: Sentence of the instruction.
53
+ - `Topic(str)`: Topic covered by the instruction.
54
+
55
+ ## 📁 Loading The Dataset
56
+ You can download the dataset directly from HuggingFace or use the following code:
57
+
58
+ ```python
59
+ from datasets import load_dataset
60
+ cidar = load_dataset('arbml/CIDAR-EVAL-100')
61
+ ```
62
+
63
+ ## 📄 Sample From The Dataset:
64
+
65
+ **Source**: Manual
66
+
67
+ **Sentence**: أخبرني عن أشهر أربعة حيوانات في المنطقة
68
+
69
+ **Topic**: Animals
70
+
71
+
72
+ ## 🔑 License
73
+ The dataset is licensed under **Apache-2.0**. [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0).
74
+
75
+ ## Citation
76
+
77
+ ```
78
+ @misc{alyafeai2024cidar,
79
+ title={{CIDAR: Culturally Relevant Instruction Dataset For Arabic}},
80
+ author={Zaid Alyafeai and Khalid Almubarak and Ahmed Ashraf and Deema Alnuhait and Saied Alshahrani and Gubran A. Q. Abdulrahman and Gamil Ahmed and Qais Gawah and Zead Saleh and Mustafa Ghaleb and Yousef Ali and Maged S. Al-Shaibani},
81
+ year={2024},
82
+ eprint={2402.03177},
83
+ archivePrefix={arXiv},
84
+ primaryClass={cs.CL}
85
+ }
86
+ ```