Image-Text-to-Text
Transformers
Safetensors
English
qwen2_5_vl
Pathology
VLM
Reasoning
conversational
text-generation-inference
Instructions to use ChiPhan1110/ScaleReasoner-R1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ChiPhan1110/ScaleReasoner-R1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="ChiPhan1110/ScaleReasoner-R1") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("ChiPhan1110/ScaleReasoner-R1") model = AutoModelForMultimodalLM.from_pretrained("ChiPhan1110/ScaleReasoner-R1") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use ChiPhan1110/ScaleReasoner-R1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "ChiPhan1110/ScaleReasoner-R1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ChiPhan1110/ScaleReasoner-R1", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/ChiPhan1110/ScaleReasoner-R1
- SGLang
How to use ChiPhan1110/ScaleReasoner-R1 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "ChiPhan1110/ScaleReasoner-R1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ChiPhan1110/ScaleReasoner-R1", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "ChiPhan1110/ScaleReasoner-R1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ChiPhan1110/ScaleReasoner-R1", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use ChiPhan1110/ScaleReasoner-R1 with Docker Model Runner:
docker model run hf.co/ChiPhan1110/ScaleReasoner-R1
File size: 13,398 Bytes
9bc3c29 ce7f51d 9bc3c29 ce7f51d bb83df8 b4e5ae3 bb83df8 6464c39 bb83df8 ce7f51d bb83df8 ce7f51d bb83df8 ce7f51d bb83df8 ce7f51d bb83df8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 | ---
base_model:
- Qwen/Qwen2.5-VL-7B-Instruct
language:
- en
license: cc-by-nc-nd-4.0
library_name: transformers
pipeline_tag: image-text-to-text
tags:
- Pathology
- VLM
- Reasoning
---
<h1 align="center">[MICCAI 2026] Enhancing Pathological VLMs with Cross-scale Reasoning</h1>
<p align="center"> Chi Phan*, Tianyi Zhang*, Qiaochu Xue, Yufeng Wu, Dan Hu, Zeyu Liu, Sudong Wang, Yueming Jin </p>
<p align="center">
<a href="https://conferences.miccai.org/2026/en/default.asp">
<img src="https://img.shields.io/badge/MICCAI-2026-blue" alt="MICCAI 2026" />
</a>
<a href="https://arxiv.org/abs/2606.17412">
<img src="https://img.shields.io/badge/Paper-arXiv-red" alt="Paper arXiv" />
</a>
<a href="https://github.com/iMVR-PL/ScaleReasoner-R1">
<img src="https://img.shields.io/badge/%F0%9F%A4%97%20GitHub-ScaleReasoner--R1-green" alt="GitHub ScaleReasoner-R1" />
</a>
<a href="https://huggingface.co/ChiPhan1110/ScaleReasoner-R1">
<img src="https://img.shields.io/badge/%F0%9F%A4%97%20Data-Scale--VQA-yellow" alt="Data Scale-VQA" />
</a>
</p>
## π¬ Overview
Pathological diagnosis is inherently multi-scale: pathologists reason from global tissue architecture at low magnification down to cellular morphology at high magnification, integrating evidence across views before reaching a conclusion. While existing pathological datasets for vision-language models (VLMs) include various scales, they often lack explicit cross-scale reasoning objectives. This limitation prevents VLMs from capturing essential cross-scale representations and learning evidence-based reasoning.
We introduce the **first cross-scale training and evaluation paradigm** for pathological VLMs, along with:
- **Scale-VQA** - a high-quality benchmark of 4,685 leakage-aware multiple-choice questions grounded in multi-magnification pathology images across 15 organs and 5 clinically-aligned reasoning dimensions.
- **ScaleReasoner-R1** - a pathology VLM trained with Group Relative Policy Optimization (GRPO) that achieves state-of-the-art performance on cross-scale multi-image VQA and transfers strongly to established single-image benchmarks.
## π§© Method
<div align="center">
<img src="assets/method_fig.png" alt="Method Overview" width="95%">
**(a)** Leakage-aware curation pipeline for Scale-VQA. **(b)** Dataset overview across organs and magnifications. **(c)** GRPO-based reinforcement learning framework for ScaleReasoner-R1.
</div>
### Scale-VQA: Leakage-Aware Cross-Scale Benchmark
Naively constructed cross-scale VQA benchmarks suffer from **text-only shortcut solutions** β models can infer the correct answer from linguistic or biomedical priors without ever examining the images. Our curation pipeline eliminates these via three steps:
| Step | Description |
|------|-------------|
| **Scale-specific Feature Decomposition** | Expert annotations are decomposed into per-scale evidence sets; initial visual-grounding and scale-dependency constraints are imposed. |
| **Text-only Adversarial Screening** | Gemini 3 Pro and Qwen3-Max act as text-only adversaries. If either model answers correctly without images, constraints are tightened and questions are regenerated. |
| **Cross-scale MCQ Construction & Clinical Validation** | Final MCQs are reviewed by senior pathologists to confirm that correct answers are visually grounded and distractors are clinically plausible. |
### ScaleReasoner-R1: Cross-scale Reasoning via RL
ScaleReasoner-R1 is initialized from **Patho-R1-7B** and fine-tuned with **GRPO** on Scale-VQA. Given a multi-scale image set I = {I_(10x), I_(40x), I_(200x)}, a question, and options, the model generates a structured response with a reasoning trace (`<think>`) followed by a final answer (`<answer>`).
**Training Dynamics:**
<div align="center">
| Training Reward | Validation Accuracy |
|:-------------------:|:---------------:|
| <img src="assets/rl_curve_critic.png" width="420"> | <img src="assets/rl_curve_val.png" width="500"> |
</div>
## π Results
<div align="center">
<img src="assets/eval.png" alt="Evaluation Results" width="80%">
</div>
### Cross-scale Multi-image VQA
| Model | Corresp. | Confirm. | Localiz. | Explan. | Diagno. | **AVG** |
|-------|:--------:|:--------:|:--------:|:-------:|:-------:|:-------:|
| Qwen2.5-VL-7B | 41.79 | 47.26 | 71.14 | 44.28 | 63.68 | 53.63 |
| Gemini 3 Flash | 48.26 | 58.71 | 71.64 | 53.73 | 72.14 | 60.90 |
| GPT-5.2 | 47.76 | 59.70 | 74.13 | 45.77 | 65.17 | 58.51 |
| LLaVA-Med-7B | 25.87 | 16.92 | 28.36 | 20.90 | 24.88 | 23.38 |
| Quilt-LLaVA | 32.34 | 14.43 | 45.27 | 30.35 | 29.35 | 30.35 |
| CLOVER | 37.31 | 61.69 | 73.13 | 46.27 | 65.77 | 56.82 |
| Patho-R1 | 31.84 | 40.30 | 59.70 | 56.22 | 68.66 | 51.34 |
| **ScaleReasoner-R1** | **80.60** | **89.05** | **84.58** | **76.12** | **84.08** | **82.89** |
### Single-image VQA (PathMMU)
| Model | Overall | PubMed | SocialPath | EduContent | Atlas | PathCLS |
|-------|:------------:|:------:|:----------:|:----------:|:-----:|:-------:|
| Patho-R1 | 64.8 | 68.7 | 63.9 | 65.7 | 73.5 | 41.8 |
| **ScaleReasoner-R1** | **66.2** | **71.2** | **67.6** | **67.6** | **79.3** | 37.9 |
---
## π Repository Structure
```text
ScaleReasoner-R1/
βββ assets/
βββ data/ # Cross-scale VQA json by split
βββ preprocess/
β βββ generate_vqa_data/ # Feature extraction, VQA generation, split creation
β βββ prompts/ # Leakage-aware prompt templates and constraints
βββ script/
β βββ preprocess/ # End-to-end preprocessing entrypoints
β βββ train/ # SFT and GRPO launch scripts
β βββ postprocess/ # Postprocess after training
βββ LLaMA-Factory/ # SFT training framework
βββ verl/ # RL training framework
```
## π Getting Started
### Environment Setup
```bash
# Clone the repository
git clone https://github.com/iMVR-PL/ScaleReasoner-R1.git
cd ScaleReasoner-R1
# Set up environment variables
cp script/.env.example script/.env
# Edit script/.env with your paths and API keys
```
Configure `script/.env`:
```bash
# Data paths
DATA_DIR=/path/to/triplet_raw_data
ROOT=/path/to/ScaleReasoner-R1
PROCESSED_DIR=/path/to/processed_data
# Model paths
ACTOR_MODEL_DIR=/path/to/patho-r1-7b # base model (Patho-R1-7B)
RESULTS_DIR=/path/to/results
# Logging
LOG_DIR=/path/to/logs
WANDB_DIR=/path/to/wandb
# API keys (for VQA generation pipeline)
GEMINI_API_KEY=...
OPENAI_API_KEY=...
DASHSCOPE_API_KEY=...
HF_TOKEN=...
```
**RL environment (verl).** ScaleReasoner-R1 is trained with [verl](https://github.com/volcengine/verl). Please follow the [verl installation guide](https://verl.readthedocs.io/en/latest/start/install.html) to set up the environment, then install the local copy:
```bash
conda create -n verl python=3.10 -y && conda activate verl
pip install -e verl/
```
**SFT environment (LLaMA-Factory).** The SFT baseline uses [LLaMA-Factory](https://github.com/hiyouga/LLaMA-Factory):
```bash
conda create -n sft python=3.10 -y && conda activate sft
pip install -e LLaMA-Factory/
```
> Both environments require CUDA 12.1+ and PyTorch 2.3+. We recommend using separate conda environments for RL and SFT to avoid dependency conflicts.
## ποΈ Dataset
Download **Scale-VQA** from [HuggingFace](https://huggingface.co/datasets/iMVR-PL/Scale-VQA). The `data/` directory contains the train/val/test splits in JSON format. Each sample includes:
```json
{
"question": "...",
"options": { "A": "...", "B": "...", "C": "...", "D": "..." },
"answer": "D",
"rationale": "...",
"image_path": {
"low_mag": "wsi_id/rois/10_....jpg",
"mid_mag": "wsi_id/rois/40_....jpg",
"high_mag": "wsi_id/rois/200_....jpg"
}
}
```
## π€ Training & Inference
### RL Training (ScaleReasoner-R1)
We use [**verl**](https://github.com/volcengine/verl) for GRPO-based RL training:
```bash
conda create -n verl python=3.10 -y && conda activate verl
pip install -e verl/
bash script/train/run_grpo_cross_scale_vqa.sh
```
Key hyperparameters: `n=5` rollouts per question, `total_epochs=5`, `train_batch_size=32`. The custom reward function is at `verl/verl/utils/reward_score/cross_scale_vqa.py`.
### SFT Baseline
We use [**LLaMA-Factory**](https://github.com/hiyouga/LLaMA-Factory) for supervised fine-tuning:
```bash
conda create -n sft python=3.10 -y && conda activate sft
pip install -e LLaMA-Factory/
bash script/train/run_sft_pathor1_new_triplet_mcq_think_only.sh
```
### Inference
Download **ScaleReasoner-R1** from [HuggingFace](https://huggingface.co/ChiPhan1110/ScaleReasoner-R1). ScaleReasoner-R1 was trained to produce structured outputs using `<think>` and `<answer>` tags. To ensure reproducible results, pass the system prompt below:
```python
SYSTEM_PROMPT = (
"You are a pathology expert. Read the question and options about the image carefully. "
"Think step by step inside <think> </think>. Then output ONLY the SINGLE best option letter "
"inside <answer> </answer>.
"
"Example: <think>Your reasoning</think> <answer>A</answer>. "
"Do not include the option text or any extra words inside <answer> </answer> tags."
)
```
**Option 1 β vLLM server (recommended for batched evaluation)**
```bash
vllm serve <path/to/ScaleReasoner-R1> \
--host 0.0.0.0 \
--port 8000 \
--tensor-parallel-size 1 \
--max-model-len 8192 \
--limit-mm-per-prompt.image 5
```
Then query via the OpenAI-compatible client:
```python
from openai import OpenAI
import base64
def encode_image(path):
with open(path, "rb") as f:
return base64.b64encode(f.read()).decode("utf-8")
client = OpenAI(base_url="http://localhost:8000/v1", api_key="token")
response = client.chat.completions.create(
model="ChiPhan1110/ScaleReasoner-R1",
messages=[{
"role": "user",
"content": [
{"type": "image_url", "image_url": {"url": f"data:image/jpeg;base64,{encode_image('low_mag.jpg')}"}},
{"type": "image_url", "image_url": {"url": f"data:image/jpeg;base64,{encode_image('mid_mag.jpg')}"}},
{"type": "image_url", "image_url": {"url": f"data:image/jpeg;base64,{encode_image('high_mag.jpg')}"}},
{"type": "text", "text": "<question>
(A) ...
(B) ...
(C) ...
(D) ..."},
]
}],
max_tokens=4096,
)
print(response.choices[0].message.content)
```
**Option 2 β Hugging Face Transformers**
```python
from transformers import Qwen2_5_VLForConditionalGeneration, AutoProcessor
from qwen_vl_utils import process_vision_info
model = Qwen2_5_VLForConditionalGeneration.from_pretrained(
"ChiPhan1110/ScaleReasoner-R1", torch_dtype="auto", device_map="auto"
)
processor = AutoProcessor.from_pretrained("ChiPhan1110/ScaleReasoner-R1")
messages = [{
"role": "user",
"content": [
{"type": "image", "image": "low_mag.jpg"},
{"type": "image", "image": "mid_mag.jpg"},
{"type": "image", "image": "high_mag.jpg"},
{"type": "text", "text": "<question>
(A) ...
(B) ...
(C) ...
(D) ..."},
]
}]
text = processor.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
image_inputs, _ = process_vision_info(messages)
inputs = processor(text=[text], images=image_inputs, return_tensors="pt").to(model.device)
output = model.generate(**inputs, max_new_tokens=4096)
print(processor.decode(output[0][len(inputs.input_ids[0]):], skip_special_tokens=True))
```
## π Acknowledgements
This work was supported by the Ministry of Education, Singapore, under the Tier 1 grant (24-1250-P0001) and Tier 2 grant (T2EP20224-0028), and by PuzzleLogic Pte Ltd, Singapore.
We gratefully acknowledge the open-source projects that made the development of **ScaleReasoner-R1** possible:
- [**verl**](https://github.com/volcengine/verl), for the reinforcement learning training framework.
- [**LLaMA-Factory**](https://github.com/hiyouga/LLaMA-Factory), for the unified fine-tuning pipelines.
- [**vLLM**](https://github.com/vllm-project/vllm), for efficient large language model inference and serving.
We also acknowledge the following open-source models used for comparison in our experiments: [Qwen2.5-VL-7B](https://huggingface.co/Qwen/Qwen2.5-VL-7B-Instruct), [LLaVA-Med-7B](https://github.com/microsoft/LLaVA-Med), [HuaTuoGPT-7B](https://github.com/FreedomIntelligence/HuatuoGPT-Vision), [Lingshu-7B](https://huggingface.co/lingshu-medical-mllm/Lingshu-7B), [Quilt-LLaVA](https://github.com/aldraus/quilt-llava), [CLOVER](https://huggingface.co/jline/CLOVER-Qwen2.5-VL), and [Patho-R1](https://github.com/wenchuan-zhang/patho-r1).
We sincerely thank the developers and contributors of these projects for their excellent work and for making their code and models publicly available to the research community.
## β€οΈ Citation
If you find our work helpful, please consider citing our paper and the frameworks we build upon:
```bibtex
@article{phan2026enhancing,
title={Enhancing Pathological VLMs with Cross-scale Reasoning},
author={Phan, Chi and Zhang, Tianyi Beetroot and Xue, Qiaochu and Wu, Yufeng and Hu, Dan and Liu, Zeyu and Wang, Sudong and Jin, Yueming},
journal={arXiv preprint arXiv:2606.17412},
year={2026}
}
``` |