MM-R5: MultiModal Reasoning-Enhanced ReRanker via Reinforcement Learning for Document Retrieval

TL;DR

Proposes MM-R5, a reinforcement learning-based multimodal reranker with explicit reasoning chains, achieving over 4% recall@1 improvement on MMDocIR.

cs.AI 🔴 Advanced 2025-06-14 40 views
Mingjun Xu Jinhan Dong Jue Hou Zehui Wang Sihang Li Zhifeng Gao Renxin Zhong Hengxing Cai
multimodal retrieval reinforcement learning chain-of-thought reranking deep learning

Key Findings

Methodology

This work introduces a two-stage training framework: first, supervised fine-tuning (SFT) on high-quality reasoning data to enhance instruction-following and reasoning; second, reinforcement learning (RL) with Group Relative Policy Optimization (GRPO), employing task-specific reward functions for optimizing reranking. The model, based on vision-language models (VLMs), incorporates Chain-of-Thought (CoT) reasoning to produce interpretable, step-by-step relevance analysis across multiple pages. High-quality reasoning data is constructed via GPT-4o, focusing on single-image reasoning to address multi-image input challenges. The training process involves iterative fine-tuning and reward-driven optimization, validated on the MMDocIR benchmark, where it surpasses state-of-the-art methods in most metrics, notably improving Recall@1 by over 4%.

Key Results

  • On MMDocIR, MM-R5 achieves a Recall@1 of 0.6951, outperforming models like Qwen2.5-VL-7B-cot (0.6768) and Gemma3-12B (0.5403), demonstrating superior multi-page multimodal understanding.
  • The model's explicit reasoning chains improve interpretability and accuracy, especially in complex question-answering scenarios involving cross-modal and multi-page synthesis.
  • Reward design and high-quality data construction significantly contribute to performance gains, validating the effectiveness of the reasoning-enhanced training pipeline.

Significance

This research addresses the critical challenge of lacking explicit reasoning in multimodal retrieval systems, introducing a framework that combines structured reasoning with reinforcement learning. It enhances both the accuracy and interpretability of retrieval results, paving the way for trustworthy, explainable multimodal AI systems in domains like legal, financial, and academic document analysis. The approach bridges the gap between raw multimodal data and human-understandable reasoning, fostering more transparent AI applications.

Technical Contribution

The key technical innovations include the integration of Chain-of-Thought reasoning into multimodal reranking, a novel two-stage training pipeline combining supervised fine-tuning with task-specific reinforcement learning, and the use of GRPO to optimize relevance ranking with explicit reward functions. The model leverages a high-quality reasoning dataset generated via GPT-4o, enabling structured, interpretable reasoning chains, and demonstrates robustness across diverse multimodal scenarios.

Novelty

This is the first work to embed explicit Chain-of-Thought reasoning within a multimodal reranking framework, utilizing reinforcement learning to refine reasoning quality and relevance ranking simultaneously. Unlike prior approaches that focus solely on feature matching or coarse ranking, this method emphasizes structured, interpretable reasoning, setting a new standard for explainability and performance in multimodal retrieval.

Limitations

  • The approach relies heavily on high-quality reasoning data, which involves significant manual or computational effort to generate, limiting scalability.
  • Reinforcement learning incurs high computational costs, making training resource-intensive and less accessible for large-scale deployment.
  • The model's performance may degrade in extremely long or complex documents where reasoning chains become overly intricate or incomplete, requiring further optimization.

Future Work

Future directions include developing more efficient data generation techniques, reducing training costs via model compression, and extending the framework to handle even more complex multimodal tasks such as video or 3D data. Additionally, integrating self-supervised signals and exploring unsupervised reasoning chain generation could further enhance scalability and applicability.

AI Executive Summary

Multimodal document retrieval has become increasingly vital in an era where information is rich and complex, involving text, images, and layout structures. Traditional retrieval systems primarily rely on keyword matching or coarse semantic similarity, which often lack the depth to handle multi-page, multi-modal content effectively. Existing methods like CLIP, GME, and Qwen series have advanced the field, yet they fall short in providing explicit reasoning and interpretability, especially in complex scenarios such as legal or academic document analysis. This gap limits trust and hinders further system optimization.

In response, this paper introduces MM-R5, a novel multimodal reranking model that integrates Chain-of-Thought (CoT) reasoning with reinforcement learning. The core idea is to enable the model to produce explicit, step-by-step reasoning chains that analyze the relevance of each candidate page to the query. The training pipeline involves two stages: first, supervised fine-tuning on a high-quality reasoning dataset generated via GPT-4o, which teaches the model to follow instructions and generate coherent reasoning paths; second, reinforcement learning with GRPO, where task-specific rewards are used to optimize the relevance ranking and output formatting.

The technical foundation of MM-R5 is based on vision-language models (VLMs), enhanced with structured reasoning modules. The model processes all candidate pages simultaneously, evaluates their relevance through explicit reasoning, and outputs both the reasoning chain and a ranked list. This approach not only improves retrieval accuracy—achieving a Recall@1 of 0.6951 on MMDocIR, surpassing existing models by over 4%—but also enhances interpretability, making the decision process transparent.

Experimental results demonstrate the effectiveness of the approach across multiple metrics, validating the importance of structured reasoning in multimodal retrieval. The model's ability to generate clear reasoning chains offers significant advantages for applications requiring explainability, such as legal document analysis, report summarization, and academic research. The study opens new avenues for integrating reasoning and reinforcement learning in multimodal AI, addressing key challenges in scalability, data quality, and computational costs.

Despite its strengths, the approach faces limitations including reliance on high-quality reasoning data and high training costs. Future work will focus on automating data generation, reducing computational demands, and extending the framework to more diverse multimodal tasks. Overall, MM-R5 marks a substantial step toward more accurate, interpretable, and trustworthy multimodal retrieval systems, with broad implications for AI-driven information access.

Deep Dive

Abstract

Multimodal document retrieval systems enable information access across text, images, and layouts, benefiting various domains like document-based question answering, report analysis, and interactive content summarization. Rerankers improve retrieval precision by reordering retrieved candidates. However, current multimodal reranking methods remain underexplored, with significant room for improvement in both training strategies and overall effectiveness. Moreover, the lack of explicit reasoning makes it difficult to analyze and optimize these methods further. In this paper, We propose MM-R5, a MultiModal Reasoning-Enhanced ReRanker via Reinforcement Learning for Document Retrieval, aiming to provide a more effective and reliable solution for multimodal reranking tasks. MM-R5 is trained in two stages: supervised fine-tuning (SFT) and reinforcement learning (RL). In the SFT stage, we focus on improving instruction-following and guiding the model to generate complete and high-quality reasoning chains. To support this, we introduce a novel data construction strategy that produces rich, high-quality reasoning data. In the RL stage, we design a task-specific reward framework, including a reranking reward tailored for multimodal candidates and a composite template-based reward to further refine reasoning quality. We conduct extensive experiments on MMDocIR, a challenging public benchmark spanning multiple domains. MM-R5 achieves state-of-the-art performance on most metrics and delivers comparable results to much larger models on the remaining ones. Moreover, compared to the best retrieval-only method, MM-R5 improves recall@1 by over 4%. These results validate the effectiveness of our reasoning-enhanced training pipeline. Our code is available at https://github.com/i2vec/MM-R5 .

cs.AI cs.CL cs.CV