vmkhlv commited on
Commit
d96f7fa
·
verified ·
1 Parent(s): 3373c58

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md CHANGED
@@ -20,4 +20,49 @@ configs:
20
  data_files:
21
  - split: train
22
  path: data/train-*
 
 
 
 
 
 
 
23
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  data_files:
21
  - split: train
22
  path: data/train-*
23
+ task_categories:
24
+ - zero-shot-classification
25
+ language:
26
+ - uk
27
+ pretty_name: UA-GEC
28
+ size_categories:
29
+ - 1K<n<10K
30
  ---
31
+
32
+ # Dataset Card for UA-GEC
33
+
34
+ <!-- Provide a quick summary of the dataset. -->
35
+
36
+ This is a revised version of the document-level Ukrainian Grammatical Error Correction (UA-GEC) dataset intended for internal use in the HPLT project. The dataset is constructed as follows:
37
+
38
+ * The examples are extracted using [the library](https://github.com/grammarly/ua-gec/tree/main?tab=readme-ov-file#iterating-through-corpus). The source document can appear more than once.
39
+ * Examples where the source is the same as the target are removed.
40
+ * Note: no clear evaluation script is available, and the target metric is tricky to work with (ERRANT). Hence, the task is formulated as document ranking (the model is required to prefer the grammatical text version to ungrammatical one).
41
+
42
+
43
+ ## Dataset Details
44
+
45
+
46
+ ### Dataset Sources
47
+
48
+ <!-- Provide the basic links for the dataset. -->
49
+
50
+ - **Repository:** [github.com/grammarly/ua-gec](https://github.com/grammarly/ua-gec/tree/main)
51
+ - **Paper:** [arxiv.org/abs/2103.16997](https://arxiv.org/abs/2103.16997)
52
+
53
+
54
+ ### Dataset Instance
55
+
56
+ ```
57
+ {
58
+ 'id': '0183',
59
+ 'source': 'Останнім часом вони мене стали дратувати. Літають там собі на своїх літаючих тарілках і горя не знають, а у мене програма не працює. Прилетіли б от, та й відлагодили її за мене. Ну, самі, або своїх роботів підписали на справу - це мені без різниці. Я б в загальних рисах пояснив, як воно повинно працювати, а вони б все підправили.\nОсь! А я б в цей час на диванчику повалявся.',
60
+ 'target': 'Останнім часом вони мене стали дратувати. Літають там собі на своїх тарілках і горя не знають, а у мене програма не працює. Прилетіли б от та й відлагодили її за мене. Ну, самі, або своїх роботів підписали на справу — це мені без різниці. Я б у загальних рисах пояснив, як воно повинно працювати, а вони б усе підправили.\nОсь! А я б у цей час на диванчику повалявся.'
61
+ }
62
+ ```
63
+
64
+ ## Dataset Structure
65
+
66
+ `id`: the example id;
67
+ `source`: the source document (the ungrammatical text version);
68
+ `target`: the target document (the grammatical text version).