Hyukkyu commited on
Commit
d26e5da
·
verified ·
1 Parent(s): cf43d4c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +219 -132
README.md CHANGED
@@ -27,147 +27,234 @@ license: mit
27
  language:
28
  - en
29
  dataset_info:
30
- description: >
31
- This repository contains the SuperGLUE benchmark datasets.
32
- Each dataset is available as a separate configuration and includes
33
- detailed preprocessing to ensure consistency across train, validation,
34
- and test splits.
35
- total_datasets: 8
36
- datasets:
37
- multirc:
38
- name: MultiRC
39
- sample_counts:
40
- train: 456
41
- validation: 83
42
- test: 166
43
- features:
44
- idx: int
45
- version: float
46
- passage:
47
- __type__: dict
48
- schema:
49
- questions:
50
- __type__: list
51
- schema:
52
- idx: int
53
- answers:
54
- __type__: list
55
- schema:
56
- idx: int
57
- label: int
58
- text: str
59
- question: str
60
- text: str
61
- boolq:
62
- name: BoolQ
63
- sample_counts:
64
- train: 9427
65
- validation: 3270
66
- test: 3245
67
- features:
68
- question: str
69
- passage: str
70
- idx: int
71
- label: bool
72
- cb:
73
- name: CB
74
- sample_counts:
75
- train: 250
76
- validation: 56
77
- test: 250
78
- features:
79
- premise: str
80
- hypothesis: str
81
- label: str
82
- idx: int
83
- wic:
84
- name: WiC
85
- sample_counts:
86
- train: 5428
87
- validation: 638
88
- test: 1400
89
- features:
90
- word: str
91
- sentence1: str
92
- sentence2: str
93
- idx: int
94
- label: bool
95
- start1: int
96
- start2: int
97
- end1: int
98
- end2: int
99
- version: float
100
- record:
101
- name: ReCoRD
102
- sample_counts:
103
- train: 65709
104
- validation: 7481
105
- test: 7484
106
- features:
107
- source: str
108
- passage:
109
- __type__: dict
110
- schema:
111
- entities:
112
- __type__: list
113
- schema:
114
- end: int
115
- start: int
116
- text: str
117
- qas:
118
  __type__: list
119
  schema:
120
- query: str
121
- idx: int
122
  answers:
123
  __type__: list
124
  schema:
125
- end: int
126
- start: int
127
  text: str
128
- idx: int
129
- copa:
130
- name: COPA
131
- sample_counts:
132
- train: 400
133
- validation: 100
134
- test: 500
135
- features:
136
- premise: str
137
- choice1: str
138
- choice2: str
139
- question: str
140
- label: int
141
- idx: int
142
- rte:
143
- name: RTE
144
- sample_counts:
145
- train: 2490
146
- validation: 277
147
- test: 3000
148
- features:
149
- premise: str
150
- hypothesis: str
151
- label: str
152
- idx: int
153
- wsc:
154
- name: WSC
155
- sample_counts:
156
- train: 554
157
- validation: 104
158
- test: 146
159
- features:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
  text: str
161
- target:
162
- __type__: dict
 
 
 
 
 
 
 
 
 
 
163
  schema:
164
- span2_text: str
165
- span2_index: int
166
- span1_index: int
167
- span1_text: str
168
  idx: int
169
- label: bool
170
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  ---
172
  # SuperGLUE Benchmark Datasets
173
 
 
27
  language:
28
  - en
29
  dataset_info:
30
+ - config_name: multirc
31
+ features:
32
+ - name: idx
33
+ dtype: int32
34
+ - name: version
35
+ dtype: float32
36
+ - name: passage
37
+ dtype:
38
+ __type__: dict
39
+ schema:
40
+ text: str
41
+ questions:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  __type__: list
43
  schema:
44
+ question: str
 
45
  answers:
46
  __type__: list
47
  schema:
 
 
48
  text: str
49
+ idx: int
50
+ label: int
51
+ idx: int
52
+ splits:
53
+ - name: train
54
+ num_bytes: 3094341
55
+ num_examples: 456
56
+ - name: validation
57
+ num_bytes: 550086
58
+ num_examples: 83
59
+ - name: test
60
+ num_bytes: 983819
61
+ num_examples: 166
62
+ download_size: 4628246
63
+ dataset_size: 4628246
64
+ - config_name: boolq
65
+ features:
66
+ - name: question
67
+ dtype: string
68
+ - name: passage
69
+ dtype: string
70
+ - name: idx
71
+ dtype: int32
72
+ - name: label
73
+ dtype: bool
74
+ splits:
75
+ - name: train
76
+ num_bytes: 6573302
77
+ num_examples: 9427
78
+ - name: validation
79
+ num_bytes: 2254565
80
+ num_examples: 3270
81
+ - name: test
82
+ num_bytes: 2193238
83
+ num_examples: 3245
84
+ download_size: 11021105
85
+ dataset_size: 11021105
86
+ - config_name: cb
87
+ features:
88
+ - name: premise
89
+ dtype: string
90
+ - name: hypothesis
91
+ dtype: string
92
+ - name: label
93
+ dtype: string
94
+ - name: idx
95
+ dtype: int32
96
+ splits:
97
+ - name: train
98
+ num_bytes: 99499
99
+ num_examples: 250
100
+ - name: validation
101
+ num_bytes: 24598
102
+ num_examples: 56
103
+ - name: test
104
+ num_bytes: 99881
105
+ num_examples: 250
106
+ download_size: 223978
107
+ dataset_size: 223978
108
+ - config_name: wic
109
+ features:
110
+ - name: word
111
+ dtype: string
112
+ - name: sentence1
113
+ dtype: string
114
+ - name: sentence2
115
+ dtype: string
116
+ - name: idx
117
+ dtype: int32
118
+ - name: label
119
+ dtype: bool
120
+ - name: start1
121
+ dtype: int32
122
+ - name: start2
123
+ dtype: int32
124
+ - name: end1
125
+ dtype: int32
126
+ - name: end2
127
+ dtype: int32
128
+ - name: version
129
+ dtype: float32
130
+ splits:
131
+ - name: train
132
+ num_bytes: 1211413
133
+ num_examples: 5428
134
+ - name: validation
135
+ num_bytes: 146302
136
+ num_examples: 638
137
+ - name: test
138
+ num_bytes: 299101
139
+ num_examples: 1400
140
+ download_size: 1656816
141
+ dataset_size: 1656816
142
+ - config_name: record
143
+ features:
144
+ - name: source
145
+ dtype: string
146
+ - name: passage
147
+ dtype:
148
+ __type__: dict
149
+ schema:
150
  text: str
151
+ entities:
152
+ __type__: list
153
+ schema:
154
+ start: int
155
+ end: int
156
+ - name: qas
157
+ dtype:
158
+ __type__: list
159
+ schema:
160
+ query: str
161
+ answers:
162
+ __type__: list
163
  schema:
164
+ start: int
165
+ end: int
166
+ text: str
 
167
  idx: int
168
+ - name: idx
169
+ dtype: int32
170
+ splits:
171
+ - name: train
172
+ num_bytes: 135976939
173
+ num_examples: 65709
174
+ - name: validation
175
+ num_bytes: 15236903
176
+ num_examples: 7481
177
+ - name: test
178
+ num_bytes: 13637660
179
+ num_examples: 7484
180
+ download_size: 164851502
181
+ dataset_size: 164851502
182
+ - config_name: copa
183
+ features:
184
+ - name: premise
185
+ dtype: string
186
+ - name: choice1
187
+ dtype: string
188
+ - name: choice2
189
+ dtype: string
190
+ - name: question
191
+ dtype: string
192
+ - name: label
193
+ dtype: int32
194
+ - name: idx
195
+ dtype: int32
196
+ splits:
197
+ - name: train
198
+ num_bytes: 72323
199
+ num_examples: 400
200
+ - name: validation
201
+ num_bytes: 18169
202
+ num_examples: 100
203
+ - name: test
204
+ num_bytes: 82735
205
+ num_examples: 500
206
+ download_size: 173227
207
+ dataset_size: 173227
208
+ - config_name: rte
209
+ features:
210
+ - name: premise
211
+ dtype: string
212
+ - name: hypothesis
213
+ dtype: string
214
+ - name: label
215
+ dtype: string
216
+ - name: idx
217
+ dtype: int32
218
+ splits:
219
+ - name: train
220
+ num_bytes: 977550
221
+ num_examples: 2490
222
+ - name: validation
223
+ num_bytes: 104895
224
+ num_examples: 277
225
+ - name: test
226
+ num_bytes: 1056063
227
+ num_examples: 3000
228
+ download_size: 2138508
229
+ dataset_size: 2138508
230
+ - config_name: wsc
231
+ features:
232
+ - name: text
233
+ dtype: string
234
+ - name: target
235
+ dtype:
236
+ __type__: dict
237
+ schema:
238
+ span2_index: int
239
+ span1_index: int
240
+ span1_text: str
241
+ span2_text: str
242
+ - name: idx
243
+ dtype: int32
244
+ - name: label
245
+ dtype: bool
246
+ splits:
247
+ - name: train
248
+ num_bytes: 140984
249
+ num_examples: 554
250
+ - name: validation
251
+ num_bytes: 31167
252
+ num_examples: 104
253
+ - name: test
254
+ num_bytes: 42751
255
+ num_examples: 146
256
+ download_size: 214902
257
+ dataset_size: 214902
258
  ---
259
  # SuperGLUE Benchmark Datasets
260