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