This is an official model checkpoint for Asclepius-Llama3-8B (arxiv).
This model is an enhanced version of Asclepius-7B, by replacing the base model with Llama-3 and increasing the max sequence length to 8192.
UPDATE
2024.01.10
Asclepius-R, the variant of Asclepius that trained on MIMIC-III discharge summaries, is now available on Physionet!
This model can perform below 8 clinical NLP tasks, with clincal notes.
Named Entity Recognition
Abbreviation Expansion
Relation Extraction
Temporal Information Extraction
Coreference Resolution
Paraphrasing
Summarization
Question Answering
Direct Use
[More Information Needed]
Downstream Use [optional]
[More Information Needed]
Out-of-Scope Use
ONLY USE THIS MODEL FOR RESEARCH PURPOSE!!
How to Get Started with the Model
python
1prompt ="""You are an intelligent clinical languge model.
2Below is a snippet of patient's discharge summary and a following instruction from healthcare professional.
3Write a response that appropriately completes the instruction.
4The response should provide the accurate answer to the instruction, while being concise.
56[Discharge Summary Begin]
7{note}
8[Discharge Summary End]
910[Instruction Begin]
11{question}
12[Instruction End]
13"""1415from transformers import AutoTokenizer, AutoModelForCausalLM
16tokenizer = AutoTokenizer.from_pretrained("starmpcc/Asclepius-Llama3-8B", use_fast=False)17model = AutoModelForCausalLM.from_pretrained("starmpcc/Asclepius-Llama3-8B")1819note ="This is a sample note"20question ="What is the diagnosis?"2122model_input = prompt.format(note=note, question=question)23input_ids = tokenizer(model_input, return_tensors="pt").input_ids
24output = model.generate(input_ids)25print(tokenizer.decode(output[0]))
Instruction Fine-Tuning (3 epoch): 30h 41m with 4x A100 80G
Citation
BibTeX:
@article{kweon2023publicly,
title={Publicly Shareable Clinical Large Language Model Built on Synthetic Clinical Notes},
author={Kweon, Sunjun and Kim, Junu and Kim, Jiyoun and Im, Sujeong and Cho, Eunbyeol and Bae, Seongsu and Oh, Jungwoo and Lee, Gyubok and Moon, Jong Hak and You, Seng Chan and others},
journal={arXiv preprint arXiv:2309.00237},
year={2023}
}