Commit
•
fe7470f
1
Parent(s):
525a71c
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
@@ -34,16 +34,16 @@ dataset_info:
|
|
34 |
dtype:
|
35 |
class_label:
|
36 |
names:
|
37 |
-
0: '0'
|
38 |
-
1: '1'
|
39 |
-
2: '2'
|
40 |
-
3: '3'
|
41 |
-
4: '4'
|
42 |
-
5: '5'
|
43 |
-
6: '6'
|
44 |
-
7: '7'
|
45 |
-
8: '8'
|
46 |
-
9: '9'
|
47 |
splits:
|
48 |
- name: train
|
49 |
num_bytes: 390404309
|
@@ -64,16 +64,16 @@ dataset_info:
|
|
64 |
dtype:
|
65 |
class_label:
|
66 |
names:
|
67 |
-
0: '0'
|
68 |
-
1: '1'
|
69 |
-
2: '2'
|
70 |
-
3: '3'
|
71 |
-
4: '4'
|
72 |
-
5: '5'
|
73 |
-
6: '6'
|
74 |
-
7: '7'
|
75 |
-
8: '8'
|
76 |
-
9: '9'
|
77 |
splits:
|
78 |
- name: train
|
79 |
num_bytes: 128364360
|
|
|
34 |
dtype:
|
35 |
class_label:
|
36 |
names:
|
37 |
+
'0': '0'
|
38 |
+
'1': '1'
|
39 |
+
'2': '2'
|
40 |
+
'3': '3'
|
41 |
+
'4': '4'
|
42 |
+
'5': '5'
|
43 |
+
'6': '6'
|
44 |
+
'7': '7'
|
45 |
+
'8': '8'
|
46 |
+
'9': '9'
|
47 |
splits:
|
48 |
- name: train
|
49 |
num_bytes: 390404309
|
|
|
64 |
dtype:
|
65 |
class_label:
|
66 |
names:
|
67 |
+
'0': '0'
|
68 |
+
'1': '1'
|
69 |
+
'2': '2'
|
70 |
+
'3': '3'
|
71 |
+
'4': '4'
|
72 |
+
'5': '5'
|
73 |
+
'6': '6'
|
74 |
+
'7': '7'
|
75 |
+
'8': '8'
|
76 |
+
'9': '9'
|
77 |
splits:
|
78 |
- name: train
|
79 |
num_bytes: 128364360
|