Datasets:
Tasks:
Text Classification
Languages:
Portuguese
Size:
1K<n<10K
Tags:
hate-speech-detection
License:
Commit
•
67f3126
1
Parent(s):
34c21f4
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
@@ -27,8 +27,8 @@ dataset_info:
|
|
27 |
dtype:
|
28 |
class_label:
|
29 |
names:
|
30 |
-
0: 'no'
|
31 |
-
1: 'yes'
|
32 |
- name: text
|
33 |
dtype: string
|
34 |
splits:
|
@@ -43,8 +43,8 @@ dataset_info:
|
|
43 |
dtype:
|
44 |
class_label:
|
45 |
names:
|
46 |
-
0: 'no'
|
47 |
-
1: 'yes'
|
48 |
- name: text
|
49 |
dtype: string
|
50 |
splits:
|
|
|
27 |
dtype:
|
28 |
class_label:
|
29 |
names:
|
30 |
+
'0': 'no'
|
31 |
+
'1': 'yes'
|
32 |
- name: text
|
33 |
dtype: string
|
34 |
splits:
|
|
|
43 |
dtype:
|
44 |
class_label:
|
45 |
names:
|
46 |
+
'0': 'no'
|
47 |
+
'1': 'yes'
|
48 |
- name: text
|
49 |
dtype: string
|
50 |
splits:
|