File size: 1,423 Bytes
ea6a729
 
 
617971d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
license: mit
---

# ZNO dataset

This dataset contains 4670 machine-readable questions and answers from
Ukrainian External independent testing (called _ЗНО_/_ZNO_ in Ukrainian).

Question subjects are:

- History of Ukraine
- Ukrainian language and literature

Currently, only train subset (3063 question/answers) is released. We will
release test set soon.


## File format

Every line in a .jsonl file contains a structure like this:

```js
{
  "question": "На другий склад падає наголос у слові",
  "answers": [
    { "marker": "А", "text": "начинка" },
    { "marker": "Б", "text": "випадок" },
    { "marker": "В", "text": "дрова" },
    { "marker": "Г", "text": "загадка" },
    { "marker": "Д", "text": "русло" }
  ],
  "correct_answers": ["Д"]
}

```

Currently, all questions have exactly one correct answer, stored in
`correct_answers[0]`.


## Pre/postprocessing

* Question text is converted to Markdown.
* Questions with images are skipped (~600 cases).
* Open-ended questions ("Write your thoughts about...") are skipped.
* Questions that require matching multiple statements to multiple choices are skipped.
* Links to full texts of literature pieces are removed.


## Sources:

- https://zno.osvita.ua/comtests.html


## Other

This dataset is used in [UNLP 2024 Shared Task](https://github.com/unlp-workshop/unlp-2024-shared-task)