Commit
•
35a4fd2
1
Parent(s):
8686edf
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
@@ -31,9 +31,9 @@ dataset_info:
|
|
31 |
dtype:
|
32 |
class_label:
|
33 |
names:
|
34 |
-
0: entailment
|
35 |
-
1: neutral
|
36 |
-
2: contradiction
|
37 |
config_name: plain_text
|
38 |
splits:
|
39 |
- name: test
|
|
|
31 |
dtype:
|
32 |
class_label:
|
33 |
names:
|
34 |
+
'0': entailment
|
35 |
+
'1': neutral
|
36 |
+
'2': contradiction
|
37 |
config_name: plain_text
|
38 |
splits:
|
39 |
- name: test
|