Transformers How to use michaelrglass/bert-base-uncased-sspt with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="michaelrglass/bert-base-uncased-sspt") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("michaelrglass/bert-base-uncased-sspt")
model = AutoModelForQuestionAnswering.from_pretrained("michaelrglass/bert-base-uncased-sspt")