murodbek commited on
Commit
86267e0
·
verified ·
1 Parent(s): 025e633

adding README

Browse files
Files changed (1) hide show
  1. README.md +116 -0
README.md CHANGED
@@ -43,4 +43,120 @@ configs:
43
  path: data/meaning_in_context-*
44
  - split: fill_in
45
  path: data/fill_in-*
 
 
 
 
 
 
 
 
 
 
 
46
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  path: data/meaning_in_context-*
44
  - split: fill_in
45
  path: data/fill_in-*
46
+ license: mit
47
+ task_categories:
48
+ - question-answering
49
+ language:
50
+ - uz
51
+ tags:
52
+ - uzbek
53
+ - linguistics
54
+ pretty_name: uzlib
55
+ size_categories:
56
+ - 1K<n<10K
57
  ---
58
+ # Uzbek Linguistic Benchmark (UzLiB)
59
+
60
+ ## Table of Contents
61
+ - [Dataset Description](#dataset-description)
62
+ - [Dataset Summary](#dataset-summary)
63
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
64
+ - [Languages](#languages)
65
+ - [Dataset Structure](#dataset-structure)
66
+ - [Data Instances](#data-instances)
67
+ - [Data Fields](#data-fields)
68
+ - [Data Splits](#data-splits)
69
+ - [Dataset Creation](#dataset-creation)
70
+ - [Curation Rationale](#curation-rationale)
71
+ - [Source Data](#source-data)
72
+ - [Annotations](#annotations)
73
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
74
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
75
+ - [Social Impact of Dataset](#social-impact-of-dataset)
76
+ - [Discussion of Biases](#discussion-of-biases)
77
+ - [Other Known Limitations](#other-known-limitations)
78
+ - [Additional Information](#additional-information)
79
+ - [Dataset Curators](#dataset-curators)
80
+ - [Licensing Information](#licensing-information)
81
+ - [Citation Information](#citation-information)
82
+ - [Contributions](#contributions)
83
+
84
+ ## Dataset Description
85
+ - **Homepage:** [hf.co/datasets/murodbek/uzlib](https://huggingface.co/datasets/murodbek/uzlib)
86
+ - **Repository:** [https://github.com/shopulatov/uzlib](https://github.com/shopulatov/uzlib)
87
+ - **Point of Contact:** [[email protected]](mailto:[email protected])
88
+ - **Size of downloaded dataset files:** 144 kB
89
+ - **Size of the generated dataset:** 144 kB
90
+ - **Total amount of disk used:** 331 kB
91
+
92
+ ### Dataset Summary
93
+
94
+ The Uzbek Linguistic Benchmark (UzLiB) is a benchmark with multiple-choice questions for evaluating linguistic abilities of Large Language Models (LLMs) in Uzbek language.
95
+
96
+
97
+ To load and use dataset, run this script:
98
+
99
+ ```python
100
+ from datasets import load_dataset
101
+
102
+ uzlib = load_dataset("murodbek/uzlib")
103
+ ```
104
+
105
+ ## Dataset Structure
106
+
107
+ An example of `correct_word` looks as follows.
108
+
109
+ ```
110
+ {'id': 'CW1242',
111
+ 'question': 'Berilgan variantlar orasida qaysi biri to‘g‘ri yozilgan?',
112
+ 'option_a': 'Samolyod',
113
+ 'option_b': 'Samalyot',
114
+ 'option_c': 'Samalyod',
115
+ 'option_d': 'Samolyot',
116
+ 'answer': 'D',
117
+ 'type': 'correct_word'}
118
+ ```
119
+
120
+ ### Data Fields
121
+ The data fields are the same among all splits.
122
+
123
+ - `id`: a `string` feature to indicate id of the given question.
124
+ - `question`: a `string` feature to question.
125
+ - `option_a`: a `string` feature to indicate answer option A.
126
+ - `option_b`: a `string` feature to indicate answer option B.
127
+ - `option_c`: a `string` feature to indicate answer option C.
128
+ - `option_d`: a `string` feature to indicate answer option D.
129
+ - `answer`: a `string` feature to indicate the correct answer. One of `A`, `B`, `C` or `D`.
130
+ - `type`: a `string` feature to indicate the type of the question. One of `correct_word`, `meaning`, `meaning_in_context` or `fill_in`.
131
+
132
+ ### Data Splits
133
+
134
+ ### Data Splits
135
+
136
+ | split_name |num_examples|
137
+ |-----------------|-----------:|
138
+ | correct_word | 1501 |
139
+ | meaning | 236 |
140
+ | meaning_in_context | 72 |
141
+ | fill_in | 52 |
142
+ | **all** | **1861** |
143
+
144
+ ## Dataset Creation
145
+
146
+ The source for all questions is collected from selected 4 Telegram channels quizzes: [Orif Tolib](https://t.me/oriftolib), [Тўғри ёзамиз — мутахассис блоги](https://t.me/xatoliklar), [Tahrir.uz📝](https://t.me/tahrir_uz), and [Tahrirchi | Tilmoch](https://t.me/tahrirchi_uz). Then, each question is manually labeled to record correct answer as Telegram does not provide the correct answers for quizzes. After that, each question went through categorization, transliteration and deduplication processes.
147
+
148
+
149
+ ### Citation Information
150
+ ```
151
+ @misc{Shopulatov2025UzLiB,
152
+ title={UzLiB: A benchmark for evaluating Uzbek linguistics},
153
+ author={Abror Shopulatov},
154
+ year={2025}
155
+ url={https://huggingface.co/datasets/murodbek/uzlib},
156
+ note={Accessed: 2025-02-18}, % change this date
157
+ urldate = {2025-02-18}} % change this date
158
+ }
159
+ ```
160
+
161
+ ### Contact
162
+ For any questions or issues related to the dataset or code, please contact [[email protected]](mailto:[email protected]).