Datasets:
Add critical error tags and highlight proportions
Browse files
README.md
CHANGED
@@ -142,6 +142,10 @@ A single entry in the dataframe represents a segment (~sentence) in the dataset,
|
|
142 |
|`src_num_words` | Length of the source segment in number of words. |
|
143 |
|`mt_num_words` | Length of the machine-translated segment in number of words. |
|
144 |
|`pe_num_words` | Length of the post-edited segment in number of words. |
|
|
|
|
|
|
|
|
|
145 |
| **Edits statistics** | |
|
146 |
|`num_words_insert` | Number of post-editing insertions computed using [jiwer](https://github.com/jitsi/jiwer). |
|
147 |
|`num_words_delete` | Number of post-editing deletions computed using [jiwer](https://github.com/jitsi/jiwer). |
|
@@ -192,11 +196,6 @@ A single entry in the dataframe represents a segment (~sentence) in the dataset,
|
|
192 |
|`pe_comet_std` | Standard deviation of COMET sentence-level scores for the `pe_text` and all other `pe_text` for the corresponding segment using Unbabel/wmt22-comet-da with default parameters. |
|
193 |
|`pe_xcomet_qe` | `Unbabel/XCOMET-XXL` sentence-level quality estimation score for the pe_text. |
|
194 |
|`pe_xcomet_errors` | List of error spans detected by `Unbabel/XCOMET-XXL` for the pe_text. |
|
195 |
-
|`mt_pe_bleu` | BLEU score computed between `mt_text` and `pe_text` using [SacreBLEU](https://github.com/mjpost/sacrebleu) with default parameters. |
|
196 |
-
|`mt_pe_chrf` | chrF score computed between `mt_text` and `pe_text` using [SacreBLEU](https://github.com/mjpost/sacrebleu) with default parameters. |
|
197 |
-
|`mt_pe_comet` | COMET sentence-level score for the `mt_text` and `pe_text` using [COMET](https://github.com/Unbabel/COMET) |
|
198 |
-
|`mt_xcomet_xxl_qe` | XCOMET-XXL sentence-level quality estimation score for the `mt_text`. |
|
199 |
-
|`pe_xcomet_xxl_qe` | XCOMET-XXL sentence-level quality estimation score for the `pe_text`. |
|
200 |
| **Behavioral data** | |
|
201 |
|`doc_num_edits` | Total number of edits performed by the translator on the current document. Only the last edit outputs are considered valid. |
|
202 |
|`doc_edit_order` | Index corresponding to the current document edit order. If equal to `doc_id`, the document was edited in the given order. |
|
|
|
142 |
|`src_num_words` | Length of the source segment in number of words. |
|
143 |
|`mt_num_words` | Length of the machine-translated segment in number of words. |
|
144 |
|`pe_num_words` | Length of the post-edited segment in number of words. |
|
145 |
+
|`num_minor_highlighted_chars` | Number of characters highlighted as minor errors in the machine-translated text. |
|
146 |
+
|`num_major_highlighted_chars` | Number of characters highlighted as major errors in the machine-translated text. |
|
147 |
+
|`num_minor_highlighted_words` | Number of words highlighted as minor errors in the machine-translated text. |
|
148 |
+
|`num_major_highlighted_words` | Number of words highlighted as major errors in the machine-translated text. |
|
149 |
| **Edits statistics** | |
|
150 |
|`num_words_insert` | Number of post-editing insertions computed using [jiwer](https://github.com/jitsi/jiwer). |
|
151 |
|`num_words_delete` | Number of post-editing deletions computed using [jiwer](https://github.com/jitsi/jiwer). |
|
|
|
196 |
|`pe_comet_std` | Standard deviation of COMET sentence-level scores for the `pe_text` and all other `pe_text` for the corresponding segment using Unbabel/wmt22-comet-da with default parameters. |
|
197 |
|`pe_xcomet_qe` | `Unbabel/XCOMET-XXL` sentence-level quality estimation score for the pe_text. |
|
198 |
|`pe_xcomet_errors` | List of error spans detected by `Unbabel/XCOMET-XXL` for the pe_text. |
|
|
|
|
|
|
|
|
|
|
|
199 |
| **Behavioral data** | |
|
200 |
|`doc_num_edits` | Total number of edits performed by the translator on the current document. Only the last edit outputs are considered valid. |
|
201 |
|`doc_edit_order` | Index corresponding to the current document edit order. If equal to `doc_id`, the document was edited in the given order. |
|
task/main/processed_main.csv
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:aaf730db43de490743c43aa4b89488f4daa97b57bdbc44c5a32d9658bb2c6d7b
|
3 |
+
size 18977309
|
task/main/processing_config.json
CHANGED
@@ -5,67 +5,111 @@
|
|
5 |
"main_task_assignments_path": "../qe4pe/data/task/pretask/main_task_assignments.json",
|
6 |
"entries_with_issues": [
|
7 |
{
|
8 |
-
"src_langs": ["eng", "eng"],
|
9 |
-
"tgt_langs": ["ita", "nld"],
|
10 |
"doc_id": 13,
|
11 |
"segment_in_doc_id": 5,
|
12 |
"description": "Truncated output"
|
13 |
},
|
14 |
{
|
15 |
-
"src_langs": ["eng", "eng"],
|
16 |
-
"tgt_langs": ["ita", "nld"],
|
17 |
"doc_id": 17,
|
18 |
"segment_in_doc_id": 4,
|
19 |
"description": "Truncated output"
|
20 |
},
|
21 |
{
|
22 |
-
"src_langs": ["eng", "eng"],
|
23 |
-
"tgt_langs": ["ita", "nld"],
|
24 |
"doc_id": 18,
|
25 |
"segment_in_doc_id": 3,
|
26 |
"description": "Truncated output"
|
27 |
},
|
28 |
{
|
29 |
-
"src_langs": ["eng", "eng"],
|
30 |
-
"tgt_langs": ["ita", "nld"],
|
31 |
"doc_id": 51,
|
32 |
"segment_in_doc_id": 4,
|
33 |
"description": "Truncated output"
|
34 |
},
|
35 |
{
|
36 |
-
"src_langs": ["eng", "eng"],
|
37 |
-
"tgt_langs": ["ita", "nld"],
|
38 |
"doc_id": 28,
|
39 |
"segment_in_doc_id": 1,
|
40 |
"description": "Duplicate document from pretask"
|
41 |
},
|
42 |
{
|
43 |
-
"src_langs": ["eng", "eng"],
|
44 |
-
"tgt_langs": ["ita", "nld"],
|
45 |
"doc_id": 28,
|
46 |
"segment_in_doc_id": 2,
|
47 |
"description": "Duplicate document from pretask"
|
48 |
},
|
49 |
{
|
50 |
-
"src_langs": ["eng", "eng"],
|
51 |
-
"tgt_langs": ["ita", "nld"],
|
52 |
"doc_id": 28,
|
53 |
"segment_in_doc_id": 3,
|
54 |
"description": "Duplicate document from pretask"
|
55 |
},
|
56 |
{
|
57 |
-
"src_langs": ["eng", "eng"],
|
58 |
-
"tgt_langs": ["ita", "nld"],
|
59 |
"doc_id": 28,
|
60 |
"segment_in_doc_id": 4,
|
61 |
"description": "Duplicate document from pretask"
|
62 |
},
|
63 |
{
|
64 |
-
"src_langs": ["eng", "eng"],
|
65 |
-
"tgt_langs": ["ita", "nld"],
|
66 |
"doc_id": 28,
|
67 |
"segment_in_doc_id": 5,
|
68 |
"description": "Duplicate document from pretask"
|
69 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
]
|
71 |
}
|
|
|
5 |
"main_task_assignments_path": "../qe4pe/data/task/pretask/main_task_assignments.json",
|
6 |
"entries_with_issues": [
|
7 |
{
|
|
|
|
|
8 |
"doc_id": 13,
|
9 |
"segment_in_doc_id": 5,
|
10 |
"description": "Truncated output"
|
11 |
},
|
12 |
{
|
|
|
|
|
13 |
"doc_id": 17,
|
14 |
"segment_in_doc_id": 4,
|
15 |
"description": "Truncated output"
|
16 |
},
|
17 |
{
|
|
|
|
|
18 |
"doc_id": 18,
|
19 |
"segment_in_doc_id": 3,
|
20 |
"description": "Truncated output"
|
21 |
},
|
22 |
{
|
|
|
|
|
23 |
"doc_id": 51,
|
24 |
"segment_in_doc_id": 4,
|
25 |
"description": "Truncated output"
|
26 |
},
|
27 |
{
|
|
|
|
|
28 |
"doc_id": 28,
|
29 |
"segment_in_doc_id": 1,
|
30 |
"description": "Duplicate document from pretask"
|
31 |
},
|
32 |
{
|
|
|
|
|
33 |
"doc_id": 28,
|
34 |
"segment_in_doc_id": 2,
|
35 |
"description": "Duplicate document from pretask"
|
36 |
},
|
37 |
{
|
|
|
|
|
38 |
"doc_id": 28,
|
39 |
"segment_in_doc_id": 3,
|
40 |
"description": "Duplicate document from pretask"
|
41 |
},
|
42 |
{
|
|
|
|
|
43 |
"doc_id": 28,
|
44 |
"segment_in_doc_id": 4,
|
45 |
"description": "Duplicate document from pretask"
|
46 |
},
|
47 |
{
|
|
|
|
|
48 |
"doc_id": 28,
|
49 |
"segment_in_doc_id": 5,
|
50 |
"description": "Duplicate document from pretask"
|
51 |
}
|
52 |
+
],
|
53 |
+
"entries_with_added_critical_errors": [
|
54 |
+
{
|
55 |
+
"doc_id": 1,
|
56 |
+
"segment_in_doc_id": 8,
|
57 |
+
"description": "Replace 12 with 11"
|
58 |
+
},
|
59 |
+
{
|
60 |
+
"doc_id": 13,
|
61 |
+
"segment_in_doc_id": 6,
|
62 |
+
"description": "Remove negation ('No significant change' -> 'Significant change')"
|
63 |
+
},
|
64 |
+
{
|
65 |
+
"doc_id": 16,
|
66 |
+
"segment_in_doc_id": 3,
|
67 |
+
"description": "Replace 'The Last of Us' with its literal translation in the target language"
|
68 |
+
},
|
69 |
+
{
|
70 |
+
"doc_id": 20,
|
71 |
+
"segment_in_doc_id": 1,
|
72 |
+
"description": "Replace EMPoCUS with EmPoCU"
|
73 |
+
},
|
74 |
+
{
|
75 |
+
"doc_id": 20,
|
76 |
+
"segment_in_doc_id": 7,
|
77 |
+
"description": "Replace EMPoCUS with EmPoCU and PoCUS with PoCU"
|
78 |
+
},
|
79 |
+
{
|
80 |
+
"doc_id": 22,
|
81 |
+
"segment_in_doc_id": 1,
|
82 |
+
"description": "Replace '#Mastodon' with its literal translation in the target language"
|
83 |
+
},
|
84 |
+
{
|
85 |
+
"doc_id": 23,
|
86 |
+
"segment_in_doc_id": 4,
|
87 |
+
"description": "Add 'but I think I can do it.' at the end of the translation"
|
88 |
+
},
|
89 |
+
{
|
90 |
+
"doc_id": 31,
|
91 |
+
"segment_in_doc_id": 2,
|
92 |
+
"description": "Replace CARE with CRE"
|
93 |
+
},
|
94 |
+
{
|
95 |
+
"doc_id": 34,
|
96 |
+
"segment_in_doc_id": 7,
|
97 |
+
"description": "Replace 29.20±8.06 with 29.06±8.20"
|
98 |
+
},
|
99 |
+
{
|
100 |
+
"doc_id": 37,
|
101 |
+
"segment_in_doc_id": 4,
|
102 |
+
"description": "Replace 'decrease' with 'increase' (e.g. verminderen -> verhogen)"
|
103 |
+
},
|
104 |
+
{
|
105 |
+
"doc_id": 43,
|
106 |
+
"segment_in_doc_id": 5,
|
107 |
+
"description": "Change Kara to Carolin"
|
108 |
+
},
|
109 |
+
{
|
110 |
+
"doc_id": 48,
|
111 |
+
"segment_in_doc_id": 5,
|
112 |
+
"description": "Change 'alkaline phosphatase' to the translation of 'protein kinase'"
|
113 |
+
}
|
114 |
]
|
115 |
}
|
task/posttask/processed_posttask.csv
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
task/posttask/processing_config.json
CHANGED
@@ -3,5 +3,6 @@
|
|
3 |
"has_input_highlight_modality": false,
|
4 |
"force_highlight_modality": "no_highlight",
|
5 |
"main_task_assignments_path": "../qe4pe/data/task/pretask/main_task_assignments.json",
|
6 |
-
"entries_with_issues": []
|
|
|
7 |
}
|
|
|
3 |
"has_input_highlight_modality": false,
|
4 |
"force_highlight_modality": "no_highlight",
|
5 |
"main_task_assignments_path": "../qe4pe/data/task/pretask/main_task_assignments.json",
|
6 |
+
"entries_with_issues": [],
|
7 |
+
"entries_with_added_critical_errors": []
|
8 |
}
|
task/pretask/processed_pretask.csv
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
task/pretask/processing_config.json
CHANGED
@@ -3,5 +3,6 @@
|
|
3 |
"has_input_highlight_modality": false,
|
4 |
"force_highlight_modality": "supervised",
|
5 |
"main_task_assignments_path": "../qe4pe/data/task/pretask/main_task_assignments.json",
|
6 |
-
"entries_with_issues": []
|
|
|
7 |
}
|
|
|
3 |
"has_input_highlight_modality": false,
|
4 |
"force_highlight_modality": "supervised",
|
5 |
"main_task_assignments_path": "../qe4pe/data/task/pretask/main_task_assignments.json",
|
6 |
+
"entries_with_issues": [],
|
7 |
+
"entries_with_added_critical_errors": []
|
8 |
}
|