Hyukkyu commited on
Commit
23e4976
·
verified ·
1 Parent(s): 773afdd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +141 -1
README.md CHANGED
@@ -1,7 +1,147 @@
1
  ---
 
 
 
 
2
  license: mit
3
  language:
4
- - en
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  ---
6
  # SuperGLUE Benchmark Datasets
7
 
 
1
  ---
2
+ tags:
3
+ - superglue
4
+ - nlp
5
+ - benchmark
6
  license: mit
7
  language:
8
+ - en
9
+ dataset_info:
10
+ total_datasets: 8
11
+ datasets:
12
+ multirc:
13
+ name: MultiRC
14
+ sample_counts:
15
+ train: 456
16
+ validation: 83
17
+ test: 166
18
+ features:
19
+ idx: int
20
+ version: float
21
+ passage:
22
+ __type__: dict
23
+ schema:
24
+ questions:
25
+ __type__: list
26
+ schema:
27
+ idx: int
28
+ answers:
29
+ __type__: list
30
+ schema:
31
+ idx: int
32
+ label: int
33
+ text: str
34
+ question: str
35
+ text: str
36
+ boolq:
37
+ name: BoolQ
38
+ sample_counts:
39
+ train: 9427
40
+ validation: 3270
41
+ test: 3245
42
+ features:
43
+ question: str
44
+ passage: str
45
+ idx: int
46
+ label: bool
47
+ cb:
48
+ name: CB
49
+ sample_counts:
50
+ train: 250
51
+ validation: 56
52
+ test: 250
53
+ features:
54
+ premise: str
55
+ hypothesis: str
56
+ label: str
57
+ idx: int
58
+ wic:
59
+ name: WiC
60
+ sample_counts:
61
+ train: 5428
62
+ validation: 638
63
+ test: 1400
64
+ features:
65
+ word: str
66
+ sentence1: str
67
+ sentence2: str
68
+ idx: int
69
+ label: bool
70
+ start1: int
71
+ start2: int
72
+ end1: int
73
+ end2: int
74
+ version: float
75
+ record:
76
+ name: ReCoRD
77
+ sample_counts:
78
+ train: 65709
79
+ validation: 7481
80
+ test: 7484
81
+ features:
82
+ source: str
83
+ passage:
84
+ __type__: dict
85
+ schema:
86
+ entities:
87
+ __type__: list
88
+ schema:
89
+ end: int
90
+ start: int
91
+ text: str
92
+ qas:
93
+ __type__: list
94
+ schema:
95
+ query: str
96
+ idx: int
97
+ answers:
98
+ __type__: list
99
+ schema:
100
+ end: int
101
+ start: int
102
+ text: str
103
+ idx: int
104
+ copa:
105
+ name: COPA
106
+ sample_counts:
107
+ train: 400
108
+ validation: 100
109
+ test: 500
110
+ features:
111
+ premise: str
112
+ choice1: str
113
+ choice2: str
114
+ question: str
115
+ label: int
116
+ idx: int
117
+ rte:
118
+ name: RTE
119
+ sample_counts:
120
+ train: 2490
121
+ validation: 277
122
+ test: 3000
123
+ features:
124
+ premise: str
125
+ hypothesis: str
126
+ label: str
127
+ idx: int
128
+ wsc:
129
+ name: WSC
130
+ sample_counts:
131
+ train: 554
132
+ validation: 104
133
+ test: 146
134
+ features:
135
+ text: str
136
+ target:
137
+ __type__: dict
138
+ schema:
139
+ span2_text: str
140
+ span2_index: int
141
+ span1_index: int
142
+ span1_text: str
143
+ idx: int
144
+ label: bool
145
  ---
146
  # SuperGLUE Benchmark Datasets
147