ruanchaves commited on
Commit
630a1d8
1 Parent(s): c3efdf4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -65
README.md CHANGED
@@ -33,77 +33,50 @@ Portuguese
33
 
34
  ### Data Instances
35
 
36
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
 
38
  ### Data Fields
39
 
40
  * instagram_comments: Instagram comments.
41
- * offensive_language: Offensive language classification divided into offensive comments versus non-offensive comments.
42
- * offensiveness_levels: Offensiveness-level classification divided into highly offensive, moderately offensive, and slightly offensive.
43
- * hate_speech: Hate speech classification divided into nine different hate groups: antisemitism, apology for the dictatorship, fatphobia, homophobia, partyism, racism, religious intolerance, sexism, and xenophobia. At last, offensive & no hate speech comments also was classified.
44
-
 
 
 
 
 
 
 
 
 
45
  ### Data Splits
46
 
47
- No standard splits have been provided by the authors.
48
-
49
- ## Dataset Creation
50
-
51
- ### Curation Rationale
52
-
53
- [More Information Needed]
54
-
55
- ### Source Data
56
-
57
- #### Initial Data Collection and Normalization
58
-
59
- [More Information Needed]
60
-
61
- #### Who are the source language producers?
62
-
63
- [More Information Needed]
64
-
65
- ### Annotations
66
-
67
- #### Annotation process
68
-
69
- [More Information Needed]
70
-
71
- #### Who are the annotators?
72
-
73
- [More Information Needed]
74
-
75
- ### Personal and Sensitive Information
76
-
77
- [More Information Needed]
78
-
79
- ## Considerations for Using the Data
80
-
81
- ### Social Impact of Dataset
82
-
83
- [More Information Needed]
84
-
85
- ### Discussion of Biases
86
-
87
- [More Information Needed]
88
-
89
- ### Other Known Limitations
90
-
91
- [More Information Needed]
92
-
93
- ## Additional Information
94
-
95
- ### Dataset Curators
96
-
97
- [More Information Needed]
98
-
99
- ### Licensing Information
100
-
101
- [More Information Needed]
102
 
103
  ### Citation Information
104
 
105
- [More Information Needed]
106
-
107
- ### Contributions
108
-
109
- [More Information Needed]
 
 
 
33
 
34
  ### Data Instances
35
 
36
+ ```
37
+ {'instagram_comments': 'Plano da esquerda foi é e será sempre críticar não nunca teve um plano de governo único plano era como roubar .',
38
+ 'offensive_language': 1,
39
+ 'offensiveness_levels': 2,
40
+ 'antisemitism': False,
41
+ 'apology_for_the_dictatorship': False,
42
+ 'fatphobia': False,
43
+ 'homophobia': False,
44
+ 'partyism': True,
45
+ 'racism': False,
46
+ 'religious_intolerance': False,
47
+ 'sexism': False,
48
+ 'xenophobia': False,
49
+ 'offensive_&_non-hate_speech': False,
50
+ 'non-offensive': False
51
+ }
52
+ ```
53
 
54
  ### Data Fields
55
 
56
  * instagram_comments: Instagram comments.
57
+ * offensive_language: A classification of comments as either offensive (1) or non-offensive (0).
58
+ * offensiveness_levels: A classification of comments based on their level of offensiveness, including highly offensive (3), moderately offensive (2), slightly offensive (1) and non-offensive (0).
59
+ * antisemitism: A classification of whether or not the comment contains antisemitic language.
60
+ * apology_for_the_dictatorship: A classification of whether or not the comment praises the military dictatorship period in Brazil.
61
+ * fatphobia: A classification of whether or not the comment contains language that promotes fatphobia.
62
+ * homophobia: A classification of whether or not the comment contains language that promotes homophobia.
63
+ * partyism: A classification of whether or not the comment contains language that promotes partyism.
64
+ * racism: A classification of whether or not the comment contains racist language.
65
+ * religious_intolerance: A classification of whether or not the comment contains language that promotes religious intolerance.
66
+ * sexism: A classification of whether or not the comment contains sexist language.
67
+ * xenophobia: A classification of whether or not the comment contains language that promotes xenophobia.
68
+ * offensive_&_no-hate_speech: A classification of whether or not the comment is offensive but does not contain hate speech.
69
+
70
  ### Data Splits
71
 
72
+ No standard data splits have been provided by the authors.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
 
74
  ### Citation Information
75
 
76
+ @inproceedings{vargas2022hatebr,
77
+ title={HateBR: A Large Expert Annotated Corpus of Brazilian Instagram Comments for Offensive Language and Hate Speech Detection},
78
+ author={Vargas, Francielle and Carvalho, Isabelle and de G{\'o}es, Fabiana Rodrigues and Pardo, Thiago and Benevenuto, Fabr{\'\i}cio},
79
+ booktitle={Proceedings of the Thirteenth Language Resources and Evaluation Conference},
80
+ pages={7174--7183},
81
+ year={2022}
82
+ }