Datasets:

Modalities:
Tabular
Text
Formats:
csv
Languages:
Portuguese
ArXiv:
DOI:
Libraries:
Datasets
pandas
License:
FpOliveira commited on
Commit
9cf3d78
1 Parent(s): 5008c87

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -1
README.md CHANGED
@@ -39,7 +39,7 @@ configs:
39
 
40
  # Portuguese Hate Speech Dataset (TuPy)
41
 
42
- The Portuguese hate speech dataset (TuPy) is an annotated corpus designed to facilitate the development of advanced hate speech detection models using machine learning (ML) and natural language processing (NLP) techniques. TuPy is formed by 10000 thousand unpublished annotated tweets collected in 2023.
43
 
44
  This repository is organized as follows:
45
 
@@ -52,5 +52,28 @@ root.
52
  ## Voting process
53
  To generate the binary matrices, we employed a straightforward voting process. Three distinct evaluations were assigned to each document. In cases where a document received two or more identical classifications, the adopted value is set to 1; otherwise, it is marked as 0.Raw data can be checked into the repository in the [project repository](https://github.com/Silly-Machine/TuPy-Dataset)
54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  ## Acknowledge
56
  The TuPy project is the result of the development of Felipe Oliveira's thesis and the work of several collaborators. This project is financed by the Federal University of Rio de Janeiro ([UFRJ](https://ufrj.br/)) and the Alberto Luiz Coimbra Institute for Postgraduate Studies and Research in Engineering ([COPPE](https://coppe.ufrj.br/)).
 
39
 
40
  # Portuguese Hate Speech Dataset (TuPy)
41
 
42
+ The Portuguese hate speech dataset (TuPy) is an annotated corpus designed to facilitate the development of advanced hate speech detection models using machine learning (ML) and natural language processing (NLP) techniques. TuPy is formed by 10000 thousand unpublished, annotated, and anonymous tweets collected in 2023.
43
 
44
  This repository is organized as follows:
45
 
 
52
  ## Voting process
53
  To generate the binary matrices, we employed a straightforward voting process. Three distinct evaluations were assigned to each document. In cases where a document received two or more identical classifications, the adopted value is set to 1; otherwise, it is marked as 0.Raw data can be checked into the repository in the [project repository](https://github.com/Silly-Machine/TuPy-Dataset)
54
 
55
+
56
+ ## Data structure
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
+ ```yml
60
+ {'text': 'e tem pobre de direita imbecil que ainda defendia a manutenção da política de preços atrelada ao dólar link'
61
+ 'aggressive': 1
62
+ 'hate': 1
63
+ 'ageism': 0
64
+ 'aporophobia': 1
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
+
77
+
78
  ## Acknowledge
79
  The TuPy project is the result of the development of Felipe Oliveira's thesis and the work of several collaborators. This project is financed by the Federal University of Rio de Janeiro ([UFRJ](https://ufrj.br/)) and the Alberto Luiz Coimbra Institute for Postgraduate Studies and Research in Engineering ([COPPE](https://coppe.ufrj.br/)).