Text Classification
Transformers
PyTorch
English
deberta
hate-speech-detection
Inference Endpoints
HannahRoseKirk commited on
Commit
1355716
β€’
1 Parent(s): affeb8a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -1
README.md CHANGED
@@ -15,7 +15,17 @@ This model is a fine-tuned version of the [DeBERTa base model](https://huggingfa
15
  The intended use of the model is to classify English-language, emoji-containing, short-form text documents as a binary task: non-hateful vs hateful. The model has demonstrated strengths compared to commercial and academic models on classifying emoji-based hate, but is also a strong classifier of text-only hate. Because the model was trained on synthetic, adversarially-generated data, it may have some weaknesses when it comes to empirical emoji-based hate 'in-the-wild'.
16
 
17
  ## How to use
18
- Add
 
 
 
 
 
 
 
 
 
 
19
 
20
  ### Training data
21
  The model was trained on:
 
15
  The intended use of the model is to classify English-language, emoji-containing, short-form text documents as a binary task: non-hateful vs hateful. The model has demonstrated strengths compared to commercial and academic models on classifying emoji-based hate, but is also a strong classifier of text-only hate. Because the model was trained on synthetic, adversarially-generated data, it may have some weaknesses when it comes to empirical emoji-based hate 'in-the-wild'.
16
 
17
  ## How to use
18
+ The model can be used with pipeline:
19
+ ```python
20
+ from transformers import pipeline
21
+ classifier = pipeline("text-classification",model='HannahRoseKirk/Hatemoji', return_all_scores=True)
22
+ prediction = classifier("I πŸ’œπŸ’™πŸ’š emoji 😍", )
23
+ print(prediction)
24
+ """
25
+ Output
26
+ [[{'label': 'LABEL_0', 'score': 0.9999157190322876}, {'label': 'LABEL_1', 'score': 8.425049600191414e-05}]]
27
+ """
28
+ ```
29
 
30
  ### Training data
31
  The model was trained on: