guydepauw commited on
Commit
8f6a2ee
1 Parent(s): 5485b89

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +26 -14
README.md CHANGED
@@ -1,18 +1,30 @@
1
- ```
2
- {0: 'HOMOPHOBIA',
3
- 1: 'OTHER',
4
- 2: 'RELIGION',
5
- 3: 'ANTISEMITISM',
6
- 4: 'IDEOLOGY',
7
- 5: 'MIGRANTS',
8
- 6: 'POLITICS',
9
- 7: 'RACISM',
10
- 8: 'MEDIA',
11
- 9: 'ISLAMOPHOBIA',
12
- 10: 'INDIVIDUAL',
13
- 11: 'SEXISM'}
14
- ```
 
 
 
 
 
 
 
 
 
15
 
16
  ---
 
 
17
  license: mit
18
  ---
 
1
+ # Hate Speech Target Classifier for Social Media Content in Dutch
2
+
3
+ A monolingual model for hate speech target classification of social media content in Dutch. The model was trained on 20000 social media posts (youtube, twitter, facebook) and tested on an independent test set of 2000 posts. It is based on the pre-trained language model [distilbert-base-multilingual-cased](https://huggingface.co/distilbert-base-multilingual-cased).
4
+
5
+ ## Tokenizer
6
+
7
+ During training the text was preprocessed using the Distilbert tokenizer. We suggest the same tokenizer is used for inference.
8
+
9
+ ## Model output
10
+
11
+ The model classifies each input into one of four distinct classes:
12
+ * 0 - HOMOPHOBIA
13
+ * 1 - OTHER
14
+ * 2 - RELIGION
15
+ * 3 - ANTISEMITISM
16
+ * 4 - IDEOLOGY
17
+ * 5 - MIGRANTS
18
+ * 6 - POLITICS
19
+ * 7 - RACISM
20
+ * 8 - MEDIA
21
+ * 9 - ISLAMOPHOBIA
22
+ * 10 - INDIVIDUAL
23
+ * 11 - SEXISM
24
 
25
  ---
26
+ language:
27
+ - nl
28
  license: mit
29
  ---
30
+