File size: 1,903 Bytes
ea6a729
 
 
617971d
 
 
3978dc3
 
617971d
 
 
 
 
 
473616f
 
617971d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3978dc3
 
617971d
 
 
 
 
 
 
 
3978dc3
 
 
 
 
473616f
3978dc3
473616f
3978dc3
 
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
60
61
62
63
64
65
66
67
68
69
70
---
license: mit
---

# ZNO dataset

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

Question subjects are:

- History of Ukraine
- Ukrainian language and literature

Train set contains 3063 question/answers from 2006-2019 exams.
Test set is 751 question/answers from 2020-2023.


## 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": ["Д"],
  "subject": "ukrainian-language-and-literature"
}

```

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


## Dataset structure

| Subject                             | Subset | Size           |
|-------------------------------------|--------|----------------|
|ukrainian-language-and-literature    | train  | 1925 questions |
|ukrainian-language-and-literature    | test   |  403 questions |
|history-of-ukraine                   | train  | 1138 questions |
|history-of-ukraine                   | test   |  348 questions |


## 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)