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