Datasets:

Modalities:
Text
Formats:
parquet
Languages:
Arabic
Size:
< 1K
ArXiv:
Libraries:
Datasets
pandas
License:
Zaid commited on
Commit
d457e55
โ€ข
1 Parent(s): 464e470

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +90 -0
README.md CHANGED
@@ -25,3 +25,93 @@ configs:
25
  - split: train
26
  path: data/train-*
27
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  - split: train
26
  path: data/train-*
27
  ---
28
+ ---
29
+ dataset_info:
30
+ features:
31
+ - name: Source
32
+ dtype: string
33
+ - name: Sentence
34
+ dtype: string
35
+ - name: Topic
36
+ dtype: string
37
+ splits:
38
+ - name: train
39
+ num_bytes: 10696
40
+ num_examples: 100
41
+ download_size: 6725
42
+ dataset_size: 10696
43
+ configs:
44
+ - config_name: default
45
+ data_files:
46
+ - split: train
47
+ path: data/train-*
48
+ ---
49
+
50
+ # Dataset Card for "CIDAR-MCQ-100"
51
+
52
+ # CIDAR-MCQ-100
53
+
54
+ CIDAR-MCQ-100 contains **100** multiple-choice questions and answers about the Arabic culture.
55
+
56
+ ## ๐Ÿ“š Datasets Summary
57
+
58
+ <table>
59
+ <tr>
60
+ <th>Name</th>
61
+ <th>Explanation</th>
62
+ </tr>
63
+ <tr>
64
+ <td><a href=https://huggingface.co/datasets/arbml/cidar>CIDAR</a></t>
65
+ <td>10,000 instructions and responses in Arabic</td>
66
+ </tr>
67
+ <tr>
68
+ <td><a href=https://huggingface.co/datasets/arbml/cidar-eval-100>CIDAR-EVAL-100</a></t>
69
+ <td>100 instructions to evaluate LLMs on cultural relevance</td>
70
+ </tr>
71
+ <tr>
72
+ <td><a href=https://huggingface.co/datasets/arbml/cidar-mcq-100><b>CIDAR-MCQ-100</b></a></t>
73
+ <td>100 Multiple choice questions and answers to evaluate LLMs on cultural relevance </td>
74
+ </tr>
75
+ </table>
76
+
77
+ ## ๐Ÿ“‹ Dataset Structure
78
+ - `Question(str)`: Question about the Arabic culture.
79
+ - `A(str)`: First choice.
80
+ - `B(str)`: Second choice.
81
+ - `C(str)`: Third choice.
82
+ - `D(str)`: Fourth choice.
83
+ - `answer(str)`: The correct choice from A,B,C, and D.
84
+
85
+ ## ๐Ÿ“ Loading The Dataset
86
+ You can download the dataset directly from HuggingFace or use the following code:
87
+
88
+ ```python
89
+ from datasets import load_dataset
90
+ cidar = load_dataset('arbml/CIDAR-MCQ-100')
91
+ ```
92
+
93
+ ## ๐Ÿ“„ Sample From The Dataset:
94
+
95
+ **Question**: ุญุฏุฏ ุญูŠูˆุงู† ู…ุดู‡ูˆุฑ ููŠ ุงู„ู…ู†ุทู‚ุฉ
96
+
97
+ **A**: ุงู„ุฌู…ู„
98
+ **B**: ุงู„ู„ุงู…ุง
99
+ **C**: ุงู„ูƒุงู†ุบุฑูˆ
100
+ **D**: ุงู„ุฏุจ ุงู„ู‚ุทุจูŠ
101
+ **answer**: A
102
+
103
+ ## ๐Ÿ”‘ License
104
+ The dataset is licensed under **Apache-2.0**. [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0).
105
+
106
+ ## Citation
107
+
108
+ ```
109
+ @misc{alyafeai2024cidar,
110
+ title={{CIDAR: Culturally Relevant Instruction Dataset For Arabic}},
111
+ 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},
112
+ year={2024},
113
+ eprint={2402.03177},
114
+ archivePrefix={arXiv},
115
+ primaryClass={cs.CL}
116
+ }
117
+ ```