Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,55 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
task_categories:
|
4 |
+
- text-classification
|
5 |
+
language:
|
6 |
+
- id
|
7 |
+
tags:
|
8 |
+
- Hate Speech Classification
|
9 |
+
- Toxicity Classification
|
10 |
+
- Demographic Information
|
11 |
+
size_categories:
|
12 |
+
- 10K<n<100K
|
13 |
+
configs:
|
14 |
+
- config_name: main
|
15 |
+
data_files:
|
16 |
+
- split: main
|
17 |
+
path:
|
18 |
+
- "indotoxic2024_annotated_data_v2_final.jsonl"
|
19 |
+
- config_name: annotator
|
20 |
+
data_files:
|
21 |
+
- split: annotator
|
22 |
+
path:
|
23 |
+
- "indotoxic2024_annotator_demographic_data_v2_final.jsonl"
|
24 |
+
---
|
25 |
+
|
26 |
+
IndoToxic2024 is an Indonesian dataset collected before and during the 2024 Indonesia presidential election.
|
27 |
+
The data are obtained from social media and are annotated by 29 annotators of diverse backgrounds.
|
28 |
+
The tasks supported by this dataset are text classification tasks around hate speech, toxic, and polarizing content.
|
29 |
+
|
30 |
+
`annotators_id` is a list of strings, containing `annotator_id` of the text's annotator.
|
31 |
+
12700 out of 28448 (44.64%) entries are annotated by more than 1 annotator.
|
32 |
+
|
33 |
+
You can load this dataset by doing the following:
|
34 |
+
```py
|
35 |
+
from datasets import load_dataset
|
36 |
+
|
37 |
+
ds = load_dataset("Exqrch/IndoToxic2024-v2", "main")
|
38 |
+
```
|
39 |
+
|
40 |
+
If you want to load the annotator information, do the following instead:
|
41 |
+
```py
|
42 |
+
from datasets import load_dataset
|
43 |
+
|
44 |
+
ds = load_dataset("Exqrch/IndoToxic2024-v2", "annotator")
|
45 |
+
```
|
46 |
+
# OUTDATED, A new one will be provided soon
|
47 |
+
The table below is an excerpt from the paper, listing the baseline performance of each task:
|
48 |
+
![image/png](https://cdn-uploads.huggingface.co/production/uploads/61e997f66735d3a73e291055/Z-88FC_nxAYgLUUWhwfmQ.png)
|
49 |
+
|
50 |
+
If you use this dataset, please cite:
|
51 |
+
```
|
52 |
+
Susanto, L., Wijanarko, M. I., Pratama, P. A., Hong, T., Idris, I., Aji, A. F., & Wijaya, D.
|
53 |
+
(2024, June 27). IndoToxic2024: A Demographically-Enriched Dataset of Hate Speech and
|
54 |
+
Toxicity Types for Indonesian Language. arXiv.org. https://arxiv.org/abs/2406.19349
|
55 |
+
```
|