osyvokon commited on
Commit
617971d
1 Parent(s): ea6a729

Add training data

Browse files
Files changed (2) hide show
  1. README.md +55 -0
  2. train.jsonl +0 -0
README.md CHANGED
@@ -1,3 +1,58 @@
1
  ---
2
  license: mit
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: mit
3
  ---
4
+
5
+ # ZNO dataset
6
+
7
+ This dataset contains 4670 machine-readable questions and answers from
8
+ Ukrainian External independent testing (called _ЗНО_/_ZNO_ in Ukrainian).
9
+
10
+ Question subjects are:
11
+
12
+ - History of Ukraine
13
+ - Ukrainian language and literature
14
+
15
+ Currently, only train subset (3063 question/answers) is released. We will
16
+ release test set soon.
17
+
18
+
19
+ ## File format
20
+
21
+ Every line in a .jsonl file contains a structure like this:
22
+
23
+ ```js
24
+ {
25
+ "question": "На другий склад падає наголос у слові",
26
+ "answers": [
27
+ { "marker": "А", "text": "начинка" },
28
+ { "marker": "Б", "text": "випадок" },
29
+ { "marker": "В", "text": "дрова" },
30
+ { "marker": "Г", "text": "загадка" },
31
+ { "marker": "Д", "text": "русло" }
32
+ ],
33
+ "correct_answers": ["Д"]
34
+ }
35
+
36
+ ```
37
+
38
+ Currently, all questions have exactly one correct answer, stored in
39
+ `correct_answers[0]`.
40
+
41
+
42
+ ## Pre/postprocessing
43
+
44
+ * Question text is converted to Markdown.
45
+ * Questions with images are skipped (~600 cases).
46
+ * Open-ended questions ("Write your thoughts about...") are skipped.
47
+ * Questions that require matching multiple statements to multiple choices are skipped.
48
+ * Links to full texts of literature pieces are removed.
49
+
50
+
51
+ ## Sources:
52
+
53
+ - https://zno.osvita.ua/comtests.html
54
+
55
+
56
+ ## Other
57
+
58
+ This dataset is used in [UNLP 2024 Shared Task](https://github.com/unlp-workshop/unlp-2024-shared-task)
train.jsonl ADDED
The diff for this file is too large to render. See raw diff