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