Datasets:
Commit
•
691d4c4
1
Parent(s):
e0bbca1
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
@@ -36,13 +36,13 @@ dataset_info:
|
|
36 |
dtype:
|
37 |
class_label:
|
38 |
names:
|
39 |
-
0: ar
|
40 |
-
1: bn
|
41 |
-
2: fi
|
42 |
-
3: ja
|
43 |
-
4: ko
|
44 |
-
5: ru
|
45 |
-
6: te
|
46 |
- name: answers
|
47 |
dtype: string
|
48 |
splits:
|
@@ -65,13 +65,13 @@ dataset_info:
|
|
65 |
dtype:
|
66 |
class_label:
|
67 |
names:
|
68 |
-
0: ar
|
69 |
-
1: bn
|
70 |
-
2: fi
|
71 |
-
3: ja
|
72 |
-
4: ko
|
73 |
-
5: ru
|
74 |
-
6: te
|
75 |
- name: answers
|
76 |
dtype: string
|
77 |
splits:
|
|
|
36 |
dtype:
|
37 |
class_label:
|
38 |
names:
|
39 |
+
'0': ar
|
40 |
+
'1': bn
|
41 |
+
'2': fi
|
42 |
+
'3': ja
|
43 |
+
'4': ko
|
44 |
+
'5': ru
|
45 |
+
'6': te
|
46 |
- name: answers
|
47 |
dtype: string
|
48 |
splits:
|
|
|
65 |
dtype:
|
66 |
class_label:
|
67 |
names:
|
68 |
+
'0': ar
|
69 |
+
'1': bn
|
70 |
+
'2': fi
|
71 |
+
'3': ja
|
72 |
+
'4': ko
|
73 |
+
'5': ru
|
74 |
+
'6': te
|
75 |
- name: answers
|
76 |
dtype: string
|
77 |
splits:
|