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