finiteautomata commited on
Commit
61bce6b
1 Parent(s): 20cb68b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +65 -45
README.md CHANGED
@@ -1,47 +1,67 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: text
5
- dtype: string
6
- - name: article_id
7
- dtype: string
8
- - name: annotators
9
- sequence: string
10
- - name: HATEFUL
11
- sequence: string
12
- - name: CALLS
13
- sequence: string
14
- - name: WOMEN
15
- sequence: string
16
- - name: LGBTI
17
- sequence: string
18
- - name: RACISM
19
- sequence: string
20
- - name: CLASS
21
- sequence: string
22
- - name: POLITICS
23
- sequence: string
24
- - name: DISABLED
25
- sequence: string
26
- - name: APPEARANCE
27
- sequence: string
28
- - name: CRIMINAL
29
- sequence: string
30
- - name: tweet_id
31
- dtype: string
32
- - name: user_id
33
- dtype: string
34
- - name: id
35
- dtype: int64
36
- splits:
37
- - name: train
38
- num_bytes: 14669129
39
- num_examples: 56869
40
- download_size: 5847160
41
- dataset_size: 14669129
42
- configs:
43
- - config_name: default
44
- data_files:
45
- - split: train
46
- path: data/train-*
47
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - es
4
+ pretty_name: contextualized_hate_speech
5
+ task_categories:
6
+ - text-classification
7
+ tags:
8
+ - hate_speech
9
+ size_categories:
10
+ - 10K<n<100K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  ---
12
+ # Contextualized Hate Speech: A dataset of comments in news outlets on Twitter
13
+
14
+ ## Dataset Description
15
+
16
+ - **Homepage:**
17
+ - **Repository:**
18
+ - **Paper**: ["Assessing the impact of contextual information in hate speech detection"](https://arxiv.org/abs/2210.00465), Juan Manuel Pérez, Franco Luque, Demian Zayat, Martín Kondratzky, Agustín Moro, Pablo Serrati, Joaquín Zajac, Paula Miguel, Natalia Debandi, Agustín Gravano, Viviana Cotik
19
+ - **Point of Contact**: jmperez (at) dc uba ar
20
+
21
+ ### Dataset Summary
22
+ ![Graphical representation of the dataset](Dataset%20graph.png)
23
+ This dataset is a collection of tweets that were posted in response to news articles from five specific Argentinean news outlets: Clarín, Infobae, La Nación, Perfil and Crónica, during the COVID-19 pandemic. The comments were analyzed for hate speech across eight different characteristics: against women, racist content, class hatred, against LGBTQ+ individuals, against physical appearance, against people with disabilities, against criminals, and for political reasons. All the data is in Spanish.
24
+
25
+ Each comments is labeled with the following variables
26
+
27
+
28
+
29
+ | Label | Description |
30
+ | :--------- | :---------------------------------------------------------------------- |
31
+ | HATEFUL | Contains hate speech (HS)? |
32
+ | CALLS | If it is hateful, is this message calling to (possibly violent) action? |
33
+ | WOMEN | Is this against women? |
34
+ | LGBTI | Is this against LGBTI people? |
35
+ | RACISM | Is this a racist message? |
36
+ | CLASS | Is this a classist message? |
37
+ | POLITICS | Is this HS due to political ideology? |
38
+ | DISABLED | Is this HS against disabled people? |
39
+ | APPEARANCE | Is this HS against people due to their appearance? (e.g. fatshaming) |
40
+ | CRIMINAL | Is this HS against criminals or people in conflict with law? |
41
+
42
+
43
+
44
+ There is an extra label `CALLS`, which represents whether a comment is a call to violent action or not.
45
+
46
+ For each comment, we have a list of annotators who marked the comment first as HATEFUL, and then the selected categories (one or more).
47
+
48
+ An aggregated version of the dataset can be found at [piuba-bigdata/contextualized_hate_speech](https://huggingface.co/datasets/piuba-bigdata/contextualized_hate_speech/)
49
+ ### Citation Information
50
+
51
+ ```bibtex
52
+ @article{perez2022contextual,
53
+ author = {Pérez, Juan Manuel and Luque, Franco M. and Zayat, Demian and Kondratzky, Martín and Moro, Agustín and Serrati, Pablo Santiago and Zajac, Joaquín and Miguel, Paula and Debandi, Natalia and Gravano, Agustín and Cotik, Viviana},
54
+ journal = {IEEE Access},
55
+ title = {Assessing the Impact of Contextual Information in Hate Speech Detection},
56
+ year = {2023},
57
+ volume = {11},
58
+ number = {},
59
+ pages = {30575-30590},
60
+ doi = {10.1109/ACCESS.2023.3258973}
61
+ }
62
+
63
+ ```
64
+
65
+ ### Contributions
66
+
67
+ [More Information Needed]