Mulberry: Empowering MLLM with o1-like Reasoning and Reflection via Collective Monte Carlo Tree Search
Yao, Huang, Wu et al.
In this work, we aim to develop an MLLM that understands and solves questions by learning to create each intermediate step of the reasoning involved till the final answer. To this end, we propose Collective Monte Carlo Tree Search (CoMCTS), a new learning-to-reason method for MLLMs, which introduces the concept of collective learning into ``tree search'' for effective and efficient reasoning-path searching and learning. The core idea of CoMCTS is to leverage collective knowledge from multiple models to collaboratively conjecture, search and identify effective reasoning paths toward correct answers via four iterative operations including Expansion, Simulation and Error Positioning, Backpropagation, and Selection. Using CoMCTS, we construct Mulberry-260k, a multimodal dataset with a tree of rich, explicit and well-defined reasoning nodes for each question. With Mulberry-260k, we perform collective SFT to train our model, Mulberry, a series of MLLMs with o1-like step-by-step Reasoning and Reflection capabilities. Extensive experiments demonstrate the superiority of our proposed methods on various benchmarks. Code will be available at https://github.com/HJYao00/Mulberry
academic
Mulberry: Empowering MLLM with o1-like Reasoning and Reflection via Collective Monte Carlo Tree Search
This research aims to develop a multimodal large language model (MLLM) capable of understanding and solving problems by learning to create each intermediate step in the reasoning process. To this end, the authors propose Collective Monte Carlo Tree Search (CoMCTS), a novel MLLM reasoning learning method that introduces collective learning concepts into "tree search," enabling effective and efficient reasoning path search and learning. The core idea of CoMCTS is to leverage the collective knowledge of multiple models through four iterative operations—expansion, simulation and error positioning, backpropagation, and selection—to collaboratively conjecture, search, and identify effective reasoning paths leading to correct answers. Based on CoMCTS, the authors construct the Mulberry-260k dataset and train the Mulberry model series with o1-like step-by-step reasoning and reflection capabilities.
Current multimodal large language models (MLLMs) exhibit significantly increased failure rates when handling complex reasoning tasks. Existing MLLMs primarily adopt a "direct prediction" paradigm, generating brief final answers to questions while lacking explicit and well-defined intermediate reasoning steps.
As Feynman stated: "What I cannot create, I do not understand." MLLMs should be capable of creating and deeply understanding each step in the reasoning process, which is crucial for solving complex tasks.
Search Effectiveness Problem: Traditional MCTS methods operate through self-guidance, but current MLLMs lack explicit intermediate reasoning step training, making them prone to homogeneous low-quality nodes within a single MLLM's reasoning space.
Search Efficiency Problem: Traditional MCTS extends only one subsequent reasoning node per search iteration, requiring numerous iterations, which is inefficient for computationally intensive MLLMs.
Inspired by recent advances such as OpenAI's o1, the authors sought to apply "tree search" methods to MLLMs. However, direct application proved ineffective, necessitating the design of new collective learning mechanisms to address search challenges.
Proposes CoMCTS Method: First introduces collective learning concepts into MCTS, leveraging collective knowledge to collaboratively conjecture, search, and identify effective and reflective reasoning paths for MLLMs.
Constructs Mulberry-260k Dataset: Provides valuable resources for advancing step-by-step reasoning and reflection research in MLLMs.
Develops Mulberry Model Series: MLLMs with excellent step-by-step reasoning and reflection capabilities.
Experimental Validation: Demonstrates method superiority across multiple benchmarks.
Given a multimodal input question Q (e.g., text task instructions containing images), the goal is to generate a series of intermediate reasoning state sequences (s₁, s₂, s₃, ..., sₘ) to arrive at the correct answer.
Mulberry-7B shows average improvement of 4.2% over Qwen2-VL-7B
Mulberry-11B shows average improvement of 7.5% over LLaMA-3.2-11B-Vision-Instruct
Mulberry-2B shows average improvement of 5.4% over Qwen2-VL-2B
Mulberry-8B shows average improvement of 11.0% over LLaVA-NeXT-8B
Comparison with Reasoning Response Models:
On MathVista, Mulberry shows improvements of 5.7% and 6.5% over LLaVA-Reasoner-8B and Insight-V-8B respectively
On MMMU, improvements of 3.0% and 1.0% respectively
Comparison with SOTA Models:
Mulberry achieves the best performance among most open-source MLLMs and approaches closed-source model performance on certain metrics.
GPT-4o direct prediction: 58.2% search success rate
CoMCTS with GPT-4o only: 63.8%
Continuous performance improvement with additional models
Complete CoMCTS: 80.2% search success rate
Reflective Data Contribution (Table 3):
On MathVista, incorporating reflective data improves performance by 0.8%, demonstrating complementarity between effectiveness and reflective reasoning data.
MCTS has been widely applied in games, robotics, theorem proving, and other domains. This paper is the first to introduce collective learning into MCTS for MLLMs.
Collective learning aims to improve learning outcomes by leveraging the collective wisdom of multiple individuals. This paper applies it to reasoning path search.
Computational Efficiency: While improved compared to traditional MCTS, still requires multi-model collaboration with relatively high computational costs.
Generalization Capability: Primarily validated on mathematical and chart understanding tasks; performance on other complex reasoning tasks requires further verification.
Insufficient Theoretical Analysis: Lacks in-depth theoretical analysis of why collective learning is effective.