The Panacea-7B-Chat is a foundation model for clinical trial search, summarization, design, and recruitment. It was equipped with clinical knowledge by being trained on 793,279 clinical trial design documents
worldwide and 1,113,207 clinical study papers. It shows superior performances than various open-sourced LLMs and medical LLMs on clinical trial tasks.
For full details of this model please read our
paper.
Panacea is trained from
Mistral-7B-v0.1. The training of Panacea consists of an alignment step and an instruction-tuning step.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model_id = 'linjc16/Panacea-7B-Chat'
5
6model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.float16, device_map="auto")
7tokenizer = AutoTokenizer.from_pretrained(model_id)
1@article{lin2024panacea,
2 title={Panacea: A foundation model for clinical trial search, summarization, design, and recruitment},
3 author={Lin, Jiacheng and Xu, Hanwen and Wang, Zifeng and Wang, Sheng and Sun, Jimeng},
4 journal={arXiv preprint arXiv:2407.11007},
5 year={2024}
6}