Commit
·
18a4da5
1
Parent(s):
f993a73
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
@@ -39,10 +39,10 @@ dataset_info:
|
|
39 |
dtype:
|
40 |
class_label:
|
41 |
names:
|
42 |
-
0: a
|
43 |
-
1: b
|
44 |
-
2: c
|
45 |
-
3: d
|
46 |
- name: choice_type
|
47 |
dtype: string
|
48 |
- name: exp
|
|
|
39 |
dtype:
|
40 |
class_label:
|
41 |
names:
|
42 |
+
'0': a
|
43 |
+
'1': b
|
44 |
+
'2': c
|
45 |
+
'3': d
|
46 |
- name: choice_type
|
47 |
dtype: string
|
48 |
- name: exp
|