K-COMP: Retrieval-Augmented Medical Domain Question Answering With Knowledge-Injected Compressor
Paper • 2501.13567 • Published • 1
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("jeonghuncho/KCOMP-BioASQ")
model = AutoModelForCausalLM.from_pretrained("jeonghuncho/KCOMP-BioASQ")BibTeX:
@misc{cho2025kcompretrievalaugmentedmedicaldomain,
title={K-COMP: Retrieval-Augmented Medical Domain Question Answering With Knowledge-Injected Compressor},
author={Jeonghun Cho and Gary Geunbae Lee},
year={2025},
eprint={2501.13567},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2501.13567},
}
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="jeonghuncho/KCOMP-BioASQ")