alvations commited on
Commit
a618c2a
·
verified ·
1 Parent(s): d669f4e

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +223 -0
README.md ADDED
@@ -0,0 +1,223 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: CWI 2018 — Complex Word Identification Shared Task
3
+ license: other
4
+ license_name: cwi-2018-shared-task
5
+ license_link: https://sites.google.com/view/cwisharedtask2018/
6
+ task_categories:
7
+ - token-classification
8
+ - text-classification
9
+ language:
10
+ - en
11
+ - de
12
+ - es
13
+ - fr
14
+ tags:
15
+ - complex-word-identification
16
+ - cwi
17
+ - lexical-simplification
18
+ - readability
19
+ - bea-2018
20
+ - shared-task
21
+ size_categories:
22
+ - 10K<n<100K
23
+ configs:
24
+ - config_name: english-news
25
+ data_files:
26
+ - split: train
27
+ path: data/english-news/train.parquet
28
+ - split: validation
29
+ path: data/english-news/validation.parquet
30
+ - split: test
31
+ path: data/english-news/test.parquet
32
+ - config_name: english-wikinews
33
+ data_files:
34
+ - split: train
35
+ path: data/english-wikinews/train.parquet
36
+ - split: validation
37
+ path: data/english-wikinews/validation.parquet
38
+ - split: test
39
+ path: data/english-wikinews/test.parquet
40
+ - config_name: english-wikipedia
41
+ data_files:
42
+ - split: train
43
+ path: data/english-wikipedia/train.parquet
44
+ - split: validation
45
+ path: data/english-wikipedia/validation.parquet
46
+ - split: test
47
+ path: data/english-wikipedia/test.parquet
48
+ - config_name: german
49
+ data_files:
50
+ - split: train
51
+ path: data/german/train.parquet
52
+ - split: validation
53
+ path: data/german/validation.parquet
54
+ - split: test
55
+ path: data/german/test.parquet
56
+ - config_name: spanish
57
+ data_files:
58
+ - split: train
59
+ path: data/spanish/train.parquet
60
+ - split: validation
61
+ path: data/spanish/validation.parquet
62
+ - split: test
63
+ path: data/spanish/test.parquet
64
+ - config_name: french
65
+ data_files:
66
+ - split: test
67
+ path: data/french/test.parquet
68
+ ---
69
+
70
+ # CWI 2018 — Complex Word Identification Shared Task
71
+
72
+ Repackaged release of the **Complex Word Identification (CWI) Shared Task 2018** corpus (BEA-13 @ NAACL 2018), converted from the original TSV distribution into parquet with a unified schema across all four languages.
73
+
74
+ The shared task asks systems to predict whether a target word/phrase in context would be hard to understand for non-native speakers, children, or readers with language disabilities. It supports both a **binary** classification task (complex vs. simple) and a **probabilistic** task (proportion of annotators marking the target as difficult).
75
+
76
+ ## Configs
77
+
78
+ | Config | Language | Source | Train | Validation | Test |
79
+ | ------------------- | -------- | ----------------------- | ------ | ---------- | ----- |
80
+ | `english-news` | en | Professionally edited news | 14,002 | 1,764 | 2,095 |
81
+ | `english-wikinews` | en | WikiNews articles | 7,746 | 870 | 1,287 |
82
+ | `english-wikipedia` | en | English Wikipedia | 5,551 | 694 | 870 |
83
+ | `german` | de | German Wikipedia | 6,151 | 795 | 959 |
84
+ | `spanish` | es | Spanish Wikipedia | 13,750 | 1,622 | 2,233 |
85
+ | `french` | fr | French Wikipedia | — | — | 2,251 |
86
+
87
+ French is the cross-lingual zero-shot track: test only, no training data.
88
+
89
+ ## Usage
90
+
91
+ ```python
92
+ from datasets import load_dataset
93
+
94
+ ds = load_dataset("alvations/complex-word-id-2018", "english-news")
95
+ print(ds["train"][0])
96
+ # {'hit_id': '3P7RGTLO6EE07HLUVDKKHS6O7CCKA5',
97
+ # 'sentence': 'The barren islands, reefs and coral outcrops ...',
98
+ # 'start_offset': 4, 'end_offset': 10, 'target': 'barren',
99
+ # 'native_annotators': 10, 'non_native_annotators': 10,
100
+ # 'native_complex': 6, 'non_native_complex': 2,
101
+ # 'label_binary': 1, 'label_prob': 0.4, 'language': 'en'}
102
+
103
+ # Cross-lingual eval on French
104
+ fr = load_dataset("alvations/complex-word-id-2018", "french", split="test")
105
+ ```
106
+
107
+ ## Schema
108
+
109
+ All configs share one schema. Test splits have null label fields (gold labels were never released publicly with the test inputs — only the shared-task organisers held them).
110
+
111
+ | Column | Type | Description |
112
+ | ------------------------ | ------- | ----------- |
113
+ | `hit_id` | string | MTurk HIT identifier — sentences sharing a HIT were annotated together in one screen. |
114
+ | `sentence` | string | The full sentence containing the target. |
115
+ | `start_offset` | int32 | Character offset where the target begins in `sentence`. |
116
+ | `end_offset` | int32 | Character offset where the target ends (exclusive). |
117
+ | `target` | string | The candidate complex word or multiword expression. |
118
+ | `native_annotators` | int32 | Number of native-speaker annotators who saw the sentence. |
119
+ | `non_native_annotators` | int32 | Number of non-native annotators who saw the sentence. |
120
+ | `native_complex` | int32? | Native annotators who marked the target as difficult. (null in test) |
121
+ | `non_native_complex` | int32? | Non-native annotators who marked the target as difficult. (null in test) |
122
+ | `label_binary` | int32? | 0 = simple (no annotator marked it complex); 1 = complex (≥1 annotator marked it). (null in test) |
123
+ | `label_prob` | float32?| Probability label = `(native_complex + non_native_complex) / (native_annotators + non_native_annotators)`. (null in test) |
124
+ | `language` | string | ISO 639-1 language code (`en`, `de`, `es`, `fr`). |
125
+
126
+ ### Annotation protocol
127
+
128
+ - **English**: each sentence annotated by 10 native + 10 non-native speakers.
129
+ - **German / Spanish / French**: each sentence annotated by 10 annotators (mixed native + non-native). The `native_annotators` and `non_native_annotators` columns reflect the actual split per sentence (and do not always sum to 10 across all rows due to the shared-task's annotator-pooling).
130
+
131
+ Annotators saw paragraph context around each sentence and were asked to mark words likely to be hard for children, non-native speakers, or readers with language disabilities.
132
+
133
+ ## Tasks
134
+
135
+ - **Binary CWI**: predict `label_binary`. Standard metric: macro-F1.
136
+ - **Probabilistic CWI**: predict `label_prob` ∈ [0, 1]. Standard metric: MAE.
137
+ - **Cross-lingual transfer**: train on `english-*` / `german` / `spanish`, evaluate on `french` (no French training data exists).
138
+
139
+ ## Sources
140
+
141
+ - **English (news / wikinews / wikipedia)**: a mix of professionally-edited news articles, WikiNews articles, and English Wikipedia.
142
+ - **German**: German Wikipedia.
143
+ - **Spanish**: Spanish Wikipedia.
144
+ - **French**: French Wikipedia (test-only, for cross-lingual evaluation).
145
+
146
+ ## Citation
147
+
148
+ Primary citation — the shared task report ([W18-0507](https://aclanthology.org/W18-0507/)):
149
+
150
+ ```bibtex
151
+ @inproceedings{yimam-etal-2018-report,
152
+ title = "A Report on the Complex Word Identification Shared Task 2018",
153
+ author = "Yimam, Seid Muhie and
154
+ Biemann, Chris and
155
+ Malmasi, Shervin and
156
+ Paetzold, Gustavo and
157
+ Specia, Lucia and
158
+ {\v{S}}tajner, Sanja and
159
+ Tack, Ana{\"\i}s and
160
+ Zampieri, Marcos",
161
+ booktitle = "Proceedings of the Thirteenth Workshop on Innovative Use of NLP for Building Educational Applications",
162
+ month = jun,
163
+ year = "2018",
164
+ address = "New Orleans, Louisiana",
165
+ publisher = "Association for Computational Linguistics",
166
+ url = "https://aclanthology.org/W18-0507/",
167
+ doi = "10.18653/v1/W18-0507",
168
+ pages = "66--78",
169
+ }
170
+ ```
171
+
172
+ Underlying corpora — please also cite the dataset papers the shared task drew on:
173
+
174
+ **English (News / WikiNews / Wikipedia)** — [I17-2068](https://aclanthology.org/I17-2068/):
175
+
176
+ ```bibtex
177
+ @inproceedings{yimam-etal-2017-cwig3g2,
178
+ title = "{CWIG}3{G}2 - Complex Word Identification Task across Three Text Genres and Two User Groups",
179
+ author = "Yimam, Seid Muhie and
180
+ {\v{S}}tajner, Sanja and
181
+ Riedl, Martin and
182
+ Biemann, Chris",
183
+ booktitle = "Proceedings of the Eighth International Joint Conference on Natural Language Processing (Volume 2: Short Papers)",
184
+ month = nov,
185
+ year = "2017",
186
+ address = "Taipei, Taiwan",
187
+ publisher = "Asian Federation of Natural Language Processing",
188
+ url = "https://aclanthology.org/I17-2068/",
189
+ pages = "401--407",
190
+ }
191
+ ```
192
+
193
+ **German / Spanish / French (multilingual)** — RANLP 2017, [R17-1104](https://aclanthology.org/R17-1104/):
194
+
195
+ ```bibtex
196
+ @inproceedings{yimam-etal-2017-multilingual,
197
+ title = "Multilingual and Cross-Lingual Complex Word Identification",
198
+ author = "Yimam, Seid Muhie and
199
+ {\v{S}}tajner, Sanja and
200
+ Riedl, Martin and
201
+ Biemann, Chris",
202
+ booktitle = "Proceedings of the International Conference Recent Advances in Natural Language Processing, RANLP 2017",
203
+ year = "2017",
204
+ address = "Varna, Bulgaria",
205
+ url = "https://aclanthology.org/R17-1104/",
206
+ }
207
+ ```
208
+
209
+ ## Organisers (original shared task)
210
+
211
+ Sanja Štajner (Mannheim), Chris Biemann (Hamburg), Shervin Malmasi (Harvard Medical School), Gustavo Paetzold (Sheffield), Lucia Specia (Sheffield), Anaïs Tack (UCLouvain / KU Leuven), Seid Muhie Yimam (Hamburg), Marcos Zampieri (Wolverhampton).
212
+
213
+ Contact: sanja (at) informatik (dot) uni-mannheim (dot) de
214
+
215
+ ## Licensing
216
+
217
+ The CWI 2018 shared task data was distributed by the organisers for research use; no explicit redistribution license was attached to the original release. The source text is drawn from English Wikipedia and WikiNews (CC BY-SA 3.0 / CC BY 2.5), German / Spanish / French Wikipedia (CC BY-SA 3.0), and professionally-edited news articles. Downstream users should respect the licenses of the underlying source material and cite the shared task paper.
218
+
219
+ ## Provenance of this release
220
+
221
+ - Source archives: `CWI 2018 Training Set.zip` and `CWI 2018 Test Set.zip` as distributed by the shared task organisers.
222
+ - Conversion: TSV columns mapped 1:1 into parquet with explicit pyarrow schema; row order preserved within each file; no row filtering, deduplication, or text normalisation applied.
223
+ - Mirror of the raw zips: [alvations/stash · cwi-2018/](https://huggingface.co/datasets/alvations/stash/tree/main/cwi-2018).