MBZUAI / MedMO-4B-Next

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

Introduction of MedMO-4B-Next

Model Details of MedMO-4B-Next

MedMO-8B-Next: Grounding and Understanding Multimodal Large Language Model for Medical Images

Paper Model Model Model Model License

MedMO Logo

MedMO-8B-Next is the latest and most powerful iteration of the MedMO family — an open-source multimodal foundation model purpose-built for comprehensive medical image understanding and grounding. Trained on 26M+ diverse medical samples across 45 datasets , MedMO-8B-Next achieves state-of-the-art performance across all major medical imaging benchmarks , outperforming both open-source and closed-source competitors on VQA, Text QA, grounding, and report generation tasks.


🏆 Benchmark Performance
VQA & Text QA Results

MedMO-8B-Next sets a new state-of-the-art across the board, achieving the highest average scores on both medical VQA and Text QA benchmarks — surpassing strong baselines including Lingshu-7B and Fleming-VL-8B.

OMIVQA = OmniMedVQA · MedXQA = MedXpertQA · Medbullets reported as op4/op5

Medical VQA Benchmarks
Model MMMU-Med VQA-RAD (closed/all) SLAKE (closed/all) PathVQA PMC-VQA OmniMedVQA MedXpertQA Avg.
Lingshu-7B 54.0 77.2 / 43.0 82.4 / 33.2 41.9 54.2 82.9 26.9 55.1
Fleming-VL-8B 63.3 78.4 / 56.4 86.9 / 80.0 56.5 64.3 88.2 21.6 66.1
MedMO-4B 54.6 50.9 / 35.0 41.0 / 30.0 42.4 50.6 79.7 24.8 45.4
MedMO-8B 64.6 72.3 / 64.7 70.6 / 70.0 56.3 59.4 84.8 26.2 63.2
MedMO-4B-Next 58.7 79.7 / 59.6 78.0 / 74.0 73.3 75.7 90.6 27.0 68.5
MedMO-8B-Next 69.3 86.4 / 68.0 83.0 / 81.6 56.3 74.1 93.3 42.9 72.7
Medical Text QA Benchmarks
Model MMLU-Med PubMedQA MedMCQA MedQA Medbullets (op4/op5) MedXpertQA SGPQA Avg.
Lingshu-7B 69.6 75.8 56.3 63.5 62.0 / 53.8 16.4 27.5 53.1
Fleming-VL-8B 71.8 74.0 51.8 53.7 40.5 / 37.3 12.1 24.9 45.7
MedMO-4B 75.7 78.0 58.0 78.5 57.5 / 47.7 16.4 29.4 55.1
MedMO-8B 81.0 77.6 65.0 84.3 66.5 / 60.2 19.9 36.0 61.3
MedMO-4B-Next 74.8 78.2 58.1 78.3 57.4 / 47.6 16.5 29.5 55.0
MedMO-8B-Next 80.2 75.6 62.0 83.8 65.2 / 57.8 20.9 35.5 60.1

Bold = best result, underline = second-best result.

  • Benchmarked on AMD MI210 GPU.

Supported Imaging Modalities
Domain Modalities
Radiology X-ray, CT, MRI, Ultrasound
Pathology Whole-slide imaging, Microscopy
Ophthalmology Fundus photography, OCT
Dermatology Clinical skin images
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-8B-Next",
    torch_dtype=torch.bfloat16,
    attn_implementation="flash_attention_2",
    device_map="auto",
)

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

# Prepare 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",
).to(model.device)

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."},
        ],
    }
]
# Example output:
# "Fractures <box>[[156, 516, 231, 607], [240, 529, 296, 581]]</box>"
Example: Radiology 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-8B-Next generates comprehensive clinical reports with findings and impressions

📦 Model Family
Model Parameters Best For
MedMO-8B-Next 8B SOTA highest accuracy, all tasks — recommended
MedMO-4B-Next 4B 2nd SOTA, high accuracy in resource-constrained environments
MedMO-8B 8B Previous generation
MedMO-4B 4B Resource-constrained environments

📄 Citation

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

@article{deria2026medmo,
  title={MedMO: Grounding and Understanding Multimodal Large Language Model for Medical Images},
  author={Deria, Ankan and Kumar, Komal and Dukre, Adinath Madhavrao and Segal, Eran and Khan, Salman and Razzak, Imran},
  journal={arXiv preprint arXiv:2602.06965},
  year={2026}
}

📜 License

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

Runs of MBZUAI MedMO-4B-Next on huggingface.co

4.6K
Total runs
0
24-hour runs
-256
3-day runs
-1.1K
7-day runs
-1.3K
30-day runs

More Information About MedMO-4B-Next huggingface.co Model

More MedMO-4B-Next license Visit here:

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

MedMO-4B-Next huggingface.co

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

MedMO-4B-Next huggingface.co Url

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

MBZUAI MedMO-4B-Next online free

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

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

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

MedMO-4B-Next install

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

MedMO-4B-Next install url in huggingface.co:

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

Url of MedMO-4B-Next

MedMO-4B-Next huggingface.co Url

Provider of MedMO-4B-Next huggingface.co

MBZUAI
ORGANIZATIONS

Other API from MBZUAI

huggingface.co

Total runs: 76.6K
Run Growth: 1.1K
Growth Rate: 1.49%
Updated:February 20 2025
huggingface.co

Total runs: 5.5K
Run Growth: 4.4K
Growth Rate: 80.18%
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: 3.0K
Run Growth: -1.0K
Growth Rate: -35.01%
Updated:April 08 2026
huggingface.co

Total runs: 2.5K
Run Growth: -424
Growth Rate: -17.00%
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: 922
Run Growth: -856
Growth Rate: -92.84%
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: -1019.87%
Updated:December 27 2023
huggingface.co

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

Total runs: 117
Run Growth: 103
Growth Rate: 88.03%
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: 80
Run Growth: 42
Growth Rate: 52.50%
Updated:December 18 2024
huggingface.co

Total runs: 67
Run Growth: 31
Growth Rate: 46.27%
Updated:September 10 2025
huggingface.co

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

Total runs: 29
Run Growth: -5
Growth Rate: -17.24%
Updated:September 10 2025
huggingface.co

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

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

Total runs: 25
Run Growth: 11
Growth Rate: 45.83%
Updated:December 27 2023
huggingface.co

Total runs: 23
Run Growth: 8
Growth Rate: 34.78%
Updated:December 16 2024
huggingface.co

Total runs: 22
Run Growth: -28
Growth Rate: -127.27%
Updated:September 10 2025
huggingface.co

Total runs: 21
Run Growth: 2
Growth Rate: 9.52%
Updated:December 16 2024
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