Image-Text-to-Text
Transformers
Safetensors
qwen2_5_vl
vision-language
multimodal
process-reward-modeling
visual-reasoning
best-of-n
conversational
text-generation-inference
Instructions to use two-tiger/MiMo-VRPRM-7B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use two-tiger/MiMo-VRPRM-7B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="two-tiger/MiMo-VRPRM-7B") 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("two-tiger/MiMo-VRPRM-7B") model = AutoModelForMultimodalLM.from_pretrained("two-tiger/MiMo-VRPRM-7B") 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 two-tiger/MiMo-VRPRM-7B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "two-tiger/MiMo-VRPRM-7B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "two-tiger/MiMo-VRPRM-7B", "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/two-tiger/MiMo-VRPRM-7B
- SGLang
How to use two-tiger/MiMo-VRPRM-7B 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 "two-tiger/MiMo-VRPRM-7B" \ --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": "two-tiger/MiMo-VRPRM-7B", "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 "two-tiger/MiMo-VRPRM-7B" \ --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": "two-tiger/MiMo-VRPRM-7B", "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 two-tiger/MiMo-VRPRM-7B with Docker Model Runner:
docker model run hf.co/two-tiger/MiMo-VRPRM-7B
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -26,13 +26,11 @@ VRPRM is designed to evaluate intermediate reasoning steps for multimodal proble
|
|
| 26 |
|
| 27 |
## Training Summary
|
| 28 |
|
| 29 |
-
The VRPRM paper trains the model with a two-stage recipe:
|
| 30 |
|
| 31 |
-
1. Supervised fine-tuning cold start on high-quality CoT-PRM data.
|
| 32 |
2. Reinforcement learning scaling on lower-cost non-CoT PRM data.
|
| 33 |
|
| 34 |
-
The release data is derived from VisualPRM400K-style process supervision.
|
| 35 |
-
|
| 36 |
## Intended Use
|
| 37 |
|
| 38 |
This model is intended for research on:
|
|
@@ -64,19 +62,17 @@ model = AutoModelForVision2Seq.from_pretrained(
|
|
| 64 |
|
| 65 |
For the complete inference and evaluation pipeline, use the VRPRM project code.
|
| 66 |
|
| 67 |
-
## Limitations
|
| 68 |
-
|
| 69 |
-
- Reward scores depend on the quality of the generated visual reasoning process.
|
| 70 |
-
- Generated reasoning introduces higher latency than direct scalar reward modeling.
|
| 71 |
-
- The model may inherit biases from its base model and process supervision data.
|
| 72 |
-
- Evaluation should be performed on task-specific validation sets before deployment.
|
| 73 |
|
| 74 |
## Citation
|
| 75 |
|
| 76 |
```bibtex
|
| 77 |
-
@
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
}
|
| 82 |
```
|
|
|
|
| 26 |
|
| 27 |
## Training Summary
|
| 28 |
|
| 29 |
+
The [VRPRM](https://arxiv.org/abs/2508.03556) paper trains the model with a two-stage recipe:
|
| 30 |
|
| 31 |
+
1. Supervised fine-tuning cold start on high-quality CoT-PRM data. Open-sourced on [VRPRM3.6K](https://huggingface.co/datasets/two-tiger/VRPRM3.6K).
|
| 32 |
2. Reinforcement learning scaling on lower-cost non-CoT PRM data.
|
| 33 |
|
|
|
|
|
|
|
| 34 |
## Intended Use
|
| 35 |
|
| 36 |
This model is intended for research on:
|
|
|
|
| 62 |
|
| 63 |
For the complete inference and evaluation pipeline, use the VRPRM project code.
|
| 64 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 65 |
|
| 66 |
## Citation
|
| 67 |
|
| 68 |
```bibtex
|
| 69 |
+
@misc{chen2026vrprmprocessrewardmodeling,
|
| 70 |
+
title={VRPRM: Process Reward Modeling via Visual Reasoning},
|
| 71 |
+
author={Xinquan Chen and Chongying Yue and Bangwei Liu and Xuhong Wang and Yingchun Wang and Chaochao Lu},
|
| 72 |
+
year={2026},
|
| 73 |
+
eprint={2508.03556},
|
| 74 |
+
archivePrefix={arXiv},
|
| 75 |
+
primaryClass={cs.LG},
|
| 76 |
+
url={https://arxiv.org/abs/2508.03556},
|
| 77 |
}
|
| 78 |
```
|