Datasets:

Modalities:
Text
Formats:
csv
Languages:
Korean
ArXiv:
Libraries:
Datasets
pandas
License:
jason9693 commited on
Commit
1424fb9
1 Parent(s): e66f813

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -22
README.md CHANGED
@@ -1,31 +1,53 @@
1
- annotations_creators:
2
- - crowdsourced
3
- - other
4
- language_creators:
5
- - crowdsourced
6
 
7
- languages:
8
- - ko-KR
9
 
10
- licenses:
11
- - MIT
12
 
13
- multilinguality:
14
- - monolingual
15
 
16
- paperswithcode_id: hate-speech-and-offensive-language
17
 
18
- pretty_name: APEACH
19
 
20
- size_categories:
21
- - 10K<n<100K
22
 
23
- source_datasets:
24
- - original
25
- - extended|kor_hate
26
 
27
- task_categories:
28
- - text-classification
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
- task_ids:
31
- - hate-speech-detection
 
 
 
1
+ ---
2
+ task_categories:
3
+ - text-classification
 
 
4
 
5
+ ---
6
+ # Dataset for project: kor_hate_eval
7
 
8
+ ## Dataset Descritpion
 
9
 
10
+ This dataset has been automatically processed by AutoTrain for project kor_hate_eval.
 
11
 
12
+ ### Languages
13
 
14
+ ko-KR
15
 
16
+ ## Dataset Structure
 
17
 
18
+ ### Data Instances
 
 
19
 
20
+ A sample from this dataset looks as follows:
21
+
22
+ ```json
23
+ [
24
+ {
25
+ "text": "(\ud604\uc7ac \ud638\ud154\uc8fc\uc778 \uc2ec\uc815) \uc54418 \ub09c \ub9c8\ub978\ud558\ub298\uc5d0 \ub0a0\ubcbc\ub77d\ub9de\uace0 \ud638\ud154\ub9dd\ud558\uac8c\uc0dd\uacbc\ub294\ub370 \ub204\uad70 \uacc4\uc18d \ucd94\ubaa8\ubc1b\ub124....",
26
+ "target": 1
27
+ },
28
+ {
29
+ "text": "....\ud55c\uad6d\uc801\uc778 \ubbf8\uc778\uc758 \ub300\ud45c\uc801\uc778 \ubd84...\ub108\ubb34\ub098 \uacf1\uace0\uc544\ub984\ub2e4\uc6b4\ubaa8\uc2b5...\uadf8\ubaa8\uc2b5\ub4a4\uc758 \uc2ac\ud514\uc744 \ubbf8\ucc98 \uc54c\uc9c0\ubabb\ud588\ub124\uc694\u3160",
30
+ "target": 0
31
+ }
32
+ ]
33
+ ```
34
+
35
+ ### Dataset Fields
36
+
37
+ The dataset has the following fields (also called "features"):
38
+
39
+ ```json
40
+ {
41
+ "text": "Value(dtype='string', id=None)",
42
+ "target": "ClassLabel(num_classes=2, names=['Default', 'Spoiled'], id=None)"
43
+ }
44
+ ```
45
+
46
+ ### Dataset Splits
47
+
48
+ This dataset is split into a train and validation split. The split sizes are as follow:
49
 
50
+ | Split name | Num samples |
51
+ | ------------ | ------------------- |
52
+ | train | 7896 |
53
+ | valid | 3770 |