Commit
•
79deb17
1
Parent(s):
ebac932
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,9 +34,9 @@ dataset_info:
|
|
34 |
dtype:
|
35 |
class_label:
|
36 |
names:
|
37 |
-
0: entailment
|
38 |
-
1: neutral
|
39 |
-
2: contradiction
|
40 |
splits:
|
41 |
- name: train
|
42 |
num_bytes: 84729207
|
@@ -53,9 +53,9 @@ dataset_info:
|
|
53 |
dtype:
|
54 |
class_label:
|
55 |
names:
|
56 |
-
0: entailment
|
57 |
-
1: neutral
|
58 |
-
2: contradiction
|
59 |
splits:
|
60 |
- name: train
|
61 |
num_bytes: 80137097
|
@@ -72,9 +72,9 @@ dataset_info:
|
|
72 |
dtype:
|
73 |
class_label:
|
74 |
names:
|
75 |
-
0: entailment
|
76 |
-
1: neutral
|
77 |
-
2: contradiction
|
78 |
splits:
|
79 |
- name: validation
|
80 |
num_bytes: 518830
|
|
|
34 |
dtype:
|
35 |
class_label:
|
36 |
names:
|
37 |
+
'0': entailment
|
38 |
+
'1': neutral
|
39 |
+
'2': contradiction
|
40 |
splits:
|
41 |
- name: train
|
42 |
num_bytes: 84729207
|
|
|
53 |
dtype:
|
54 |
class_label:
|
55 |
names:
|
56 |
+
'0': entailment
|
57 |
+
'1': neutral
|
58 |
+
'2': contradiction
|
59 |
splits:
|
60 |
- name: train
|
61 |
num_bytes: 80137097
|
|
|
72 |
dtype:
|
73 |
class_label:
|
74 |
names:
|
75 |
+
'0': entailment
|
76 |
+
'1': neutral
|
77 |
+
'2': contradiction
|
78 |
splits:
|
79 |
- name: validation
|
80 |
num_bytes: 518830
|