Datasets:
Tasks:
Text Classification
Sub-tasks:
multi-label-classification
Languages:
Korean
Size:
1K<n<10K
ArXiv:
License:
Commit
•
fd5bc3e
1
Parent(s):
41be09b
Replace YAML keys from int to str (#2)
Browse files- Replace YAML keys from int to str (964f74c43c6d54f311db80df267269d7187bfc26)
README.md
CHANGED
@@ -28,22 +28,22 @@ dataset_info:
|
|
28 |
dtype:
|
29 |
class_label:
|
30 |
names:
|
31 |
-
0: 'False'
|
32 |
-
1: 'True'
|
33 |
- name: bias
|
34 |
dtype:
|
35 |
class_label:
|
36 |
names:
|
37 |
-
0: none
|
38 |
-
1: gender
|
39 |
-
2: others
|
40 |
- name: hate
|
41 |
dtype:
|
42 |
class_label:
|
43 |
names:
|
44 |
-
0: hate
|
45 |
-
1: offensive
|
46 |
-
2: none
|
47 |
splits:
|
48 |
- name: train
|
49 |
num_bytes: 983608
|
|
|
28 |
dtype:
|
29 |
class_label:
|
30 |
names:
|
31 |
+
'0': 'False'
|
32 |
+
'1': 'True'
|
33 |
- name: bias
|
34 |
dtype:
|
35 |
class_label:
|
36 |
names:
|
37 |
+
'0': none
|
38 |
+
'1': gender
|
39 |
+
'2': others
|
40 |
- name: hate
|
41 |
dtype:
|
42 |
class_label:
|
43 |
names:
|
44 |
+
'0': hate
|
45 |
+
'1': offensive
|
46 |
+
'2': none
|
47 |
splits:
|
48 |
- name: train
|
49 |
num_bytes: 983608
|