initial commit 07ffe94
Alexander Arimond commited on
How to use aarimond/test_ES with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="aarimond/test_ES") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("aarimond/test_ES")
model = AutoModelForSequenceClassification.from_pretrained("aarimond/test_ES")