Skip to main content

MedGemma 1.5 Technical Report

AuthorsAndrew Sellergren et al.
Year2026
HF Upvotes13
arXiv2604.05081
PDFDownload
HF PageView on Hugging Face

Abstract

We introduce MedGemma 1.5 4B, the latest model in the MedGemma collection. MedGemma 1.5 expands on MedGemma 1 by integrating additional capabilities: high-dimensional medical imaging (CT/MRI volumes and histopathology whole slide images), anatomical localization via bounding boxes, multi-timepoint chest X-ray analysis, and improved medical document understanding (lab reports, electronic health records). We detail the innovations required to enable these modalities within a single architecture, including new training data, long-context 3D volume slicing, and whole-slide pathology sampling. Compared to MedGemma 1 4B, MedGemma 1.5 4B demonstrates significant gains in these new areas, improving 3D MRI condition classification accuracy by 11% and 3D CT condition classification by 3% (absolute improvements). In whole slide pathology imaging, MedGemma 1.5 4B achieves a 47% macro F1 gain. Additionally, it improves anatomical localization with a 35% increase in Intersection over Union on chest X-rays and achieves a 4% macro accuracy for longitudinal (multi-timepoint) chest x-ray analysis. Beyond its improved multimodal performance over MedGemma 1, MedGemma 1.5 improves on text-based clinical knowledge and reasoning, improving by 5% on MedQA accuracy and 22% on EHRQA accuracy. It also achieves an average of 18% macro F1 on 4 different lab report information extraction datasets (EHR Datasets 2, 3, 4, and Mendeley Clinical Laboratory Test Reports). Taken together, MedGemma 1.5 serves as a robust, open resource for the community, designed as an improved foundation on which developers can create the next generation of medical AI systems. Resources and tutorials for building upon MedGemma 1.5 can be found at https://goo.gle/MedGemma.


Engineering Breakdown

Plain English

MedGemma 1.5 4B is an updated medical AI model that extends the previous version to handle multiple complex medical imaging modalities—CT/MRI 3D volumes, whole-slide pathology images, multi-timepoint chest X-rays, and clinical documents like EHRs and lab reports—all within a single 4 billion parameter architecture. The key innovation is showing how to adapt a compact language model to process high-dimensional medical data efficiently without requiring separate specialized models for each modality. Results show meaningful improvements: 11% absolute accuracy gain on 3D MRI classification and 3% on CT classification compared to the original MedGemma 1. This demonstrates that a unified model can achieve competitive performance across diverse medical tasks while remaining small enough for practical deployment.

Core Technical Contribution

The core technical novelty is a unified multimodal architecture that handles both sequential text and high-dimensional spatial data through adaptive input representation and processing strategies tailored to each modality's characteristics. Rather than building separate pathways or models for imaging versus documents, the authors developed techniques for 3D volume slicing for long-context processing, intelligent sampling strategies for massive whole-slide images (which can be gigapixels), and bounding-box spatial localization—all feeding into a single compact transformer backbone. This contrasts with prior work that typically required separate vision encoders for each imaging type or much larger models to achieve comparable multimodal capability. The innovation is fundamentally about architectural efficiency: proving you can compress medical multimodality into 4B parameters by being smart about how you represent and sample high-dimensional inputs.

How It Works

The model ingests medical data through modality-specific preprocessors that convert diverse inputs into token sequences compatible with the base transformer. For 3D medical volumes (CT/MRI), the system slices them into 2D frames and applies a sliding-window context mechanism to handle sequences longer than typical transformer context windows—this allows the model to reason about volumetric relationships without loading entire 3D arrays at once. For whole-slide pathology images (often 100,000+ × 100,000 pixels), a learned sampling strategy identifies clinically relevant regions and patches rather than attempting to process the entire image, reducing compute while preserving diagnostic signal. Anatomical bounding boxes are encoded as special tokens within the sequence, and multi-timepoint chest X-rays are processed as image sequences with temporal positional embeddings. All modalities converge into a shared embedding space and flow through standard transformer layers, with the final output generating text predictions (diagnoses, findings, structured extractions from documents). The training objective combines language modeling loss on documents with contrastive or classification losses on imaging tasks.

Production Impact

This model directly addresses a critical pain point in clinical AI deployment: the need to integrate multiple specialized models for different medical data types, which creates maintenance overhead, latency penalties, and coordination complexity. A production system using MedGemma 1.5 could replace separate CT, MRI, pathology, and document understanding models with a single inference endpoint, cutting model serving infrastructure costs and reducing feature engineering for data alignment. The 4B parameter size is critical—it fits on a single consumer GPU (16GB VRAM) or can run on CPU-only systems in resource-constrained clinics, enabling on-premise deployment without cloud dependency. Trade-offs include: the 3D volume slicing approach introduces latency overhead compared to direct 3D convolution (multiple forward passes per volume), the whole-slide sampling strategy may miss rare findings in undersampled regions if the learned sampling doesn't attend to them, and the unified architecture means a single model quality regression impacts all downstream tasks. Integration requires careful pipeline construction to handle modality-specific preprocessing and output parsing for clinical workflows.

Limitations and When Not to Use This

The paper does not address real-time inference constraints—processing multi-timepoint imaging with sliding-window mechanisms could introduce unacceptable latency for time-critical clinical scenarios like intraoperative guidance. The 3% improvement on CT classification, while meaningful, is modest and suggests the unified approach may sacrifice some modality-specific performance compared to optimized single-purpose models; the paper doesn't characterize when this trade-off becomes unacceptable. Whole-slide sampling via learned strategies is inherently fallible—if the model fails to sample a region containing rare pathology, it will miss the diagnosis, and the paper doesn't thoroughly analyze failure modes or provide confidence estimates for sampling coverage. The report lacks critical details on data composition, class imbalance handling, and generalization across different scanner manufacturers and imaging protocols, which are essential for deployment validation. Long-context processing through slicing may struggle with volumetric relationships that require true 3D spatial reasoning (e.g., detecting subtle connections between distant tumor regions), potentially limiting applications in complex surgical planning.

Research Context

MedGemma 1.5 builds directly on the original MedGemma 1 work, which pioneered adapting compact language models to medical tasks through domain-specific pretraining. It extends the broader movement toward multimodal medical AI (following work like Med-PaLM M and LLaVA-Med) by showing that effective multimodality doesn't require massive scale—careful architectural design and modality-specific input handling can achieve competitive results in a 4B parameter budget. The work sits within the efficiency frontier of medical AI, competing with research on knowledge distillation and parameter-efficient adaptation methods, while advancing the practical feasibility of deploying comprehensive medical AI systems in resource-constrained settings. This positions MedGemma 1.5 as a reference point for future work on efficient medical multimodal models and opens questions about scaling these techniques to larger parameter counts or additional modalities (ultrasound, genomics, sensor data).


:::tip Subscribe Get weekly breakdowns of papers like this in AI Letters - the newsletter for engineers building production AI systems. :::


Back to Research Lab → · Subscribe to AI Letters →

© 2026 EngineersOfAI. All rights reserved.