Datasets:
Tasks:
Question Answering
Sub-tasks:
multiple-choice-qa
Languages:
English
Size:
10K<n<100K
ArXiv:
License:
Commit
•
09ce938
1
Parent(s):
7150e59
Replace YAML keys from int to str
Browse filesReplace YAML metadata integer keys with strings, as the Hub does not support integers.
See: https://github.com/huggingface/datasets/issues/5275
README.md
CHANGED
@@ -33,17 +33,17 @@ dataset_info:
|
|
33 |
dtype:
|
34 |
class_label:
|
35 |
names:
|
36 |
-
0: 'no'
|
37 |
-
1: 'yes'
|
38 |
- name: category
|
39 |
dtype:
|
40 |
class_label:
|
41 |
names:
|
42 |
-
0: Event Duration
|
43 |
-
1: Event Ordering
|
44 |
-
2: Frequency
|
45 |
-
3: Typical Time
|
46 |
-
4: Stationarity
|
47 |
config_name: plain_text
|
48 |
splits:
|
49 |
- name: test
|
|
|
33 |
dtype:
|
34 |
class_label:
|
35 |
names:
|
36 |
+
'0': 'no'
|
37 |
+
'1': 'yes'
|
38 |
- name: category
|
39 |
dtype:
|
40 |
class_label:
|
41 |
names:
|
42 |
+
'0': Event Duration
|
43 |
+
'1': Event Ordering
|
44 |
+
'2': Frequency
|
45 |
+
'3': Typical Time
|
46 |
+
'4': Stationarity
|
47 |
config_name: plain_text
|
48 |
splits:
|
49 |
- name: test
|