MBZUAI / MedMO-4B

huggingface.co
Total runs: 2.5K
24-hour runs: 0
7-day runs: -414
30-day runs: -424
Model's Last Updated: April 08 2026
image-text-to-text

Introduction of MedMO-4B

Model Details of MedMO-4B

MedMO: Grounding and Understanding Multimodal Large Language Model for Medical Images

Paper Model Model License

MedMO Logo

MedMO is a powerful open-source multimodal foundation model designed for comprehensive medical image understanding and grounding. Built on Qwen3-VL architecture and trained on 26M+ diverse medical samples across 45 datasets, MedMO achieves state-of-the-art performance across multiple medical imaging tasks.

🎯 Capabilities

MedMO excels at a comprehensive range of medical imaging tasks:

  • Visual Question Answering (VQA) : Answer complex questions about medical images across radiology, pathology, ophthalmology, and dermatology
  • Text-Based Medical QA : Clinical reasoning and medical knowledge question answering
  • Radiology Report Generation : Generate detailed, clinically accurate radiology reports from medical images
  • Disease Localization with Bounding Boxes : Precise spatial detection and localization of pathological findings
  • Anatomical Grounding : Spatial localization and grounding of anatomical structures
  • Clinical Reasoning : Step-by-step diagnostic reasoning and clinical decision support
  • Diagnostic Classification : Multi-class disease classification across diverse imaging modalities
  • Spatial Object Detection : Fine-grained detection in microscopy, pathology slides, and cellular imaging
  • Medical Report Summarization : Extract and summarize key clinical findings from complex medical reports
Supported Modalities
  • Radiology (X-ray, CT, MRI, Ultrasound)
  • Pathology & Microscopy
  • Ophthalmology (Fundus, OCT)
  • Dermatology
  • Nuclear Medicine (PET, SPECT)
🚀 Quick Start
Installation
pip install transformers torch qwen-vl-utils
Basic Usage
from transformers import Qwen3VLForConditionalGeneration, AutoProcessor
from qwen_vl_utils import process_vision_info
import torch

# Load model
model = Qwen3VLForConditionalGeneration.from_pretrained(
    "MBZUAI/MedMO-4B",
    torch_dtype=torch.bfloat16,
    attn_implementation="flash_attention_2",
    device_map="auto",
)

processor = AutoProcessor.from_pretrained("MBZUAI/MedMO-4B")

# Prepare your input
messages = [
    {
        "role": "user",
        "content": [
            {
                "type": "image",
                "image": "path/to/medical/image.png",
            },
            {"type": "text", "text": "What abnormalities are present in this chest X-ray?"},
        ],
    }
]

# Process and generate
text = processor.apply_chat_template(
    messages, tokenize=False, add_generation_prompt=True
)
image_inputs, video_inputs = process_vision_info(messages)
inputs = processor(
    text=[text],
    images=image_inputs,
    videos=video_inputs,
    padding=True,
    return_tensors="pt",
)
inputs = inputs.to(model.device)

# Generate output
generated_ids = model.generate(**inputs, max_new_tokens=512)
generated_ids_trimmed = [
    out_ids[len(in_ids) :] for in_ids, out_ids in zip(inputs.input_ids, generated_ids)
]
output_text = processor.batch_decode(
    generated_ids_trimmed, skip_special_tokens=True, clean_up_tokenization_spaces=False
)
print(output_text[0])
Example: Disease Localization with Bounding Boxes
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "image": "chest_xray.png"},
            {"type": "text", "text": "Detect and localize all abnormalities in this image."},
        ],
    }
]
# Output: "Fractures <box>[[156, 516, 231, 607], [240, 529, 296, 581]]</box>"
Example: Report Generation
messages = [
    {
        "role": "user",
        "content": [
            {"type": "image", "image": "ct_scan.png"},
            {"type": "text", "text": "Generate a detailed radiology report for this CT scan."},
        ],
    }
]
# MedMO generates comprehensive clinical reports with findings and impressions
🏗️ Model Architecture

MedMO is built on Qwen3-VL-4B-Instruct and trained through a 4-stage progressive pipeline:

  1. Stage 1 - General Medical SFT : Large-scale training on 18.5M image-text pairs for foundational medical understanding
  2. Stage 2 - High-Resolution & Grounding : Training on 3M curated samples at 1280×1280 resolution for spatial localization
  3. Stage 3 - Instruction Tuning : Fine-tuning on 4.3M instruction-response pairs for task-specific alignment
  4. Stage 4 - Reinforcement Learning : GRPO training with verifiable rewards (label accuracy, bbox IoU) for enhanced grounding

Total Training Data : 26M+ samples from 45 medical datasets spanning diverse modalities and anatomical systems.

For detailed benchmark results, please refer to our paper.

📄 Citation

If you use MedMO in your research, please cite our paper:

@misc{deria2026medmogroundingunderstandingmultimodal,
      title={MedMO: Grounding and Understanding Multimodal Large Language Model for Medical Images}, 
      author={Ankan Deria and Komal Kumar and Adinath Madhavrao Dukre and Eran Segal and Salman Khan and Imran Razzak},
      year={2026},
      eprint={2602.06965},
      archivePrefix={arXiv},
      primaryClass={cs.CV},
      url={https://arxiv.org/abs/2602.06965}, 
}
📜 License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

Runs of MBZUAI MedMO-4B on huggingface.co

2.5K
Total runs
0
24-hour runs
-90
3-day runs
-414
7-day runs
-424
30-day runs

More Information About MedMO-4B huggingface.co Model

More MedMO-4B license Visit here:

https://choosealicense.com/licenses/apache-2.0

MedMO-4B huggingface.co

MedMO-4B huggingface.co is an AI model on huggingface.co that provides MedMO-4B's model effect (), which can be used instantly with this MBZUAI MedMO-4B model. huggingface.co supports a free trial of the MedMO-4B model, and also provides paid use of the MedMO-4B. Support call MedMO-4B model through api, including Node.js, Python, http.

MedMO-4B huggingface.co Url

https://huggingface.co/MBZUAI/MedMO-4B

MBZUAI MedMO-4B online free

MedMO-4B huggingface.co is an online trial and call api platform, which integrates MedMO-4B's modeling effects, including api services, and provides a free online trial of MedMO-4B, you can try MedMO-4B online for free by clicking the link below.

MBZUAI MedMO-4B online free url in huggingface.co:

https://huggingface.co/MBZUAI/MedMO-4B

MedMO-4B install

MedMO-4B is an open source model from GitHub that offers a free installation service, and any user can find MedMO-4B on GitHub to install. At the same time, huggingface.co provides the effect of MedMO-4B install, users can directly use MedMO-4B installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

MedMO-4B install url in huggingface.co:

https://huggingface.co/MBZUAI/MedMO-4B

Url of MedMO-4B

MedMO-4B huggingface.co Url

Provider of MedMO-4B huggingface.co

MBZUAI
ORGANIZATIONS

Other API from MBZUAI

huggingface.co

Total runs: 76.5K
Run Growth: -390
Growth Rate: -0.51%
Updated:February 20 2025
huggingface.co

Total runs: 5.6K
Run Growth: 4.4K
Growth Rate: 78.80%
Updated:March 01 2024
huggingface.co

Total runs: 5.3K
Run Growth: -1.2K
Growth Rate: -23.60%
Updated:April 08 2026
huggingface.co

Total runs: 4.6K
Run Growth: -1.3K
Growth Rate: -27.43%
Updated:April 08 2026
huggingface.co

Total runs: 3.0K
Run Growth: -1.0K
Growth Rate: -35.01%
Updated:April 08 2026
huggingface.co

Total runs: 1.2K
Run Growth: -1.2K
Growth Rate: -99.49%
Updated:April 28 2023
huggingface.co

Total runs: 1.1K
Run Growth: -1.2K
Growth Rate: -110.15%
Updated:April 28 2023
huggingface.co

Total runs: 935
Run Growth: -1.2K
Growth Rate: -125.13%
Updated:April 28 2023
huggingface.co

Total runs: 923
Run Growth: -1.0K
Growth Rate: -112.79%
Updated:March 13 2025
huggingface.co

Total runs: 916
Run Growth: 242
Growth Rate: 26.42%
Updated:February 28 2024
huggingface.co

Total runs: 732
Run Growth: 689
Growth Rate: 94.13%
Updated:March 25 2024
huggingface.co

Total runs: 406
Run Growth: 0
Growth Rate: 0.00%
Updated:December 26 2024
huggingface.co

Total runs: 262
Run Growth: 78
Growth Rate: 29.77%
Updated:February 27 2026
huggingface.co

Total runs: 156
Run Growth: -1.6K
Growth Rate: -1006.33%
Updated:December 27 2023
huggingface.co

Total runs: 137
Run Growth: 31
Growth Rate: 22.63%
Updated:February 28 2024
huggingface.co

Total runs: 123
Run Growth: 103
Growth Rate: 86.55%
Updated:December 16 2024
huggingface.co

Total runs: 116
Run Growth: -179
Growth Rate: -154.31%
Updated:February 27 2026
huggingface.co

Total runs: 93
Run Growth: -112
Growth Rate: -120.43%
Updated:February 27 2026
huggingface.co

Total runs: 77
Run Growth: 36
Growth Rate: 52.94%
Updated:September 10 2025
huggingface.co

Total runs: 63
Run Growth: 38
Growth Rate: 47.50%
Updated:December 18 2024
huggingface.co

Total runs: 57
Run Growth: 51
Growth Rate: 89.47%
Updated:January 20 2026
huggingface.co

Total runs: 31
Run Growth: -1
Growth Rate: -3.45%
Updated:September 10 2025
huggingface.co

Total runs: 29
Run Growth: 0
Growth Rate: 0.00%
Updated:July 11 2026
huggingface.co

Total runs: 26
Run Growth: 13
Growth Rate: 52.00%
Updated:December 27 2023
huggingface.co

Total runs: 26
Run Growth: 8
Growth Rate: 33.33%
Updated:December 16 2024
huggingface.co

Total runs: 26
Run Growth: -1
Growth Rate: -5.00%
Updated:December 16 2024
huggingface.co

Total runs: 25
Run Growth: 17
Growth Rate: 68.00%
Updated:March 16 2025
huggingface.co

Total runs: 24
Run Growth: -32
Growth Rate: -139.13%
Updated:September 10 2025
huggingface.co

Total runs: 20
Run Growth: 13
Growth Rate: 65.00%
Updated:February 28 2024
huggingface.co

Total runs: 14
Run Growth: 14
Growth Rate: 100.00%
Updated:November 28 2025
huggingface.co

Total runs: 13
Run Growth: 9
Growth Rate: 69.23%
Updated:June 12 2025
huggingface.co

Total runs: 9
Run Growth: -3
Growth Rate: -33.33%
Updated:March 25 2024
huggingface.co

Total runs: 8
Run Growth: 1
Growth Rate: 12.50%
Updated:April 13 2026
huggingface.co

Total runs: 2
Run Growth: 0
Growth Rate: 0.00%
Updated:January 19 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:January 05 2026
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:June 09 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:September 10 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:September 10 2025
huggingface.co

Total runs: 0
Run Growth: 0
Growth Rate: 0.00%
Updated:September 10 2025