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