Commit
·
8193620
1
Parent(s):
b4b30ab
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
|
@@ -25,8 +25,8 @@ dataset_info:
|
|
| 25 |
dtype:
|
| 26 |
class_label:
|
| 27 |
names:
|
| 28 |
-
0: '0'
|
| 29 |
-
1: '1'
|
| 30 |
- name: article
|
| 31 |
dtype: string
|
| 32 |
splits:
|
|
|
|
| 25 |
dtype:
|
| 26 |
class_label:
|
| 27 |
names:
|
| 28 |
+
'0': '0'
|
| 29 |
+
'1': '1'
|
| 30 |
- name: article
|
| 31 |
dtype: string
|
| 32 |
splits:
|