How to use crcb/imp_hatred with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="crcb/imp_hatred")
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("crcb/imp_hatred") model = AutoModelForSequenceClassification.from_pretrained("crcb/imp_hatred")