Model name in the manuscript: Clin-REACT 8B Base model:meta-llama/Llama-3.1-8B-Instruct Release format: merged full-parameter checkpoint
Built with Llama.
Clin-REACT is a family of large language models fine-tuned for clinical reasoning using the ICU-REACT framework. The models are designed to reason over clinically relevant information and produce responses for tasks spanning ICU decision-making and broader clinical-reasoning benchmarks.
This repository contains the merged, self-contained checkpoint. The LoRA adapter used during supervised fine-tuning has been merged into the corresponding base-model weights for distribution and inference.
Benchmark results
Clin-REACT 8B is compared with its Llama 3.1 8B Instruct backbone and selected open general-purpose and medical models of similar scale.
Scores below are the mean primary benchmark scores, reported as percentages. Higher is better. The macro average is the unweighted mean of the five benchmark primary scores. Bold indicates the best result within the comparison set shown for each benchmark.
The benchmarks contain 71 ICU-REACT cases, 174 SCT-Bench cases, 72 ER-Reason cases, 1,338 MedRBench cases, and 934 VivaBench cases. Because the benchmarks use different task formulations and primary scoring procedures, individual benchmark scores should primarily be interpreted within each benchmark.
Model
ICU-REACT (n=71)
SCT-Bench (n=174)
ER-Reason (n=72)
MedRBench (n=1338)
VivaBench (n=934)
Macro avg.
Clin-REACT 8B
42.4
56.3
43.5
34.9
24.0
40.2
Llama 3.1 8B Instruct
29.9
45.3
36.0
38.9
21.3
34.3
Gemma 4 E4B IT
32.9
56.1
45.2
41.2
23.0
39.7
Meditron 3 8B
25.6
52.6
33.4
33.0
11.5
31.2
HuatuoGPT-o1-8B
28.8
45.8
36.7
13.5
14.7
27.9
Installation
pip install -U torch transformers accelerate
Load and use the model
python
1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
34MODEL_ID ="macontreras98/Llama-Clin-REACT-8B"56tokenizer = AutoTokenizer.from_pretrained(MODEL_ID)7model = AutoModelForCausalLM.from_pretrained(8 MODEL_ID,9 torch_dtype=torch.bfloat16,10 device_map="auto",11)1213# Example ICU-REACT-style clinical reasoning sample14messages =[15{16"role":"system",17"content":(18"You are an ICU clinician. Write one coherent paragraph explaining "19"which variables are most relevant to the decision and why."20),21},22{23"role":"user",24"content":(25"Patient context: 75-year-old female ICU patient with recurrent high "26"fevers and no clear infection source.\n\n"27"Decision question: Is the frequency and severity of fever in this "28"patient worrisome for ongoing infection or non-infectious etiology?"29),30},31]3233inputs = tokenizer.apply_chat_template(34 messages,35 add_generation_prompt=True,36 tokenize=True,37 return_dict=True,38 return_tensors="pt",39).to(model.device)4041with torch.inference_mode():42 outputs = model.generate(43**inputs,44 max_new_tokens=512,45 do_sample=False,46)4748generated_tokens = outputs[0][inputs["input_ids"].shape[-1]:]49response = tokenizer.decode(50 generated_tokens,51 skip_special_tokens=True,52)5354print(response)
For exact benchmark reproduction, use the same prompting, chat template, preprocessing, and decoding configuration used in the ICU-REACT evaluation pipeline.
Intended use and limitations
Clin-REACT is released for research on clinical reasoning and medical AI. It is not a medical device and should not be used as a substitute for professional clinical judgment, diagnosis, treatment decisions, or other autonomous patient-care decisions.
Benchmark performance does not establish clinical safety, prospective effectiveness, or suitability for deployment. Users are responsible for evaluating the model for their own setting and for complying with applicable privacy, security, institutional, and regulatory requirements.
License
This model is a derivative of Llama 3.1 8B Instruct and is distributed subject to the Llama 3.1 Community License Agreement and the corresponding Acceptable Use Policy. See the LICENSE and NOTICE files distributed with this repository.
The required attribution notice for the Llama materials should be retained in the repository NOTICE file.
Citation
If you use Clin-REACT in your research, please cite the associated ICU-REACT / Clin-REACT manuscript.
bibtex
1@article{contreras2026icureact,
2 title = {Teaching LLMs How ICU Physicians Approach Clinical Reasoning Through OMOP-Aligned Retrieval Improves Reasoning Across Clinical Domains},
3 author = {Contreras, Miguel and Siegel, Scott and Nerella, Subhash and Sena, Jessica and Zhang, Jiaqing and
4 Sun, Heng and Akkaladevi, Hruday Tej and Lu, Peiyu and Rosen, Jordan and Kapoor, Sumit and
5 Desaraju, Sasank and Thompson, Grace R. and Purcell, Jacob and Petrauskis, Michael and
6 Hong, Philip KW and Brennan, Meghan and Chrabaszcz, Sarah and Smith, Tierra and Ren, Ronnie and
7 Kabbash, Michel S. and Haziroglu, Ceyhun and Patel, Rushi and Gomez, Gabriel and Chaiklin, Charlotte and
8 Leung, Randy and John, Kenneth N. and Wiggins, Whitman and Kayser, Philip and Bird, Vincent and
9 Bruzzone, Maria and Loftus, Tyler J. and Bihorac, Azra and Rashidi, Parisa},
10 journal = {arXiv preprint arXiv:2608.22622},
11 year = {2026},
12 doi = {10.48550/arXiv.2608.22622},
13 url = {https://arxiv.org/abs/2608.22622}
14}