wzkariampuzha commited on
Commit
3df90d1
1 Parent(s): 62daa51

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +181 -0
README.md ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - expert-generated
4
+ language_creators:
5
+ - found
6
+ languages:
7
+ - en
8
+ licenses:
9
+ - unknown
10
+ multilinguality:
11
+ - monolingual
12
+ size_categories:
13
+ - 10K<n<100K
14
+ source_datasets:
15
+ - extended|conll2003
16
+ task_categories:
17
+ - structure-prediction
18
+ task_ids:
19
+ - named-entity-recognition
20
+ paperswithcode_id: conll
21
+ ---
22
+
23
+ # Dataset Card for "conllpp"
24
+
25
+ ## Table of Contents
26
+ - [Dataset Description](#dataset-description)
27
+ - [Dataset Summary](#dataset-summary)
28
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
29
+ - [Languages](#languages)
30
+ - [Dataset Structure](#dataset-structure)
31
+ - [Data Instances](#data-instances)
32
+ - [Data Fields](#data-fields)
33
+ - [Data Splits](#data-splits)
34
+ - [Dataset Creation](#dataset-creation)
35
+ - [Curation Rationale](#curation-rationale)
36
+ - [Source Data](#source-data)
37
+ - [Annotations](#annotations)
38
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
39
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
40
+ - [Social Impact of Dataset](#social-impact-of-dataset)
41
+ - [Discussion of Biases](#discussion-of-biases)
42
+ - [Other Known Limitations](#other-known-limitations)
43
+ - [Additional Information](#additional-information)
44
+ - [Dataset Curators](#dataset-curators)
45
+ - [Licensing Information](#licensing-information)
46
+ - [Citation Information](#citation-information)
47
+ - [Contributions](#contributions)
48
+
49
+ ## Dataset Description
50
+
51
+ - **Homepage:** [Github](https://github.com/ZihanWangKi/CrossWeigh)
52
+ - **Repository:** [Github](https://github.com/ZihanWangKi/CrossWeigh)
53
+ - **Paper:** [Aclweb](https://www.aclweb.org/anthology/D19-1519)
54
+ - **Leaderboard:**
55
+ - **Point of Contact:**
56
+
57
+ ### Dataset Summary
58
+
59
+ CoNLLpp is a corrected version of the CoNLL2003 NER dataset where labels of 5.38% of the sentences in the test set
60
+ have been manually corrected. The training set and development set from CoNLL2003 is included for completeness. One
61
+ correction on the test set for example, is:
62
+
63
+ ```
64
+ {
65
+ "tokens": ["SOCCER", "-", "JAPAN", "GET", "LUCKY", "WIN", ",", "CHINA", "IN", "SURPRISE", "DEFEAT", "."],
66
+ "original_ner_tags_in_conll2003": ["O", "O", "B-LOC", "O", "O", "O", "O", "B-PER", "O", "O", "O", "O"],
67
+ "corrected_ner_tags_in_conllpp": ["O", "O", "B-LOC", "O", "O", "O", "O", "B-LOC", "O", "O", "O", "O"],
68
+ }
69
+ ```
70
+
71
+ ### Supported Tasks and Leaderboards
72
+
73
+ [More Information Needed]
74
+
75
+ ### Languages
76
+
77
+ [More Information Needed]
78
+
79
+ ## Dataset Structure
80
+
81
+ We show detailed information for up to 5 configurations of the dataset.
82
+
83
+ ### Data Instances
84
+
85
+ #### conllpp
86
+
87
+ - **Size of downloaded dataset files:** 4.63 MB
88
+ - **Size of the generated dataset:** 9.78 MB
89
+ - **Total amount of disk used:** 14.41 MB
90
+
91
+ An example of 'train' looks as follows.
92
+ ```
93
+ This example was too long and was cropped:
94
+
95
+ {
96
+ "chunk_tags": [11, 12, 12, 21, 13, 11, 11, 21, 13, 11, 12, 13, 11, 21, 22, 11, 12, 17, 11, 21, 17, 11, 12, 12, 21, 22, 22, 13, 11, 0],
97
+ "id": "0",
98
+ "ner_tags": [0, 3, 4, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
99
+ "pos_tags": [12, 22, 22, 38, 15, 22, 28, 38, 15, 16, 21, 35, 24, 35, 37, 16, 21, 15, 24, 41, 15, 16, 21, 21, 20, 37, 40, 35, 21, 7],
100
+ "tokens": ["The", "European", "Commission", "said", "on", "Thursday", "it", "disagreed", "with", "German", "advice", "to", "consumers", "to", "shun", "British", "lamb", "until", "scientists", "determine", "whether", "mad", "cow", "disease", "can", "be", "transmitted", "to", "sheep", "."]
101
+ }
102
+ ```
103
+
104
+ ### Data Fields
105
+
106
+ The data fields are the same among all splits.
107
+
108
+ #### conllpp
109
+ - `id`: a `string` feature.
110
+ - `tokens`: a `list` of `string` features.
111
+ - `pos_tags`: a `list` of classification labels, with possible values including `"` (0), `''` (1), `#` (2), `$` (3), `(` (4).
112
+ - `chunk_tags`: a `list` of classification labels, with possible values including `O` (0), `B-ADJP` (1), `I-ADJP` (2), `B-ADVP` (3), `I-ADVP` (4).
113
+ - `ner_tags`: a `list` of classification labels, with possible values including `O` (0), `B-PER` (1), `I-PER` (2), `B-ORG` (3), `I-ORG` (4).
114
+
115
+ ### Data Splits
116
+
117
+ | name |train|validation|test|
118
+ |---------|----:|---------:|---:|
119
+ |conll2003|14041| 3250|3453|
120
+
121
+ ## Dataset Creation
122
+
123
+ ### Curation Rationale
124
+
125
+ [More Information Needed]
126
+
127
+ ### Source Data
128
+
129
+ #### Initial Data Collection and Normalization
130
+
131
+ [More Information Needed]
132
+
133
+ #### Who are the source language producers?
134
+
135
+ [More Information Needed]
136
+
137
+ ### Annotations
138
+
139
+ #### Annotation process
140
+
141
+ [More Information Needed]
142
+
143
+ #### Who are the annotators?
144
+
145
+ [More Information Needed]
146
+
147
+ ### Personal and Sensitive Information
148
+
149
+ [More Information Needed]
150
+
151
+ ## Considerations for Using the Data
152
+
153
+ ### Social Impact of Dataset
154
+
155
+ [More Information Needed]
156
+
157
+ ### Discussion of Biases
158
+
159
+ [More Information Needed]
160
+
161
+ ### Other Known Limitations
162
+
163
+ [More Information Needed]
164
+
165
+ ## Additional Information
166
+
167
+ ### Dataset Curators
168
+
169
+ [More Information Needed]
170
+
171
+ ### Licensing Information
172
+
173
+ [More Information Needed]
174
+
175
+ ### Citation Information
176
+
177
+ [More Information Needed]
178
+
179
+ ### Contributions
180
+
181
+ Thanks to [@ZihanWangKi](https://github.com/ZihanWangKi) for adding this dataset.