Add model card for Mini-o3

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ pipeline_tag: image-text-to-text
4
+ library_name: transformers
5
+ ---
6
+
7
+ # Mini-o3: Scaling Up Reasoning Patterns and Interaction Turns for Visual Search
8
+
9
+ This repository contains the official code and model checkpoints for the paper [Mini-o3: Scaling Up Reasoning Patterns and Interaction Turns for Visual Search](https://huggingface.co/papers/2509.07969).
10
+
11
+ Mini-o3 is a system that leverages image-based tools with reinforcement learning to tackle visual problems. It addresses limitations of existing open-source approaches by scaling up tool-based interactions, allowing for deep, multi-turn reasoning – spanning tens of steps – to solve challenging visual search tasks with state-of-the-art performance.
12
+
13
+ ## Project Page
14
+ [https://mini-o3.github.io/](https://mini-o3.github.io/)
15
+
16
+ ## Code
17
+ [https://github.com/Mini-o3/Mini-o3](https://github.com/Mini-o3/Mini-o3)
18
+
19
+ ## Abstract
20
+ Recent advances in large multimodal models have leveraged image-based tools with reinforcement learning to tackle visual problems. However, existing open-source approaches often exhibit monotonous reasoning patterns and allow only a limited number of interaction turns, making them inadequate for difficult tasks that require trial-and-error exploration. In this work, we address this limitation by scaling up tool-based interactions and introduce Mini-o3, a system that executes deep, multi-turn reasoning -- spanning tens of steps -- and achieves state-of-the-art performance on challenging visual search tasks. Our recipe for reproducing OpenAI o3-style behaviors comprises three key components. First, we construct the Visual Probe Dataset, a collection of thousands of challenging visual search problems designed for exploratory reasoning. Second, we develop an iterative data collection pipeline to obtain cold-start trajectories that exhibit diverse reasoning patterns, including depth-first search, trial-and-error, and goal maintenance. Third, we propose an over-turn masking strategy that prevents penalization of over-turn responses (those that hit the maximum number of turns) during reinforcement learning, thereby balancing training-time efficiency with test-time scalability. Despite training with an upper bound of only six interaction turns, our model generates trajectories that naturally scale to tens of turns at inference time, with accuracy improving as the number of turns increases. Extensive experiments demonstrate that Mini-o3 produces rich reasoning patterns and deep thinking paths, effectively solving challenging visual search problems.
21
+
22
+ ## Citation
23
+
24
+ If you find this repo useful for your research, please consider citing the paper:
25
+ ```bibtex
26
+ @article{lai2025mini-o3,
27
+ title={Mini-o3: Scaling Up Reasoning Patterns and Interaction Turns for Visual Search},
28
+ author={Lai, Xin and Li, Junyi and Li, Wei and Liu, Tao and Li, Tianjian and Zhao, Hengshuang},
29
+ journal={arXiv:2509.07969},
30
+ year={2025}
31
+ }
32
+ ```