Home

Awesome

<img width=40% src="figures/meditron_LOGO.png" alt="MediTron logo" title="Meditron-logo">

Meditron is a suite of open-source medical Large Language Models (LLMs).

We release Meditron-7B and Meditron-70B, which are adapted to the medical domain from Llama-2 through continued pretraining on a comprehensively curated medical corpus, including selected PubMed papers and abstracts, a new dataset of internationally-recognized medical guidelines, and a general domain corpus.

Meditron-70B, finetuned on relevant data, outperforms Llama-2-70B, GPT-3.5 and Flan-PaLM on multiple medical reasoning tasks.

<details open> <summary><strong>Advisory Notice</strong></summary> <blockquote style="background-color: #f2f2f2; padding: 10px; margin: 0 0 10px; border-left: 5px solid #ddd;"> While Meditron is designed to encode medical knowledge from sources of high-quality evidence, it is not yet adapted to deliver this knowledge appropriately, safely, or within professional actionable constraints. We recommend against using Meditron in medical applications without extensive use-case alignment, as well as additional testing, specifically including randomized controlled trials in real-world practice settings. </blockquote> </details>

Model Details

How to use

You can load the Meditron model directly from the HuggingFace model hub as follows:

from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("epfl-llm/meditron-70b")
model = AutoModelForCausalLM.from_pretrained("epfl-llm/meditron-70b")
<img width=100% src="figures/meditron-pipeline.png" alt="Pipeline" title="Pipeline">

Medical Training Data

We release code to download and pre-process the data used to train Meditron.

MediTron’s domain-adaptive pre-training corpus GAP-Replay combines 48.1B tokens from four corpora:

Download instructions

You can download and pre-process the entire GAP-Replay corpus by running ./download.sh in the gap-replay folder.

You can download 36K open-access articles from our Guidelines corpus from the HuggingFace datasets hub.

from datasets import load_dataset

dataset = load_dataset("epfl-llm/guidelines")

You can scrape and clean all 46K guidelines (including closed-access sources) by running ./download.sh in the guidelines folder.

More details can be found in the GAP-Replay documentation.

Training Procedure

We used the Megatron-LLM distributed training library, a derivative of Nvidia's Megatron LM project, to optimize training efficiency. The hardware consists of 16 nodes of 8x NVIDIA A100 (80GB) SXM GPUs connected by NVLink and NVSwitch with a single Nvidia ConnectX-6 DX network card and equipped with 2 x AMD EPYC 7543 32-Core Processors and 512 GB of RAM. The nodes are connected via RDMA over Converged Ethernet.

Our three-way parallelism scheme uses the following:

Training Hyperparameters (7B)

bf16true
lr3e-4
eps1e-5
betas[0.9, 0.95]
clip_grad1
weight decay0.1
DP size16
TP size4
PP size1
seq length2048
lr schedulercosine
min lr1e-6
warmup iteration2000
micro batch size10
global batch size1600

Training Hyperparameters (70B)

bf16true
lr1.5e-4
eps1e-5
betas[0.9, 0.95]
clip_grad1
weight decay0.1
DP size2
TP size8
PP size8
seq length4096
lr schedulercosine
min lr1e-6
warmup iteration2000
micro batch size2
global batch size512

You can see the script we used to pretrain our models through Megatron-LLM here: finetune.sh

Supervised Finetuning

We again used the Megatron-LLM distributed training library for supervised finetuning (sinlge-node and multi-node). We made a file, sft.py, that automatically handles the tokenization and finetuning process through Megatron-LLM. To start a multi-node finetuning process, here is an example:

cd finetuning
python sft.py \
    --checkpoint=baseline \
    --size=70 \
    --run_name=cotmedqa \
    --data /pure-mlo-scratch/zechen/meditron/benchmarks/ft_preprocessed/medqa_cot_train.jsonl \
    --val /pure-mlo-scratch/zechen/meditron/benchmarks/ft_preprocessed/medqa_cot_validation.jsonl \
    --micro_batch=4
    --nodes=4 \
    --addr=<RANK0_HOST_NAME> \
    --save_interval=200 \
    --pp=4 \
    --seq 4096 \
    --rank=<CURRENT_RANK>

Run the above line of code at node rank-0, rank-1, rank-2, and rank3 to start a 4-node finetuning process.

Important!: Make sure to have the proper paths defined in sft.py and finetune_sft.sh.

Finetuning Hyperparameters

bf16true
lr2e-5
eps1e-5
betas[0.9, 0.95]
clip_grad1
weight decay0.1
DP size16
TP size4
PP size1
seq length2048 or 4096
lr schedulercosine
min lr2e-6
warmup ratio0.1
added tokens[<|im_start|>, <|im_end|>]

Uses

Meditron-70B is being made available for further testing and assessment as an AI assistant to enhance clinical decision-making and democratize access to an LLM for healthcare use. Potential use cases may include but are not limited to:

It is possible to use this model to generate text, which is useful for experimentation and understanding its capabilities. It should not be used directly for production or work that may impact people.

We do not recommend using this model for natural language generation in a production environment, finetuned or otherwise.

Downstream Use

Meditron-70B and Meditron-7B are both foundation models without finetuning or instruction-tuning. They can be finetuned, instruction-tuned, or RLHF-tuned for specific downstream tasks and applications. There are two ways we have used this model for downstream question-answering tasks.

  1. We apply in-context learning with k demonstrations (3 or 5 in our paper) added to the prompt.
  2. We finetuned the models for downstream question-answering tasks using specific training sets.

We encourage and look forward to the adaption of the base model for more diverse applications.

If you want a more interactive way to prompt the model, we recommend using a high-throughput and memory-efficient inference engine with a UI that supports chat and text generation.

You can check out our deployment guide below, where we used FastChat with vLLM. We collected generations for our qualitative analysis through an interactive UI platform, BetterChatGPT. Here is the prompt format we used as an example:

<img width=70% src="figures/prompt_example.png" alt="qualitative-analysis-prompt" title="Qualitative Analysis Prompt">

Medical Benchmark Inference & Evaluation

Requirements

Before you start, please install the necessary packages:

vllm >= 0.2.1
transformers >= 4.34.0
datasets >= 2.14.6
torch >= 2.0.1

For detailed instructions to run inference and evaluation with medical benchmarks, please read the documentation here inference & evaluation instructions.

Model Deployment

For detailed instructions to deploy meditron models and have an interactive chat session, please read the documentation here Model Deployment

Citation

If you use this software or our paper, please cite them:

<pre> @misc{chen2023meditron70b, title={MEDITRON-70B: Scaling Medical Pretraining for Large Language Models}, author={Zeming Chen and Alejandro Hernández-Cano and Angelika Romanou and Antoine Bonnet and Kyle Matoba and Francesco Salvi and Matteo Pagliardini and Simin Fan and Andreas Köpf and Amirkeivan Mohtashami and Alexandre Sallinen and Alireza Sakhaeirad and Vinitra Swamy and Igor Krawczuk and Deniz Bayazit and Axel Marmet and Syrielle Montariol and Mary-Anne Hartley and Martin Jaggi and Antoine Bosselut}, year={2023}, eprint={2311.16079}, archivePrefix={arXiv}, primaryClass={cs.CL} } @software{epfmedtrn, author = {Zeming Chen and Alejandro Hernández-Cano and Angelika Romanou and Antoine Bonnet and Kyle Matoba and Francesco Salvi and Matteo Pagliardini and Simin Fan and Andreas Köpf and Amirkeivan Mohtashami and Alexandre Sallinen and Alireza Sakhaeirad and Vinitra Swamy and Igor Krawczuk and Deniz Bayazit and Axel Marmet and Syrielle Montariol and Mary-Anne Hartley and Martin Jaggi and Antoine Bosselut}, title = {MediTron-70B: Scaling Medical Pretraining for Large Language Models}, month = November, year = 2023, url = {https://github.com/epfLLM/meditron} } </pre>