Robin Kurtz commited on
Commit
9b6e517
1 Parent(s): 7f209de
Files changed (1) hide show
  1. README.md +202 -0
README.md ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators: []
3
+ language_creators: []
4
+ languages:
5
+ - sv
6
+ - da
7
+ - nb
8
+ licenses: []
9
+ multilinguality:
10
+ - translation
11
+ pretty_name: overlim
12
+ size_categories:
13
+ - 10K<n<100K
14
+ source_datasets:
15
+ - extended|glue
16
+ - extended|super_glue
17
+ task_categories:
18
+ - text-classification
19
+ - text-scoring
20
+ task_ids:
21
+ - natural-language-inference
22
+ - semantic-similarity-classification
23
+ - sentiment-classification
24
+ - text-classification-other-paraphrase-identification
25
+ - text-classification-other-qa-nli
26
+ ---
27
+
28
+ # Dataset Card for [Dataset Name]
29
+
30
+ ## Table of Contents
31
+
32
+ - [Dataset Card for [Dataset Name]](#dataset-card-for-dataset-name)
33
+ - [Table of Contents](#table-of-contents)
34
+ - [Dataset Description](#dataset-description)
35
+ - [Dataset Summary](#dataset-summary)
36
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
37
+ - [Languages](#languages)
38
+ - [Dataset Structure](#dataset-structure)
39
+ - [Data Instances](#data-instances)
40
+ - [Data Fields](#data-fields)
41
+ - [Data Splits](#data-splits)
42
+ - [Dataset Creation](#dataset-creation)
43
+ - [Curation Rationale](#curation-rationale)
44
+ - [Source Data](#source-data)
45
+ - [Initial Data Collection and Normalization](#initial-data-collection-and-normalization)
46
+ - [Who are the source language producers?](#who-are-the-source-language-producers)
47
+ - [Annotations](#annotations)
48
+ - [Annotation process](#annotation-process)
49
+ - [Who are the annotators?](#who-are-the-annotators)
50
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
51
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
52
+ - [Social Impact of Dataset](#social-impact-of-dataset)
53
+ - [Discussion of Biases](#discussion-of-biases)
54
+ - [Other Known Limitations](#other-known-limitations)
55
+ - [Additional Information](#additional-information)
56
+ - [Dataset Curators](#dataset-curators)
57
+ - [Licensing Information](#licensing-information)
58
+ - [Citation Information](#citation-information)
59
+ - [Contributions](#contributions)
60
+
61
+ ## Dataset Description
62
+
63
+ - **Homepage:**
64
+ - **Repository:**
65
+ - **Paper:**
66
+ - **Leaderboard:**
67
+ - **Point of Contact:** robin.kurtz@kb.se
68
+
69
+ ### Dataset Summary
70
+
71
+ The _OverLim_ dataset contains some of the GLUE and SuperGLUE tasks automatically
72
+ translated to Swedish, Danish, and Norwegian (bokmål), using the OpusMT models
73
+ for MarianMT.
74
+
75
+ The translation quality was not manually checked and may thus be faulty.
76
+ Results on these datasets should thus be interpreted carefully.
77
+
78
+ ### Supported Tasks and Leaderboards
79
+
80
+ The data contains the following tasks from GLUE and SuperGLUE:
81
+
82
+ - GLUE
83
+ - `mnli`
84
+ - `mrpc`
85
+ - `qnli`
86
+ - `qqp`
87
+ - `rte`
88
+ - `sst`
89
+ - `stsb`
90
+ - `wnli`
91
+ - SuperGLUE
92
+ - `boolq`
93
+ - `cb`
94
+ - `copa`
95
+ - `rte`
96
+
97
+ ### Languages
98
+
99
+ - Swedish
100
+ - Danish
101
+ - Norwegian (bokmål)
102
+
103
+ ## Dataset Structure
104
+
105
+ ### Data Instances
106
+
107
+ Every task has their own set of features, but all share an `idx` and `label`.
108
+
109
+ - GLUE
110
+ - `mnli`
111
+ - `premise`, `hypothesis`
112
+ - `mrpc`
113
+ - `text_a`, `text_b`
114
+ - `qnli`
115
+ - `premise`, `hypothesis`
116
+ - `qqp`
117
+ - `text_a`, `text_b`
118
+ - `sst`
119
+ - `text`
120
+ - `stsb`
121
+ - `text_a`, `text_b`
122
+ - `wnli`
123
+ - `premise`, `hypothesis`
124
+ - SuperGLUE
125
+ - `boolq`
126
+ - `question`, `passage`
127
+ - `cb`
128
+ - `premise`, `hypothesis`
129
+ - `copa`
130
+ - `premise`, `choice1`, `choice2`, `question`
131
+ - `rte`
132
+ - `premise`, `hypothesis`
133
+
134
+ ### Data Splits
135
+
136
+ In order to have test-split, we repurpose the original validation-split as
137
+ test-split, and split the training-split into a new training- and
138
+ validation-split, with an 80-20 distribution.
139
+
140
+ ## Dataset Creation
141
+
142
+ For more information about the individual tasks see (https://gluebenchmark.com) and (https://super.gluebenchmark.com).
143
+
144
+ ### Curation Rationale
145
+
146
+ Training non-English models is easy, but there is a lack of evaluation datasets to compare their actual performance.
147
+
148
+ ### Source Data
149
+
150
+ #### Initial Data Collection and Normalization
151
+
152
+ [More Information Needed]
153
+
154
+ #### Who are the source language producers?
155
+
156
+ [More Information Needed]
157
+
158
+ ### Annotations
159
+
160
+ #### Annotation process
161
+
162
+ [More Information Needed]
163
+
164
+ #### Who are the annotators?
165
+
166
+ [More Information Needed]
167
+
168
+ ### Personal and Sensitive Information
169
+
170
+ [More Information Needed]
171
+
172
+ ## Considerations for Using the Data
173
+
174
+ ### Social Impact of Dataset
175
+
176
+ [More Information Needed]
177
+
178
+ ### Discussion of Biases
179
+
180
+ [More Information Needed]
181
+
182
+ ### Other Known Limitations
183
+
184
+ [More Information Needed]
185
+
186
+ ## Additional Information
187
+
188
+ ### Dataset Curators
189
+
190
+ [More Information Needed]
191
+
192
+ ### Licensing Information
193
+
194
+ [More Information Needed]
195
+
196
+ ### Citation Information
197
+
198
+ [More Information Needed]
199
+
200
+ ### Contributions
201
+
202
+ Thanks to [@robinqrtz](https://github.com/robinqrtz) for adding this dataset.