Datasets:
Tasks:
Text Classification
Formats:
csv
Languages:
Portuguese
Size:
10K - 100K
ArXiv:
Tags:
hate-speech-detection
DOI:
License:
FpOliveira
commited on
Commit
•
b71d8ba
1
Parent(s):
df7764a
Update README.md
Browse files
README.md
CHANGED
@@ -57,20 +57,11 @@ To generate the binary matrices, we employed a straightforward voting process. T
|
|
57 |
A data point comprises the tweet text (a string) along with thirteen categories, each category is assigned a value of 0 when there is an absence of aggressive or hateful content and a value of 1 when such content is present. These values represent the consensus of annotators regarding the presence of aggressive, hate, ageism, aporophobia, body shame, capacitism, lgbtphobia, political, racism, religious intolerance, misogyny, xenophobia, and others. An illustration from the multilabel ToLD-Br dataset is depicted below:
|
58 |
|
59 |
```python
|
60 |
-
{
|
61 |
-
|
62 |
-
hate: 1,
|
63 |
-
|
64 |
-
|
65 |
-
body shame: 0,
|
66 |
-
capacitism: 0,
|
67 |
-
lgbtphobia: 0,
|
68 |
-
political: 1
|
69 |
-
racism : 0,
|
70 |
-
religious intolerance : 0,
|
71 |
-
misogyny : 0,
|
72 |
-
xenophobia : 0,
|
73 |
-
other : 0}
|
74 |
```
|
75 |
|
76 |
|
|
|
57 |
A data point comprises the tweet text (a string) along with thirteen categories, each category is assigned a value of 0 when there is an absence of aggressive or hateful content and a value of 1 when such content is present. These values represent the consensus of annotators regarding the presence of aggressive, hate, ageism, aporophobia, body shame, capacitism, lgbtphobia, political, racism, religious intolerance, misogyny, xenophobia, and others. An illustration from the multilabel ToLD-Br dataset is depicted below:
|
58 |
|
59 |
```python
|
60 |
+
{
|
61 |
+
text: "e tem pobre de direita imbecil que ainda defendia a manutenção da política de preços atrelada ao dólar link",
|
62 |
+
aggressive: 1, hate: 1, ageism: 0, aporophobia: 1, body shame: 0, capacitism: 0, lgbtphobia: 0, political: 1, racism : 0,
|
63 |
+
religious intolerance : 0, misogyny : 0, xenophobia : 0, other : 0
|
64 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
```
|
66 |
|
67 |
|