README.md
July 2, 2026 Β· View on GitHub
Towards Efficient Multimodal Unified Reasoning Model via Model Merging
If you find this project useful, please give us a starπ.
Qixiang Yin1,5*, Huanjin Yao2*, Jianghao Chen5, Jiaxing Huang2, Zhicheng Zhao1,3,4, Fei Su1,3,4
1 Beijing University of Posts and Telecommunications, 2Nanyang Technological University
3 Beijing Key Laboratory of Network System and Network Culture
4 Key Laboratory of Interactive Technology and Experience System, Ministry of Culture and Tourism
5 Zhongguancun Academy, Beijing, China
*Equal Contribution, βοΈCorresponding Author
ποΈ News
Oct 10, 2025.We release our paper in arxiv.Feb 23, 2026.Our paper has been accepted by CVPR Findings 2026!
Dataset
We release three training datasets covering mathematical reasoning, OCR, and multimodal structured data understanding.
StructureQA Overview
The StructureQA dataset contains chart, poster, document, table, and scientific image QA data collected and processed from multiple public sources.
| Category | File | Source | Description |
|---|---|---|---|
| Chart / Poster | chart_galaxy_full_4k.parquet | ChartGalaxy/ChartGalaxy | QA data selected from chart, icon, and poster samples. |
| Scientific Plot | plotqa_sample_8k.parquet | NiteshMethani/PlotQA | A sampled subset of PlotQA. The original dataset contains 100k samples across four categories; this version keeps 8k samples by randomly selecting 2k from each category. Many samples are generated from Python plotting tools such as Matplotlib. |
| Document | tatdqa_full_11k.parquet | NExTplusplus/TAT-DQA | Reformatted document QA data from TAT-DQA. The documents include tables and support more complex document-table reasoning. |
| Table | the_cauldron_robut_wtq_38k.parquet | HuggingFaceM4/the_cauldron | Cleaned and converted from the robut_wtq subset. |
| Scientific Image | the_cauldron_tqa_7k.parquet | HuggingFaceM4/the_cauldron | Cleaned and converted from the tqa subset. |
| Table | wikitablequestions_9k.parquet | WTQ official dataset | Converted from the default training split of WTQ. The original data only contains HTML and CSV tables without images, so we render them into images with randomized borders and background colors while keeping icon consistency during conversion. |
π‘ About Tiny-R1V
Although Multimodal Large Language Models (MLLMs) have demonstrated remarkable capabilities across diverse tasks, they encounter challenges in terms of reasoning efficiency, large model size and overthinking. However, existing lightweight MLLMs lack the capability to balance high efficiency and performance at a small scale. To this end, we propose Tiny-R1V, a novel lightweight 3B model that achieves faster inference and higher accuracy via a two-stage optimization, while unifying multimodal reasoning across multiple tasks with fewer inference tokens. In the first stage, Tiny-R1V introduces Length-Informed Relative Policy Optimization (LIPO), a new reinforcement learning method, to train each reasoning model, including mathematical reasoning, chart reasoning, and OCR capability. The LIPO dynamically adjusts the advantages of responses within groups by prioritizing concise yet high-quality responses to encourage the generation of shorter and more accurate responses. In the second stage, we propose Adaptive Model Merging (AMM), a training-free model merging method that merges multiple specialist models into a unified architecture. Specifically, AMM adaptively adjusts the weights of task vectors via a novel gradient projection regularization loss function, thus mitigating redundant conflicts between them. Extensive evaluations on ten widely-used reasoning benchmarks covering mathematics, structured data (charts, tables, documents), OCR, and general capabilities showcase the superior performance of Tiny-R1V, enabling lightweight models to excel in diverse multimodal reasoning tasks.
π Acknowledgment
Our work is primarily based on the following codebases. We are sincerely grateful for their work.
- EasyR1: We use EasyR1 to fine-tune R1-ShareVL Models.
- VLMEvalKit: We use VLMEvalKit for evaluation.