Question Answering on Patient Medical Records with Private Fine-Tuned LLMs
Paper • 2501.13687 • Published • 9
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("genloop/FHIR_QnA_Query-Based_Resource_Relevance_Classification_T1_complete", dtype="auto")This repository contains the model introduced in the paper Question Answering on Patient Medical Records with Private Fine-Tuned LLMs.
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="genloop/FHIR_QnA_Query-Based_Resource_Relevance_Classification_T1_complete")