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_Relevance_Classification_Mistral-NeMo-Instruct-FT_T1", 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_Relevance_Classification_Mistral-NeMo-Instruct-FT_T1")