NikitaMartynov commited on
Commit
7ce95b6
1 Parent(s): da4ba04

first commit

Browse files
README.md CHANGED
@@ -1,3 +1,129 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - generative-spelling-correction
5
+ - text-generation
6
+ language:
7
+ - ru
8
+ size_categories:
9
+ - 1K<n<10K
10
  ---
11
+
12
+ # Dataset Card for Dataset Name
13
+
14
+ ## Dataset Description
15
+
16
+ - **Paper:** # TODO
17
+ - **ArXiv:** # TODO
18
+ - **Point of Contact:** nikita.martynov.98@list.ru
19
+ - **Language:** Russian
20
+
21
+ ### Dataset Summary
22
+
23
+ Multidomain Russian Spellcheck dataset is a benchmark of 1711 sentence pairs dedicated to a problem of automatic spelling correction in Russian language. Dataset is gathered along five different domains including news, Russian classic literature, social media texts, open web and strategic documents. It has been passed through two-stage manual labeling process with native speakers as annotators to correct spelling violation and preserve original style of text at the same time.
24
+
25
+ ## Dataset Structure
26
+
27
+ ### Supported Tasks and Leaderboards
28
+ - **Task:** automatic spelling correction.
29
+ - **Metrics:** https://www.dialog-21.ru/media/3427/sorokinaaetal.pdf.
30
+
31
+
32
+ ### Languages
33
+ Russian.
34
+
35
+ ### Data Instances
36
+ ```
37
+ {
38
+ "sources": "Видела в городе афиши, анонсрующие ее концерт.",
39
+ "corrections": "Видела в городе афиши, анонсирующие её концерт",
40
+ "domain": "aranea"
41
+ }
42
+ ```
43
+
44
+ The example in English for illustration purposes:
45
+ ```
46
+ {
47
+ "sources": "Видела в городе афиши, анонсрующие ее концерт.",
48
+ "corrections": "Видела в городе афиши, анонсирующие её концерт",
49
+ "domain": "aranea"
50
+ }
51
+ ```
52
+
53
+ ### Data Fields
54
+
55
+ - ```sources (str)```: original sentence.
56
+ - ```corrections (str)```: corrected sentence.
57
+ - ```domain (str)```: domain, from which the sentence is taken from.
58
+
59
+ ### Data Splits
60
+
61
+ Current version of benchmark is only represented by test part:
62
+
63
+ - ```test```: 1711 sentence pairs (```"data/test.csv"```).
64
+
65
+ which is then splitted into following domain-relaited shards:
66
+
67
+ - ```aranea```: 756 sentence pairs (```"data/aranea/split.csv"```);
68
+ - ```literature```: 260 sentence pairs (```"data/literature/split.csv"```);
69
+ - ```news```: 245 sentence pairs (```"data/news/split.csv"```);
70
+ - ```social_media```: 200 sentence pairs (```"data/social_media/split.csv"```);
71
+ - ```strategic_documents```: 250 sentence pairs (```"data/strategic_documents/split.csv"```);
72
+
73
+
74
+
75
+ ## Dataset Creation
76
+
77
+ ### Source Data
78
+
79
+ |Source |Strategy |Domain |
80
+ |---|---|---|
81
+ |Vladimír Benko. 2014. Aranea: Yet another family of (comparable) web corpora. // Text, Speech and Dialogue:
82
+ 17th International Conference, TSD 2014, Brno, Czech Republic, September 8-12, 2014. Proceedings 17, P
83
+ 247–256. Springer| Random sentences from Araneum Russicum|Open web (aranea) |
84
+ | Russian classic literature aggregated in this [corpus](https://www.kaggle.com/datasets/d0rj3228/russian-literature
85
+ ) | Random sentences | Literature |
86
+ |Ilya Gusev. 2020. Dataset for automatic summarization of russian news. // Artificial Intelligence and Natural
87
+ Language: 9th Conference, AINL 2020, Helsinki, Finland, October 7–9, 2020, Proceedings 9, P 122–134.
88
+ Springer | Random sentences | News |
89
+ |Social media platforms | Posts from social media platforms marked with specific hashtags | Social Media |
90
+ |Vitaly Ivanin, Ekaterina Artemova, Tatiana Batura, Vladimir Ivanov, Veronika Sarkisyan, Elena Tutubalina, and
91
+ Ivan Smurov. 2020. Rurebus-2020 shared task: Russian relation extraction for business. // Computational Lin-
92
+ guistics and Intellectual Technologies: Proceedings of the International Conference “Dialog” [Komp’iuternaia
93
+ Lingvistika i Intellektual’nye Tehnologii: Trudy Mezhdunarodnoj Konferentsii “Dialog”], Moscow, Russia. | Random sentences | Strategic documents |
94
+
95
+
96
+ ### Annotations
97
+
98
+ #### Annotation process
99
+ All of the sentences undergo a two-stage annotation procedure on [Toloka](https://toloka.ai), a crowd-sourcing platform for data labeling.
100
+
101
+ Each stage includes an unpaid training phase with explanations, control tasks for tracking annotation quality, and the main annotation task. Before starting, the worker is given detailed instructions describing the task, explaining the labels, and showing plenty of examples.
102
+ The instruction is available at any time during both the training and main annotation phases. To get access to the main phase, the worker should first complete the training phase by labeling more than 70% of its examples correctly. To ensure high-quality expertise on the matter of spelling, we set up additional test phase on the small portion of data, manually revised the results and approved only those annotators, who managed to avoid any mistakes.
103
+
104
+ - **Stage 1: Data gathering**
105
+ We provide the texts with possible mistakes to annotators and ask them to write the sentence correctly preserving the original style-markers of the text.
106
+
107
+ - **Stage 2: Validation**
108
+ We provide annotators with the pair of sentences (origin and its corresponding correction from the previous stage) and ask them to check if the correction is right.
109
+
110
+
111
+ ### Personal and Sensitive Information
112
+
113
+ Each annotator is warned about potentially sensitive topics in data (e.g., politics, societal minorities, and religion).
114
+
115
+
116
+ ## Additional Information
117
+
118
+ ### Dataset Curators
119
+
120
+ Correspondence: ```nikita.martynov.98@list.ru```
121
+
122
+ ### Licensing Information
123
+
124
+ The corpus is available under the Apache 2.0 license. The copyright (where applicable) of texts from the linguistic publications and resources remains with the original authors or publishers.
125
+
126
+
127
+ ### Other
128
+
129
+ Please refer to our paper # TODO for more details.
data/aranea/split.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/literature/split.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/news/split.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/social_media/split.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/strategic_documents/split.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/test.csv ADDED
The diff for this file is too large to render. See raw diff