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