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