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