Added onnx c626f3f
byQuexo commited on
How to use ilert/SoQbert with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="ilert/SoQbert") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("ilert/SoQbert")
model = AutoModelForSequenceClassification.from_pretrained("ilert/SoQbert")