📋 Model Description
base_model:
- google/medgemma-1.5-4b-it
- medical
- unsloth
- radiology
- clinical-reasoning
- dermatology
- pathology
- ophthalmology
- chest-x-ray
Unsloth Dynamic 2.0 achieves superior accuracy & outperforms other leading quants.
MedGemma 1.5 model card
Note: This card describes MedGemma 1.5, which is only available as a 4B
multimodal instruction-tuned variant. For information on MedGemma 1 variants,
refer to the MedGemma 1 model
card.
Model documentation: MedGemma
Resources:
- Model on Google Cloud Model Garden: MedGemma
- Models on Hugging Face: Collection
- Concept applications built using MedGemma: Collection
- GitHub repository
- Tutorial notebooks
- License: The use of MedGemma is governed by the Health AI Developer
MedGemma's training may make it more sensitive to the specific prompt used than
Gemma 3.
When adapting MedGemma developer should consider the following:
- License: The use of MedGemma is governed by the Health AI Developer
Author: Google
Model information
This section describes the specifications and recommended use of the MedGemma
model.
Description
MedGemma is a collection of Gemma 3
variants that are trained for performance on medical text and image
comprehension. Developers can use MedGemma to accelerate building
healthcare-based AI applications.
MedGemma 1.5 4B is an updated version of the MedGemma 1 4B model.
MedGemma 1.5 4B expands support for several new medical imaging and data
processing applications, including:
- High-dimensional medical imaging: Interpretation of three-dimensional
- Whole-slide histopathology imaging (WSI): Simultaneous interpretation of
- Longitudinal medical imaging: Interpretation of chest X-rays in the
- Anatomical localization: Bounding box–based localization of anatomical
- Medical document understanding: Extraction of structured data, such as
- Electronic Health Record (EHR) understanding: Interpretation of
In addition to these new features, MedGemma 1.5 4B delivers improved accuracy on
medical text reasoning and modest improvement on standard 2D image
interpretation compared to MedGemma 1 4B.
MedGemma utilizes a SigLIP image encoder
that has been specifically pre-trained on a variety of de-identified medical
data, including chest X-rays, dermatology images, ophthalmology images, and
histopathology slides. The LLM component is trained on a diverse set of medical
data, including medical text, medical question-answer pairs, FHIR-based
electronic health record data, 2D and 3D radiology images, histopathology
images, ophthalmology images, dermatology images, and lab reports for document
understanding.
MedGemma 1.5 4B has been evaluated on a range of clinically relevant benchmarks
to illustrate its baseline performance. These evaluations are based on both open
benchmark datasets and internally curated datasets. Developers are expected to
fine-tune MedGemma for improved performance on their use case. Consult the
Intended use section
for more details.
MedGemma is optimized for medical applications that involve a text generation
component. For medical image-based applications that do not involve text
generation, such as data-efficient classification, zero-shot classification, or
content-based or semantic image retrieval, the MedSigLIP image
encoder
is recommended. MedSigLIP is based on the same image encoder that powers
MedGemma 1 and MedGemma 1.5.
How to use
The following are some example code snippets to help you quickly get started
running the model locally on GPU.
Note: If you need to use the model at scale, we recommend creating a production
version using Model
Garden.
Model Garden provides various deployment options and tutorial notebooks,
including specialized server-side image processing options for efficiently
handling large medical images: Whole Slide Digital Pathology (WSI) or volumetric
scans (CT/MRI) stored in Cloud DICOM
Store or
Google Cloud Storage (GCS).
First, install the Transformers library. Gemma 3 is supported starting from
transformers 4.50.0.
$ pip install -U transformers
Next, use either the pipeline wrapper or the transformer API directly to send a
chest X-ray image and a question to the model.
Note that CT, MRI and whole-slide histopathology images require some
pre-processing; see the
CT
and
WSI
notebook for examples.
Run model with the pipeline API
from transformers import pipeline
from PIL import Image
import requests
import torch
pipe = pipeline(
"image-text-to-text",
model="google/medgemma-1.5-4b-it",
torch_dtype=torch.bfloat16,
device="cuda",
)
Image attribution: Stillwaterising, CC0, via Wikimedia Commons
imageurl = "https://upload.wikimedia.org/wikipedia/commons/c/c8/ChestXrayPA3-8-2010.png"
image = Image.open(requests.get(image_url, headers={"User-Agent": "example"}, stream=True).raw)
messages = [
{
"role": "user",
"content": [
{"type": "image", "image": image},
{"type": "text", "text": "Describe this X-ray"}
]
}
]
output = pipe(text=messages, maxnewtokens=2000)
print(output[0]["generated_text"][-1]["content"])
Run the model directly
# Make sure to install the accelerate library first via pip install accelerate
from transformers import AutoProcessor, AutoModelForImageTextToText
from PIL import Image
import requests
import torch
model_id = "google/medgemma-1.5-4b-it"
model = AutoModelForImageTextToText.from_pretrained(
model_id,
torch_dtype=torch.bfloat16,
device_map="auto",
)
processor = AutoProcessor.frompretrained(modelid)
Image attribution: Stillwaterising, CC0, via Wikimedia Commons
imageurl = "https://upload.wikimedia.org/wikipedia/commons/c/c8/ChestXrayPA3-8-2010.png"
image = Image.open(requests.get(image_url, headers={"User-Agent": "example"}, stream=True).raw)
messages = [
{
"role": "user",
"content": [
{"type": "image", "image": image},
{"type": "text", "text": "Describe this X-ray"}
]
}
]
inputs = processor.applychattemplate(
messages, addgenerationprompt=True, tokenize=True,
returndict=True, returntensors="pt"
).to(model.device, dtype=torch.bfloat16)
inputlen = inputs["inputids"].shape[-1]
with torch.inference_mode():
generation = model.generate(inputs, maxnewtokens=2000, do_sample=False)
generation = generation[0][input_len:]
decoded = processor.decode(generation, skipspecialtokens=True)
print(decoded)
Examples
Refer to the growing collection of tutorial
notebooks to see
how to use or fine-tune MedGemma.
Model architecture overview
The MedGemma model is built based on Gemma 3 and
uses the same decoder-only transformer architecture as Gemma 3. To read more
about the architecture, consult the Gemma 3 model
card.
Technical specifications
- Model type: Decoder-only Transformer architecture, see the Gemma 3
- Input modalities: Text, vision (multimodal)
- Output modality: Text only
- Attention mechanism: Grouped-query attention (GQA)
- Context length: Supports long context, at least 128K tokens
- Key publication: https://arxiv.org/abs/2507.05201
- Model created: 4B multimodal: Jan 13, 2026
- Model version: 4B multimodal: 1.5.0
Citation
When using this model, please cite: Sellergren et al. "MedGemma Technical
Report." arXiv preprint arXiv:2507.05201 (2025).
@article{sellergren2025medgemma,
title={MedGemma Technical Report},
author={Sellergren, Andrew and Kazemzadeh, Sahar and Jaroensri, Tiam and Kiraly, Atilla and Traverse, Madeleine and Kohlberger, Timo and Xu, Shawn and Jamil, Fayaz and Hughes, Cían and Lau, Charles and others},
journal={arXiv preprint arXiv:2507.05201},
year={2025}
}
Inputs and outputs
Input:
- Text string, such as a question or prompt
- Images, normalized to 896 x 896 resolution and encoded to 256 tokens each
- Total input length of 128K tokens
Output:
- Generated text in response to the input, such as an answer to a question,
- Total output length of 8192 tokens
Performance and evaluations
MedGemma was evaluated across a range of different multimodal classification,
report generation, visual question answering, and text-based tasks.
Key performance metrics
#### Imaging evaluations
The multimodal performance of MedGemma 1.5 4B was evaluated across a range of
benchmarks, focusing on radiology (2D, longitudinal 2D, and 3D), dermatology,
histopathology, ophthalmology, document understanding, and multimodal clinical
reasoning. See Data card for details of individual datasets.
We also list the previous results for MedGemma 1 4B and 27B (multimodal models
only), as well as for Gemma 3 4B for comparison.
| Task / Dataset | Metric | Gemma 3 4B | MedGemma 1 4B | MedGemma 1.5 4B | MedGemma 1 27B |
|---|---|---|---|---|---|
| 3D radiology image classification | |||||
| CT Dataset 1\*(7 conditions/abnormalities) | Macro accuracy | 54.5 | 58.2 | 61.1 | 57.8 |
| CT-RATE (validation, 18 conditions/abnormalities ) | Macro F1 | 23.5 | 27.0 | ||
| Macro precision | 34.5 | 34.2 | |||
| Macro recall | 34.1 | 42.0 | |||
| MRI Dataset 1\*(10 conditions/abnormalities) | Macro accuracy | 51.1 | 51.3 | 64.7 | 57.4 |
| 2D image classification | |||||
| MIMIC CXR\\ | Macro F1 (top 5 conditions) | 81.2 | 88.9 | 89.5 | 90.0 |
| CheXpert CXR | Macro F1 (top 5 conditions) | 32.6 | 48.1 | 48.2 | 49.9 |
| CXR14 | Macro F1 (3 conditions) | 32.0 | 50.1 | 48.4 | 45.3 |
| PathMCQA\* (histopathology) | Accuracy | 37.1 | 69.8 | 70.0 | 71.6 |
| WSI-Path\* (whole-slide histopathology) | ROUGE | 2.3 | 2.2 | 49.4 | 4.1 |
| US-DermMCQA\* | Accuracy | 52.5 | 71.8 | 73.5 | 71.7 |
| EyePACS\* (fundus) | Accuracy | 14.4 | 64.9 | 76.8 | 75.3 |
| Disease Progression Classification (Longitudinal) | |||||
| MS-CXR-T | Macro Accuracy | 59.0 | 61.11 | 65.7 | 50.1 |
| Visual question answering | |||||
| SLAKE (radiology) | Tokenized F1 | 40.2 | 72.3 | 59.7\\\\ | 70.3 |
| Accuracy (on closed subset) | 62.0 | 87.6 | 82.8 | 85.9 | |
| VQA-RAD\\\* (radiology) | Tokenized F1 | 33.6 | 49.9 | 48.1 | 46.7 |
| Accuracy (on closed subset) | 42.1 | 69.1 | 70.2 | 67.1 | |
| Region of interest detection | |||||
| Chest ImaGenome: Anatomy bounding box detection | Intersection over union | 6.1 | 3.1 | 38.0 | 16.0 |
| Multimodal medical knowledge and reasoning | |||||
| MedXpertQA (text \+ multimodal questions) | Accuracy | 16.4 | 18.8 | 20.9 | 26.8 |
\\ Based on radiologist adjudicated labels, described in Yang (2024,
arXiv) Section A.1.1.
\\\* Based on "balanced split," described in Yang (2024,
arXiv).
\\\\ While MedGemma 1.5 4B exhibits strong radiology interpretation
capabilities, it was less optimized for the SLAKE Q\&A format compared to
MedGemma 1 4B. Fine-tuning on SLAKE may improve results.
#### Chest X-ray report generation
MedGemma chest X-ray (CXR) report generation performance was evaluated on
MIMIC-CXR using the RadGraph
F1 metric. We compare MedGemma 1.5 4B against
a fine-tuned version of MedGemma 1 4B, and the MedGemma 1 27B base model.
| Task / Dataset | Metric | MedGemma 1 4B (tuned for CXR) | MedGemma 1.5 4B | MedGemma 1 27B |
|---|---|---|---|---|
| Chest X-ray report generation | ||||
| MIMIC CXR \- RadGraph F1 | 30.3 | 27.2 | 27.0 |
MedGemma 1.5 4B was evaluated across a range of text-only benchmarks for medical
knowledge and reasoning. Existing results for MedGemma 1 variants and Gemma 3
are shown for comparison.
| Dataset | Gemma 3 4B | MedGemma 1 4B | MedGemma 1.5 4B | MedGemma 1 27B |
|---|---|---|---|---|
| MedQA (4-op) | 50.7 | 64.4 | 69.1 | 85.3 |
| MedMCQA | 45.4 | 55.7 | 59.8 | 70.2 |
| PubMedQA | 68.4 | 73.4 | 68.2 | 77.2 |
| MMLU Med | 67.2 | 70.0 | 69.6 | 86.2 |
| MedXpertQA (text only) | 11.6 | 14.2 | 16.4 | 23.7 |
| AfriMed-QA (25 question test set) | 48.0 | 52.0 | 56.0 | 72.0 |
EHR understanding and interpretation was evaluated for synthetic longitudinal
text-based EHR data and real-world de-identified discharge summaries via
question-answering benchmark datasets for MedGemma 1.5 4B, MedGemma 1 variants,
and Gemma 3 4B.
| Dataset | Metric | Gemma 3 4B | MedGemma 1 4B | MedGemma 1.5 4B | MedGemma 1 27B |
|---|---|---|---|---|---|
| EHRQA\* | Accuracy | 70.9 | 67.6 | 89.6 | 90.5 |
| EHRNoteQA | Accuracy | 78.0 | 79.4 | 80.4 | 90.7 |
#### Document understanding evaluations
Evaluation of converting unstructured medical lab reports documents
(PDFs/images) into structured JSON data.
| Task / Dataset | Metric | Gemma 3 4B | MedGemma 1 4B | MedGemma 1.5 4B | MedGemma 1 27B |
|---|---|---|---|---|---|
| PDF-to-JSON Lab Test Data Conversion | |||||
| EHR Dataset 2\* (raw PDF to JSON) | Macro F1 (average over per document F1 scores) | 84.0 | 78.0 | 91.0 | 76.0 |
| Micro F1 (F1 across all extracted data fields) | 81.0 | 75.0 | 88.0 | 70.0 | |
| EHR Dataset 3\* (raw PDF to JSON) | Macro F1 | 61.0 | 50.0 | 71.0 | 66.0 |
| Micro F1 | 61.0 | 51.0 | 70.0 | 69.0 | |
| Mendeley Clinical Laboratory Test Reports (PNG image to JSON) | Macro F1 | 83.0 | 85.0 | 85.0 | 69.0 |
| Micro F1 | 78.0 | 81.0 | 83.0 | 68.0 | |
| EHR Dataset 4\* | Macro F1 | 41.0 | 25.0 | 64.0 | |
| Micro F1 | 41.0 | 33.0 | 67.0 |
Ethics and safety evaluation
#### Evaluation approach
Our evaluation methods include structured evaluations and internal red-teaming
testing of relevant content policies. Red-teaming was conducted by a number of
different teams, each with different goals and human evaluation metrics. These
models were evaluated against a number of different categories relevant to
ethics and safety, including:
- Child safety: Evaluation of text-to-text and image-to-text prompts
- Content safety: Evaluation of text-to-text and image-to-text prompts
- Representational harms: Evaluation of text-to-text and image-to-text
- General medical harms: Evaluation of text-to-text and image-to-text
In addition to development level evaluations, we conduct "assurance evaluations"
which are our "arms-length" internal evaluations for responsibility governance
decision making. They are conducted separately from the model development team
and inform decision making about release. High-level findings are fed back to
the model team but prompt sets are held out to prevent overfitting and preserve
the results' ability to inform decision making. Notable assurance evaluation
results are reported to our Responsibility & Safety Council as part of release
review.
#### Evaluation results
For all areas of safety testing, we saw safe levels of performance across the
categories of child safety, content safety, and representational harms compared
to previous Gemma models. All testing was conducted without safety filters to
evaluate the model capabilities and behaviors. For both text-to-text and
image-to-text the model produced minimal policy violations. A limitation of our
evaluations was that they included primarily English language prompts.
Data card
Dataset overview
#### Training
The base Gemma models are pre-trained on a large corpus of text and code data.
MedGemma multimodal variants utilize a
SigLIP image encoder that has been
specifically pre-trained on a variety of de-identified medical data, including
radiology images, histopathology images, ophthalmology images, and dermatology
images. Their LLM component is trained on a diverse set of medical data,
including medical text, medical question-answer pairs, FHIR-based electronic
health record data (27B multimodal only), radiology images, histopathology
patches, ophthalmology images, and dermatology images.
#### Evaluation
MedGemma models have been evaluated on a comprehensive set of clinically
relevant benchmarks across multiple datasets, tasks and modalities. These
benchmarks include both open and internal datasets.
#### Source
MedGemma utilizes a combination of public and private datasets.
This model was trained on diverse public datasets including MIMIC-CXR (chest
X-rays and reports), ChestImaGenome: Set of bounding boxes linking image
findings with anatomical regions for MIMIC-CXR SLAKE (multimodal medical images
and questions), PAD-UFES-20 (skin lesion images and data), SCIN (dermatology
images), TCGA (cancer genomics data), CAMELYON (lymph node histopathology
images), PMC-OA (biomedical literature with images), and Mendeley Digital Knee
X-Ray (knee X-rays).
Additionally, multiple diverse proprietary datasets were licensed and
incorporated (described next).
Data ownership and documentation
- MIMIC-CXR: MIT Laboratory
- MS-CXR-T: Microsoft
- ChestX-ray14: National
- SLAKE: The Hong Kong Polytechnic
- PAD-UFES-20: Federal
- SCIN: A collaboration
- TCGA (The Cancer Genome Atlas): A joint
- CAMELYON: The data was
- MedQA: This dataset was created by a
- MedMCQA: This dataset was created by
- PubMedQA: This dataset was created by
- LiveQA: This
- AfriMed-QA: This data was developed and led by
- VQA-RAD: This dataset was
- Chest ImaGenome: IBM
- MedXpertQA: This
- ISIC: International Skin Imaging
- CT-RATE: Istanbul
In addition to the public datasets listed above, MedGemma was also trained on
de-identified, licensed datasets or datasets collected internally at Google from
consented participants.
- CT dataset 1: De-identified dataset of different axial CT studies across
- MRI dataset 1: De-identified dataset of different axial multi-parametric
- Ophthalmology dataset 1 (EyePACS): De-identified dataset of fundus
- Dermatology dataset 1: De-identified dataset of teledermatology skin
- Dermatology dataset 2: De-identified dataset of skin cancer images (both
- Dermatology dataset 3: De-identified dataset of non-diseased skin images
- Dermatology dataset 4: De-identified dataset featuring multiple images
- Dermatology dataset 5: Dermatology dataset featuring unlabeled images.
- Dermatology dataset 6: De-identified cases from adult patients with data
- Pathology dataset 1: De-identified dataset of histopathology H\&E whole
- Pathology dataset 2: De-identified dataset of lung histopathology H\&E
- Pathology dataset 3: De-identified dataset of prostate and lymph node
- Pathology dataset 4: De-identified dataset of histopathology whole slide
- EHR dataset 1: Question/answer dataset drawn from synthetic FHIR records
- EHR dataset 2: De-identified Lab Reports across different departments in
- EHR dataset 3: De-identified Lab Reports across different departments in
- EHR dataset 4: Synthetic dataset of laboratory reports
- EHR dataset 5: Synthetic dataset of approximately 60,000 health-relevant
Data citation
- MIMIC-CXR: Johnson, A., Pollard, T., Mark, R., Berkowitz, S., & Horng,
- MS-CXR-T: Bannur, S., Hyland, S., Liu, Q., Pérez-García, F., Ilse, M.,
- ChestX-ray14: Wang, Xiaosong, Yifan Peng, Le Lu, Zhiyong Lu,
- SLAKE: Liu, Bo, Li-Ming Zhan, Li Xu, Lin Ma, Yan Yang, and Xiao-Ming Wu.
- PAD-UFES-20: Pacheco, Andre GC, et al. "PAD-UFES-20: A skin lesion
- SCIN: Ward, Abbi, Jimmy Li, Julie Wang, Sriram Lakshminarasimhan, Ashley
- TCGA: The results shown here are in whole or part based upon data
- CAMELYON16: Ehteshami Bejnordi, Babak, Mitko Veta, Paul Johannes van
- CAMELYON17: Bandi, Peter, et al. "From detection of individual
- Mendeley Digital Knee X-Ray: Gornale, Shivanand; Patravali, Pooja
- VQA-RAD: Lau, Jason J., Soumya Gayen, Asma Ben Abacha, and Dina
- Chest ImaGenome: Wu, J., Agu, N., Lourentzou, I., Sharma, A., Paguio,
- MedQA: Jin, Di, Eileen Pan, Nassim Oufattole, Wei-Hung Weng, Hanyi Fang,
- MedMCQA: Pal, Ankit, Logesh Kumar Umapathi, and Malaikannan
- PubMedQA: Jin, Qiao, et al. "Pubmedqa: A dataset for biomedical research
- LiveQA: Abacha, Asma Ben, et al. "Overview of the medical question
- AfriMed-QA: Olatunji, Tobi, Charles Nimo, Abraham Owodunni, Tassallah
- MedExpQA: Alonso, I., Oronoz, M., & Agerri, R. (2024). MedExpQA:
- MedXpertQA: Zuo, Yuxin, Shang Qu, Yifei Li, Zhangren Chen, Xuekai Zhu,
- HealthSearchQA: Singhal, Karan, Shekoofeh Azizi, Tao Tu, S. Sara
- ISIC: Gutman, David; Codella, Noel C. F.; Celebi, Emre; Helba, Brian;
- Mendeley Clinical Laboratory Test Reports: Abdelmaksoud, Esraa;
- CheXpert: Irvin, J., Rajpurkar, P., Ko, M., Yu, Y., Ciurea-Ilcus, S.,
- CT-RATE: Hamamci, I. E., Er, S., Almas, F., Simsek, A. G., Esirgun, S.
- EHRNoteQA: Sunjun Kweon, Jiyoun Kim, Heeyoung Kwak, Dongchul Cha,
De-identification/anonymization:
Google and its partners utilize datasets that have been rigorously anonymized or
de-identified to ensure the protection of individual research participants and
patient privacy.
Implementation information
Details about the model internals.
Software
Training was done using JAX.
JAX allows researchers to take advantage of the latest generation of hardware,
including TPUs, for faster and more efficient training of large models.
Use and limitations
Intended use
MedGemma is an open multimodal generative AI model intended to be used as a
starting point that enables more efficient development of downstream healthcare
applications involving medical text and images. MedGemma is intended for
developers in the life sciences and healthcare space. Developers are responsible
for training, adapting, and making meaningful changes to MedGemma to accomplish
their specific intended use. MedGemma models can be fine-tuned by developers
using their own proprietary data for their specific tasks or solutions.
MedGemma is based on Gemma 3 and has been further trained on medical images and
text. MedGemma enables further development in medical contexts (image and
textual); however, the model has been trained using chest x-ray, histopathology,
dermatology, fundus images, CT, MR, medical text/documents and electronic health
records (EHR) data. Examples of tasks within MedGemma’s training include visual
question answering pertaining to medical images, such as radiographs, document
understanding, or providing answers to textual medical questions.
Benefits
- Provides strong baseline medical image and text comprehension for models of
- This strong performance makes it efficient to adapt for downstream
- This adaptation may involve prompt engineering, grounding, agentic
Limitations
MedGemma is not intended to be used without appropriate validation, adaptation,
and/or making meaningful modification by developers for their specific use case.
The outputs generated by MedGemma are not intended to directly inform clinical
diagnosis, patient management decisions, treatment recommendations, or any other
direct clinical practice applications. All outputs from MedGemma should be
considered preliminary and require independent verification, clinical
correlation, and further investigation through established research and
development methodologies.
MedGemma's multimodal capabilities have been primarily evaluated on single-image
tasks. MedGemma has not been evaluated in use cases that involve comprehension
of multiple images.
MedGemma has not been evaluated or optimized for multi-turn applications.
MedGemma's training may make it more sensitive to the specific prompt used than
Gemma 3.
When adapting MedGemma developer should consider the following:
- Bias in validation data: As with any research, developers should ensure
- Data contamination concerns: When evaluating the generalization
Release notes
#### MedGemma 4B IT
- May 20, 2025: Initial release
- July 9, 2025 Bug fix: Fixed the subtle degradation in the multimodal
- Jan 13, 2026: Updated to version 1.5 with improved medical reasoning,
📂 GGUF File List
| 📁 Filename | 📦 Size | ⚡ Download |
|---|---|---|
|
medgemma-1.5-4b-it-BF16.gguf
LFS
FP16
|
7.23 GB | Download |
|
medgemma-1.5-4b-it-IQ4_NL.gguf
LFS
Q4
|
2.2 GB | Download |
|
medgemma-1.5-4b-it-IQ4_XS.gguf
LFS
Q4
|
2.11 GB | Download |
|
medgemma-1.5-4b-it-Q2_K.gguf
LFS
Q2
|
1.61 GB | Download |
|
medgemma-1.5-4b-it-Q2_K_L.gguf
LFS
Q2
|
1.61 GB | Download |
|
medgemma-1.5-4b-it-Q3_K_M.gguf
LFS
Q3
|
1.95 GB | Download |
|
medgemma-1.5-4b-it-Q3_K_S.gguf
LFS
Q3
|
1.8 GB | Download |
|
medgemma-1.5-4b-it-Q4_0.gguf
Recommended
LFS
Q4
|
2.21 GB | Download |
|
medgemma-1.5-4b-it-Q4_1.gguf
LFS
Q4
|
2.39 GB | Download |
|
medgemma-1.5-4b-it-Q4_K_M.gguf
LFS
Q4
|
2.32 GB | Download |
|
medgemma-1.5-4b-it-Q4_K_S.gguf
LFS
Q4
|
2.21 GB | Download |
|
medgemma-1.5-4b-it-Q5_K_M.gguf
LFS
Q5
|
2.64 GB | Download |
|
medgemma-1.5-4b-it-Q5_K_S.gguf
LFS
Q5
|
2.57 GB | Download |
|
medgemma-1.5-4b-it-Q6_K.gguf
LFS
Q6
|
2.97 GB | Download |
|
medgemma-1.5-4b-it-Q8_0.gguf
LFS
Q8
|
3.85 GB | Download |
|
medgemma-1.5-4b-it-UD-IQ1_M.gguf
LFS
|
1.16 GB | Download |
|
medgemma-1.5-4b-it-UD-IQ1_S.gguf
LFS
|
1.1 GB | Download |
|
medgemma-1.5-4b-it-UD-IQ2_M.gguf
LFS
Q2
|
1.46 GB | Download |
|
medgemma-1.5-4b-it-UD-IQ2_XXS.gguf
LFS
Q2
|
1.25 GB | Download |
|
medgemma-1.5-4b-it-UD-IQ3_XXS.gguf
LFS
Q3
|
1.59 GB | Download |
|
medgemma-1.5-4b-it-UD-Q2_K_XL.gguf
LFS
Q2
|
1.65 GB | Download |
|
medgemma-1.5-4b-it-UD-Q3_K_XL.gguf
LFS
Q3
|
2 GB | Download |
|
medgemma-1.5-4b-it-UD-Q4_K_XL.gguf
LFS
Q4
|
2.36 GB | Download |
|
medgemma-1.5-4b-it-UD-Q5_K_XL.gguf
LFS
Q5
|
2.64 GB | Download |
|
medgemma-1.5-4b-it-UD-Q6_K_XL.gguf
LFS
Q6
|
3.32 GB | Download |
|
medgemma-1.5-4b-it-UD-Q8_K_XL.gguf
LFS
Q8
|
4.81 GB | Download |
|
mmproj-BF16.gguf
LFS
FP16
|
811.82 MB | Download |
|
mmproj-F16.gguf
LFS
FP16
|
811.82 MB | Download |
|
mmproj-F32.gguf
LFS
|
1.56 GB | Download |