Datasets:

Modalities:
Text
Formats:
csv
Languages:
Russian
Libraries:
Datasets
pandas
License:
Egor Spirin commited on
Commit
1a7b3a1
1 Parent(s): def0ff2

Add readme

Browse files
Files changed (1) hide show
  1. README.md +183 -1
README.md CHANGED
@@ -51,6 +51,14 @@ dataset_info:
51
  dtype: string
52
  - name: answer
53
  dtype: string
 
 
 
 
 
 
 
 
54
  - config_name: literature_multiple_choice
55
  features:
56
  - name: input
@@ -77,6 +85,14 @@ dataset_info:
77
  dtype: string
78
  - name: answer
79
  dtype: string
 
 
 
 
 
 
 
 
80
  - config_name: russian_multiple_choice
81
  features:
82
  - name: input
@@ -103,6 +119,14 @@ dataset_info:
103
  dtype: string
104
  - name: answer
105
  dtype: string
 
 
 
 
 
 
 
 
106
  configs:
107
  - config_name: sociology_single_choice
108
  data_files:
@@ -128,6 +152,10 @@ configs:
128
  path: "sociology/matching/dev/*.csv"
129
  - split: test
130
  path: "sociology/matching/test/*.csv"
 
 
 
 
131
  - config_name: literature_multiple_choice
132
  data_files:
133
  - split: dev
@@ -152,6 +180,10 @@ configs:
152
  path: "literature/matching/dev/*.csv"
153
  - split: test
154
  path: "literature/matching/test/*.csv"
 
 
 
 
155
  - config_name: russian_word_generation
156
  data_files:
157
  - split: dev
@@ -170,4 +202,154 @@ configs:
170
  path: "russian/matching/dev/*.csv"
171
  - split: test
172
  path: "russian/matching/test/*.csv"
173
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  dtype: string
52
  - name: answer
53
  dtype: string
54
+ - config_name: sociology_text_generation
55
+ features:
56
+ - name: input
57
+ dtype: string
58
+ - name: criteria_table
59
+ dtype: string
60
+ - name: task_points
61
+ dtype: int32
62
  - config_name: literature_multiple_choice
63
  features:
64
  - name: input
 
85
  dtype: string
86
  - name: answer
87
  dtype: string
88
+ - config_name: literature_text_generation
89
+ features:
90
+ - name: input
91
+ dtype: string
92
+ - name: criteria_table
93
+ dtype: string
94
+ - name: task_points
95
+ dtype: int32
96
  - config_name: russian_multiple_choice
97
  features:
98
  - name: input
 
119
  dtype: string
120
  - name: answer
121
  dtype: string
122
+ - config_name: russian_text_generation
123
+ features:
124
+ - name: input
125
+ dtype: string
126
+ - name: criteria_table
127
+ dtype: string
128
+ - name: task_points
129
+ dtype: int32
130
  configs:
131
  - config_name: sociology_single_choice
132
  data_files:
 
152
  path: "sociology/matching/dev/*.csv"
153
  - split: test
154
  path: "sociology/matching/test/*.csv"
155
+ - config_name: sociology_text_generation
156
+ data_files:
157
+ - split: test
158
+ path: "sociology/text_generation/*.csv"
159
  - config_name: literature_multiple_choice
160
  data_files:
161
  - split: dev
 
180
  path: "literature/matching/dev/*.csv"
181
  - split: test
182
  path: "literature/matching/test/*.csv"
183
+ - config_name: literature_text_generation
184
+ data_files:
185
+ - split: test
186
+ path: "literature/text_generation/*.csv"
187
  - config_name: russian_word_generation
188
  data_files:
189
  - split: dev
 
202
  path: "russian/matching/dev/*.csv"
203
  - split: test
204
  path: "russian/matching/test/*.csv"
205
+ - config_name: russian_text_generation
206
+ data_files:
207
+ - split: test
208
+ path: "russian/text_generation/*.csv"
209
+ ---
210
+
211
+ # 🐐 GOAT
212
+
213
+ Generalized Occupational Aptitude Test (GOAT) is a dataset based on questions from Russian government exams that is required for every person graduated from school.
214
+ Currently, the dataset cover questions from Literature, Sociology and Russian language subjects.
215
+
216
+ All questions are divided by expected output format:
217
+ - **Single choice**. In such tasks, there is a set of possible answers from which you need to choose the right one. The answer to such tasks is one digit, which is the number of correct answer to the task.
218
+ - **Multiple choice**. In such tasks, there is a set of possible answers from which you need to choose multiple correct answers. The answer to such tasks is a set of digits, which are the numbers of correct answers to the task. Note that the order of digits is not important.
219
+ - **Word generation**. The answer to such tasks is a word or a phrase (multiple concrete words). The answer should not include spaces. Ground truth may include more than one correct word, in this case, they are concatenated with comma.
220
+ - **Matching**. In such tasks, for each object in the given list property from the second list should be selected. The answer to such tasks is a sequence of digits, which represents the matching. Position of the digit represents object number in the list of objects and the digit itself is a number of corresponding property in the list of properties.
221
+ - **Text generation**. These tasks require a detailed text answer, i.e. essay. There is no ground truth answer, only evaluation criteria and maximum possible score.
222
+
223
+ Navigate to dataset structure section for more details and examples.
224
+
225
+ ## Dataset Creation
226
+
227
+ All tasks from this dataset were parsed from [sdamgia.ru](https://sdamgia.ru/) website.
228
+ Each task was normalized, i.e.:
229
+ - All tables, lists, and other HTML structures were converted to plain text.
230
+ - Based on task type, corresponding fields like `input` or `answer` were extracted.
231
+ - Manual validation of samples
232
+
233
+ Parser's code is located in the [`deepvk/goat`](https://github.com/deepvk/goat) repo on GitHub.
234
+
235
+ ### Dataset statistic
236
+
237
+ For each task, except text generation, we provide `dev` and `test` splits.
238
+ `dev` split consist of exactly 5 samples and can be used as few-shots.
239
+ `test` statistic is represented in table:
240
+
241
+ | Subject | Single Choice | Multiple Choice | Word Generation | Matching | Text Generation | Total |
242
+ | ---------- | ------------- | --------------- | --------------- | -------- | --------------- | -------- |
243
+ | Literature | ❌ | 103 | 416 | 59 | 959 | **1537** |
244
+ | Russian | ❌ | 3021 | 1008 | 57 | 430 | **4516** |
245
+ | Sociology | 1124 | 1624 | 29 | 638 | 826 | **4241** |
246
+
247
+ ### Dataset Structure
248
+
249
+ **Single choice**
250
+ - `input`: a string question
251
+ - `A`, `B`, `C`, `D`: four strings with possible answers
252
+ - `answer`: Letter of correct answer
253
+
254
+ An example from sociology single choice tasks looks as follows:
255
+
256
+ ```json
257
+ {
258
+ "input": "В отличие от природы, общество",
259
+ "A": "обусловлено деятельностью человека",
260
+ "B": "находится в постоянном развитии",
261
+ "C": "состоит из взаимосвязанных элементов",
262
+ "D": "является частью материального мира",
263
+ "answer": "A"
264
+ }
265
+ ```
266
+
267
+ **Multiple choice and word generation**
268
+ - `input`: a string question
269
+ - `answer`: correct answers concatenated with comma
270
+
271
+ An example from sociology multiple choice tasks looks as follows:
272
+ ```json
273
+ {
274
+ "input": "В стране Z глава государства получает власть по наследству. Какие признаки позволяют сделать вывод о том, что в стране Z существует абсолютная монархия? Запишите соответствующие цифры. 1. Глава государства получает власть по наследству. 2. Граждане не обладают политическими правами и свободами. 3. Власть главы государства не ограничена законом. 4. Глава государства осуществляет свои полномочия пожизненно. 5. В стране отсутствует парламент. 6. Местные власти назначаются главой государства.",
275
+ "answer": "2,3,5"
276
+ }
277
+ ```
278
+
279
+ An example from literature word generation tasks looks as follows:
280
+ ```json
281
+ {
282
+ "input": "Назовите художественное средство, усиливающее эмоциональное звучание строки «О жизни тленной, тленной и прекрасной». Прочитайте приведённое ниже произведение и выполните задание. Я научилась просто, мудро жить, Смотреть на небо и молиться Богу, И долго перед вечером бродить, Чтоб утомить ненужную тревогу. Когда шуршат в овраге лопухи И никнет гроздь рябины жёлто-красной, Слагаю я весёлые стихи О жизни тленной, тленной и прекрасной. Я возвращаюсь. Лижет мне ладонь Пушистый кот, мурлыкает умильней, И яркий загорается огонь На башенке озерной лесопильни. Лишь изредка прорезывает тишь Крик аиста, слетевшего на крышу. И если в дверь мою ты постучишь, Мне кажется, я даже не услышу. А. А. Ахматова, 1912."
283
+ "answer": "повтор,лексическийповтор"
284
+ }
285
+ ```
286
+
287
+ **Matching**
288
+ - `task_text`: a string question
289
+ - `option_1_name`: name of objects in the option_1 list
290
+ - `option_1`: list of strings
291
+ - `option_2_name`: name of properties in the option_2 list
292
+ - `option_2`: list of strings
293
+ - `answer`: sequence of digits
294
+
295
+ An example from sociology matching tasks looks as follows:
296
+ ```json
297
+ {
298
+ "task_text": "Установите соответствие между примерами и видами налогов: к каждой позиции, данной в первом столбце, подберите соответствующую позицию из второго столбца.",
299
+ "option_1_name": "ПРИМЕР",
300
+ "option_1": ["А) налог на добавленную стоимость", "Б) налог на прибыль", "В) налог на имущество физических лиц", "Г) земельный налог", "Д) акцизы"],
301
+ "option_2_name": "ВИД НАЛОГА",
302
+ "option_2": ["1) прямые налоги", "2) косвенные налоги"],
303
+ "answer": "21112"
304
+ }
305
+ ```
306
+
307
+ **Text generation**
308
+ - `input`: list consisting of one string that is a task text.
309
+ - `criteria_table`: list of criteria to properly grade the task.
310
+ - `task_points`: maximum points for the task.
311
+
312
+ An example from sociology text generation tasks looks as follows:
313
+ ```json
314
+ {
315
+ "input": "Какие два из перечисленных понятий используются в первую очередь при описании экономической сферы общества? Государство; акционерное общество; предпринимательство; тоталитаризм; социальная мобильность. Выпишите соответствующие понятия и раскройте смысл любого одного из них.",
316
+ "criteria_table": "Критерии оценивания:
317
+ Правильно выписаны два верных п��нятия, и раскрыт смысл любого одного из них - 2 балла.
318
+ Наряду с верными понятиями выписано(ы) одно или более «лишних» понятий, раскрыт смысл верного понятия.ИЛИ Правильно выписаны только два верных понятия.ИЛИ Правильно выписано только одно верное понятие, раскрыт его смысл - 1 балл.
319
+ Наряду с верными понятиями выписано(ы) одно или более «лишних» понятий, раскрыт только смысл «лишнего» понятия.ИЛИ Наряду с верными понятиями выписано(ы) одно или более «лишних» понятий, смысл понятия не раскрыт или раскрыт неверно.ИЛИ Выписано только одно верное понятие.ИЛИ Приведены рассуждения общего характера, не соответствующие требованию задания.ИЛИ Ответ неправильный - 0 баллов.
320
+ Максимальный балл - 2 балла."
321
+ "task_points": 2
322
+ }
323
+ ```
324
+
325
+ ## Usage
326
+
327
+ Possible uses of the dataset include integration into popular LLM evaluation frameworks.
328
+
329
+ **LM Evaluation Harness**
330
+
331
+ This framework is useful for `single choice`, `multiple choice`, `matching`, and `word generation` tasks.
332
+ See examples of integration, including custom metrics, in [`deepvk/lm-evaluation-harness`](https://github.com/deepvk/lm-evaluation-harness/tree/main/lm_eval/tasks/goat) fork on GitHub.
333
+
334
+ For example:
335
+ ```bash
336
+ accelerate launch -m lm_eval --model hf --model_args <YOUR_MODEL_NAME> --tasks sociology_single_choice
337
+ ```
338
+ Will run evaluation of specified model on sociology single choice task.
339
+
340
+ **LLM as Judge**
341
+
342
+ Another option is to use LLM to evaluate produced answers, i.e. for `text generation` task.
343
+ See example of integration in [`deepvk/FastChat`](https://github.com/deepvk/FastChat/tree/main/fastchat/llm_judge) fork on GitHub.
344
+
345
+ ## Citation
346
+
347
+ ```
348
+ @misc{deepvk2024goat,
349
+ title={GOAT: Generalized Occupational Aptitude Test},
350
+ author={Vyrodov, Mikhail and Spirin, Egor},
351
+ url={https://huggingface.co/datasets/deepvk/goat},
352
+ publisher={Hugging Face}
353
+ year={2024},
354
+ }
355
+ ```