|
|
|
# Classification Model using PLEAD NER to enrich hate speech on Implicit Hate Corpus (IHC) dataset |
|
|
|
This model is fine-tuned for Sequence Classification specifically enriched with intent type spans for hate speech classification task. |
|
|
|
## Usage |
|
|
|
```python |
|
from transformers import AutoModelForSequenceClassification, AutoTokenizer |
|
|
|
model = AutoModelForSequenceClassification.from_pretrained("afcarvallo/hate_speech_classification_ihc_plead") |
|
tokenizer = AutoTokenizer.from_pretrained('GroNLP/hateBERT') |
|
``` |
|
|
|
|