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