# Classification Model using PLEAD NER to enrich hate speech on SBIC-h 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_sbic_plead") tokenizer = AutoTokenizer.from_pretrained('GroNLP/hateBERT') ```