SMMILE: A Benchmark for Multimodal Medical In-Context Learning
Introduction
Multimodal in-context learning (ICL) remains underexplored despite the profound potential it could have in complex application domains such as medicine. Clinicians routinely face a long tail of tasks which they need to learn to solve from few examples, such as considering few relevant previous cases or few differential diagnoses. While MLLMs have shown impressive advances in medical visual question answering (VQA) or multi-turn chatting, their ability to learn multimodal tasks from context is largely unknown.
We introduce SMMILE (Stanford Multimodal Medical In-context Learning Evaluation), the first multimodal medical ICL benchmark. A set of clinical experts curated ICL problems to scrutinize MLLM's ability to learn multimodal tasks at inference time from context.
Updates
- [September 18, 2025] π SMMILE has been accepted to NeurIPS 2025 Datasets and Benchmarks Track! Thanks to all collaborators and the community for your support.
- [June 30, 2024] π₯ We release SMMILE: the first multimodal medical in-context learning benchmark curated by clinical experts. Check out the paper and the code.
Dataset Access
The SMMILE dataset is available on HuggingFace:
from datasets import load_dataset
load_dataset('smmile/SMMILE', token=YOUR_HF_TOKEN)
load_dataset('smmile/SMMILE-plusplus', token=YOUR_HF_TOKEN)
Note: You need to set your HuggingFace token as an environment variable:
export HF_TOKEN=your_token_here
Repository Structure
.
βββ README.md # This file
βββ requirements.txt # Python dependencies to run inference and evaluation
βββ figures/ # Figures and assets
βββ missing_images/ # Manually downloaded images
βββ results/ # Inference results on SMMILE
βββ results_augmented/ # Inference results on SMMILE++
βββ inference_and_evaluation/ # All inference and evaluation scripts
βββ inference_{model}.py # Inference script for Model {model}
βββ evaluate_EM.py # Evaluation of open-ended questions with exact match
βββ evaluate_LLMJudge.py # Evaluation of open-ended questions with LLM-as-a-Judge
βββ stratify.py # Evaluation stratified by problem characteristics (flags)
βββ variance_analysis.py # Bootstrapping to account for uncertainty in models' responses
βββ utils.py # Helper methods, needed for some inference scripts
Installation and Dependencies
This project requires Python 3.10.
Critical Version Requirements
This project requires specific package versions to function correctly:
pip install transformers==4.51.0
pip install accelerate==1.6.0
pip install flash_attn --no-build-isolation
Install all dependencies:
pip install -r requirements.txt
GPU Support
For GPU acceleration:
- NVIDIA GPU users: Install appropriate CUDA drivers separately
- Verify GPU availability:
import torch
print(f"CUDA available: {torch.cuda.is_available()}")
print(f"GPU count: {torch.cuda.device_count()}")
Handling Missing Images
Some images may be missing from the dataset. The inference script will print URLs for manual download. Save these images to the missing_images directory specified with the --image-dir argument.
Running the Benchmark
All inference and evaluation scripts are located in the inference_and_evaluation/ directory. Navigate there first:
cd inference_and_evaluation
Common Arguments
All inference scripts support these common arguments:
--inference_mode:ICLor0-shot--output-dir: Custom output directory (default:../results)--gpu-devices: GPU device selection (e.g.,0,1)--task_format:openormcqa(where applicable)
Optionally, one can specify SMMILE++ as dataset:
--dataset:augmented(argument for SMMILE++, default dataset: SMMILE)
For example,
Qwen Models
Available models: 3B, 7B, 32B, 72B
# Run all models in ICL mode with open-ended questions
python inference_qwen.py --inference_mode ICL --models all --task_format open
# Run specific models with multiple-choice questions
python inference_qwen.py --inference_mode 0-shot --models 7B 32B --task_format mcqa
# Use SMMILE++ (augmented) dataset
python inference_qwen.py --inference_mode ICL --models 72B --dataset augmented
# Combine augmented dataset with MCQA format
python inference_qwen.py --inference_mode ICL --models 3B --task_format mcqa --dataset augmented
Llama 3.2 Vision 90B
# Standard SMMILE dataset
python inference_llama32v.py --inference_mode ICL --task_format open --gpu_devices 0,1
# SMMILE++ dataset with multiple-choice questions
python inference_llama32v.py --inference_mode ICL --task_format mcqa --dataset augmented
MedVLM-R1 Model
# Open-ended questions on SMMILE
python inference_medr1.py --inference_mode ICL --task_format open --gpu_devices 0,1
# Multiple-choice questions on SMMILE++
python inference_medr1.py --inference_mode ICL --task_format mcqa --dataset augmented
MedGemma Models
# Standard inference
python inference_medgemma.py --inference_mode ICL --task_format open
# SMMILE++ with multiple-choice format
python inference_medgemma.py --inference_mode ICL --task_format mcqa --dataset augmented
LLaVA Models, LlaVA-Med
Special Requirements: transformers==4.46.3, torch==2.2.0
Available models: llava_7b, llava_13b, llavanext_7b, llavaonevision_7b, llavaonevision_0.5b
# Open-ended questions (standard script)
python inference_llava.py --inference_mode ICL --model_name llava_7b
python inference_llava.py --inference_mode ICL --model_name llava_7b --dataset augmented
python inference_llava_mcqa.py --inference_mode ICL --model_name llava_7b --task_format mcqa --dataset augmented
# LlaVA-Med
python inference_llavamed.py --inference_mode ICL --model_name llava_7b
python inference_llavamed.py --inference_mode ICL --model_name llava_7b --dataset augmented
python inference_llavamed_mcqa.py --inference_mode ICL --model_name llava_7b --task_format mcqa --dataset augmented
API-Based Models
Claude Models
# Set API key
export ANTHROPIC_API_KEY="your-key-here"
# Run inference on SMMILE
python inference_anthropic.py --inference_mode ICL --task_format open
# Run on SMMILE++ with multiple-choice questions
python inference_anthropic.py --inference_mode ICL --task_format mcqa --dataset augmented
OpenAI GPT-4o Models
# Set API credentials
export AZURE_OPENAI_API_KEY="your-key-here"
export AZURE_OPENAI_ENDPOINT="your-endpoint-here"
export AZURE_OPENAI_API_VERSION="2024-05-01-preview"
# Run inference on SMMILE
python inference_openai.py --model gpt-4o --inference_mode ICL --task_format open
# Run on SMMILE++ with multiple-choice questions
python inference_openai.py --model gpt-4o --inference_mode ICL --task_format mcqa --dataset augmented
Baseline Models
Llama 3.3 Text-Only Baseline
# Install and setup ollama
curl -fsSL https://ollama.com/install.sh | sh
ollama serve
ollama pull llama3.3
pip install ollama
# Run inference
python inference_llama33textonly.py --inference_mode ICL
python inference_llama33textonly_mcqa.py --inference_mode ICL --task_format mcqa --dataset augmented
Statistical Baselines
# Random or majority baselines
python inference_baselines.py --baseline random --inference_mode ICL --task_format open
python inference_baselines.py --baseline majority --inference_mode ICL --task_format mcqa --dataset augmented
Evaluation
Note: Make sure you're in the inference_and_evaluation/ directory before running evaluation commands:
cd inference_and_evaluation
Exact Match Evaluation
# Evaluate all models with flexible matching
python evaluate_EM.py ../results
# Strict matching or specific model
python evaluate_EM.py ../results --strict-match --model qwen72B --inference-mode ICL
LLM-as-a-Judge Evaluation
Requirements: ollama with Llama 3.3 (see text-only baseline setup above)
# Evaluate all models
python evaluate_LLMJudge.py ../results
# Visualize existing results without re-evaluation
python evaluate_LLMJudge.py ../results --visualize-only
Stratified Analysis
# Analyze performance by problem characteristics
python stratify.py ../results --eval_type em --model qwen72B
python stratify.py ../results --eval_type llm --inference-mode ICL
Statistical Variance Analysis
# Full statistical analysis with bootstrap confidence intervals
python variance_analysis.py ../results
# Generate LaTeX table
python variance_analysis.py ../results --generate_table --latex_output results_table.tex
License
This work is licensed under a Creative Commons Attribution 4.0 International License.
Citation
If you find this repository useful for your work, please cite the following paper:
@inproceedings{
rieff2025smmile,
title={{SMMILE}: An expert-driven benchmark for multimodal medical in-context learning},
author={Melanie Rieff and Maya Varma and Ossian Rabow and Subathra Adithan and Julie Kim and Ken Chang and Hannah Lee and Nidhi Rohatgi and Christian Bluethgen and Mohamed S Muneer and Jean-Benoit Delbrouck and Michael Moor},
booktitle={The Thirty-ninth Annual Conference on Neural Information Processing Systems Datasets and Benchmarks Track},
year={2025},
url={https://openreview.net/forum?id=ZONgHRsAbl}
}
Acknowledgments
We thank the clinical experts who contributed to curating the benchmark dataset.