ridiey commited on
Commit
c2a86eb
·
verified ·
1 Parent(s): 8748549

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -43
README.md CHANGED
@@ -1,43 +1,39 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: text_id
5
- dtype: string
6
- - name: annotators_id
7
- dtype: string
8
- - name: text
9
- dtype: string
10
- - name: initial_paragraph
11
- dtype: string
12
- - name: topic
13
- dtype: string
14
- - name: is_noise_or_spam_text
15
- dtype: int64
16
- - name: related_to_election_2024
17
- dtype: int64
18
- - name: toxicity
19
- dtype: int64
20
- - name: polarized
21
- dtype: int64
22
- - name: profanity_obscenity
23
- dtype: int64
24
- - name: threat_incitement_to_violence
25
- dtype: int64
26
- - name: insults
27
- dtype: int64
28
- - name: identity_attack
29
- dtype: int64
30
- - name: sexually_explicit
31
- dtype: int64
32
- splits:
33
- - name: train
34
- num_bytes: 10659824
35
- num_examples: 23551
36
- download_size: 5024921
37
- dataset_size: 10659824
38
- configs:
39
- - config_name: default
40
- data_files:
41
- - split: train
42
- path: data/train-*
43
- ---
 
1
+ ---
2
+ dataset_name: IndoDiscourse
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - id
7
+ size: 23_552 rows
8
+ license: apache-2.0
9
+ ---
10
+
11
+ # IndoDiscourse Dataset 🇮🇩
12
+
13
+ Dataset ini berisi komentar dan postingan diskursus publik Indonesia yang telah dianotasi berdasarkan beberapa kategori, termasuk:
14
+
15
+ - Toxicity
16
+ - Profanity / Obscenity
17
+ - Threat / Incitement to Violence
18
+ - Identity Attack
19
+ - Hate / Polarization
20
+ - SARA relevance
21
+ - Sexually Explicit
22
+
23
+ ## 📊 Struktur Kolom
24
+
25
+ | Column | Type | Description |
26
+ | ------------------- | ------ | ------------- |
27
+ | text_id | string | Unique ID |
28
+ | text | string | Original text |
29
+ | topic | string | Topic label |
30
+ | toxicity | int | 0/1 label |
31
+ | profanity_obscenity | int | 0/1 |
32
+ | insults | int | 0/1 |
33
+ | identity_attack | int | 0/1 |
34
+ | sexually_explicit | int | 0/1 |
35
+
36
+ Total rows: **23,552**
37
+ Delimiter: `;`
38
+
39
+ ---