Eladio/emrqa-msquad
Viewer • Updated • 164k • 457 • 9
How to use jon-t/Bio_ClinicalBERT_QA with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("question-answering", model="jon-t/Bio_ClinicalBERT_QA") # Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("jon-t/Bio_ClinicalBERT_QA")
model = AutoModelForQuestionAnswering.from_pretrained("jon-t/Bio_ClinicalBERT_QA")# Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("jon-t/Bio_ClinicalBERT_QA")
model = AutoModelForQuestionAnswering.from_pretrained("jon-t/Bio_ClinicalBERT_QA")This model is a fine-tuned version of emilyalsentzer/Bio_ClinicalBERT on the Eladio/emrqa-msquad and the squad_v2 datasets.
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
Base model
emilyalsentzer/Bio_ClinicalBERT
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="jon-t/Bio_ClinicalBERT_QA")