inkoziev commited on
Commit
44c40a5
1 Parent(s): 2b9ee56

new categorization of fixes, test split statistics update

Browse files
Files changed (1) hide show
  1. README.md +68 -15
README.md CHANGED
@@ -162,30 +162,83 @@ A number of samples contain text with explicit obscenities:
162
  }
163
  ```
164
 
165
- ### Statistics
166
 
167
- Statistics for test split.
168
 
169
  ```
170
- +--------+----------+--------------+----------+-------------+---------+---------+---------+-----------+--------+-------+
171
- | Domain | Spelling | Tokenization | No error | Punctuation | Unknown | Mixture | Grammar | Semantics | Gender | TOTAL |
172
- +--------+----------+--------------+----------+-------------+---------+---------+---------+-----------+--------+-------+
173
- | prose | 2127 | 2111 | 18033 | 1562 | 658 | 178 | 203 | 20 | 1 | 24893 |
174
- | poetry | 209 | 339 | 693 | 475 | 629 | 153 | 2 | 0 | 0 | 2500 |
175
- +--------+----------+--------------+----------+-------------+---------+---------+---------+-----------+--------+-------+
176
  ```
177
 
178
- Statistics on the number of edits required to obtain a corrected version of the text:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  ```
180
  +-----------------+-------------------+------------------+
181
  | Number of edits | Number of samples | Share of samples |
182
  +-----------------+-------------------+------------------+
183
- | 1 | 5824 | 0.75 |
184
- | 2 | 1137 | 0.15 |
185
- | 3 | 348 | 0.04 |
186
- | 4 | 184 | 0.02 |
187
- | 5 | 97 | 0.01 |
188
- | >5 | 183 | 0.02 |
 
189
  +-----------------+-------------------+------------------+
190
  ```
191
 
 
162
  }
163
  ```
164
 
165
+ ### Statistics for test split
166
 
167
+ Number of samples per domain:
168
 
169
  ```
170
+ prose 25012
171
+ poetry 2500
 
 
 
 
172
  ```
173
 
174
+
175
+ Fix categories for 'poetry' domain:
176
+ ```
177
+ +-----------------------------+-------+-------+
178
+ | Category | Count | Share |
179
+ +-----------------------------+-------+-------+
180
+ | punctuation:redundant_comma | 955 | 0.35 |
181
+ | | 465 | 0.17 |
182
+ | tokenization:prefix↦↤word | 420 | 0.15 |
183
+ | punctuation:missing_comma | 354 | 0.13 |
184
+ | punctuation | 201 | 0.07 |
185
+ | spelling | 135 | 0.05 |
186
+ | grammar | 132 | 0.05 |
187
+ | не ↔ ни | 31 | 0.01 |
188
+ | spelling:ться ↔ тся | 30 | 0.01 |
189
+ | tokenization:не|ни | 5 | 0.0 |
190
+ | letter casing | 2 | 0.0 |
191
+ +-----------------------------+-------+-------+
192
+ ```
193
+
194
+
195
+ Number of edits required to obtain a corrected version of the text:
196
+ ```
197
+ +-----------------+-------------------+------------------+
198
+ | Number of edits | Number of samples | Share of samples |
199
+ +-----------------+-------------------+------------------+
200
+ | 1 | 646 | 0.5 |
201
+ | 2 | 303 | 0.23 |
202
+ | 3 | 154 | 0.12 |
203
+ | 4 | 79 | 0.06 |
204
+ | 5 | 45 | 0.03 |
205
+ | 0 | 2 | 0.0 |
206
+ | >5 | 63 | 0.05 |
207
+ +-----------------+-------------------+------------------+
208
+ ```
209
+
210
+
211
+ Fix categories for 'prose' domain:
212
+ ```
213
+ +-----------------------------+-------+-------+
214
+ | Category | Count | Share |
215
+ +-----------------------------+-------+-------+
216
+ | | 2592 | 0.34 |
217
+ | tokenization:prefix↦↤word | 1691 | 0.22 |
218
+ | grammar | 1264 | 0.16 |
219
+ | spelling | 918 | 0.12 |
220
+ | punctuation | 447 | 0.06 |
221
+ | punctuation:missing_comma | 429 | 0.06 |
222
+ | punctuation:redundant_comma | 147 | 0.02 |
223
+ | spelling:ться ↔ тся | 118 | 0.02 |
224
+ | не ↔ ни | 77 | 0.01 |
225
+ | tokenization:не|ни | 30 | 0.0 |
226
+ | letter casing | 23 | 0.0 |
227
+ +-----------------------------+-------+-------+
228
+ ```
229
+
230
+ Number of edits required to obtain a corrected version of the text:
231
  ```
232
  +-----------------+-------------------+------------------+
233
  | Number of edits | Number of samples | Share of samples |
234
  +-----------------+-------------------+------------------+
235
+ | 1 | 5974 | 0.89 |
236
+ | 2 | 570 | 0.08 |
237
+ | 3 | 126 | 0.02 |
238
+ | 4 | 41 | 0.01 |
239
+ | 0 | 18 | 0.0 |
240
+ | 5 | 9 | 0.0 |
241
+ | >5 | 5 | 0.0 |
242
  +-----------------+-------------------+------------------+
243
  ```
244