wukeming11's picture
Enhance dataset card with task categories, tags, license, and overview (#2)
7ecc53f verified
metadata
configs:
  - config_name: algopuzzle
    data_files:
      - split: train
        path: algopuzzle_train.parquet
  - config_name: mmk12
    data_files:
      - split: train
        path: mmk12_train.parquet
  - config_name: thinklite_vl_hard
    data_files:
      - split: train
        path: thinklite_vl_hard_train.parquet
  - config_name: tqa_train
    data_files:
      - split: train
        path: tqa_train.parquet
  - config_name: virl39k
    data_files:
      - split: train
        path: virl39k_train.parquet
  - config_name: wemath_pro
    data_files:
      - split: train
        path: wemath_pro.parquet
  - config_name: wemath_standard
    data_files:
      - split: train
        path: wemath_standard.parquet
  - config_name: validation
    data_files:
      - split: val
        path: val.parquet
task_categories:
  - image-text-to-text
tags:
  - sft
  - reinforcement-learning
license: cc-by-nc-4.0

OpenMMReasoner: Pushing the Frontiers for Multimodal Reasoning with an Open and General Recipe

Data Paper Project Page Github

Overview

Recent advancements in large reasoning models have fueled growing interest in extending such capabilities to multimodal domains. However, despite notable progress in visual reasoning, the lack of transparent and reproducible data curation and training strategies remains a major barrier to scalable research. In this work, we introduce OpenMMReasoner, a fully transparent two-stage recipe for multimodal reasoning spanning supervised fine-tuning (SFT) and reinforcement learning (RL). In the SFT stage, we construct an 874K-sample cold-start dataset with rigorous step-by-step validation, providing a strong foundation for reasoning capabilities. The subsequent RL stage leverages a 74K-sample dataset across diverse domains to further sharpen and stabilize these abilities, resulting in a more robust and efficient learning process. Extensive evaluations demonstrate that our training recipe not only surpasses strong baselines but also highlights the critical role of data quality and training design in shaping multimodal reasoning performance. Notably, our method achieves a 11.6% improvement over the Qwen2.5-VL-7B-Instruct baseline across nine multimodal reasoning benchmarks, establishing a solid empirical foundation for future large-scale multimodal reasoning research.

Here are the RL Data used to train OpenMMReasoner-RL. We use verl as the training framework.

To use this dataset, first snapshot-download the entire repository to your local machine. After that, you can load the dataset using the example script provided in our GitHub repository by pointing it to your local data folder and the parquet file.

An example configuration file would be:

DATA_FOLDER=/path/to/your/data

ray job submit --address="http://127.0.0.1:8265" \
    --runtime-env=verl/trainer/runtime_env.yaml \
    -- \
    bash -c "cd /path/to/your/verl/ && \
    python3 -m verl.trainer.main_ppo \
        algorithm.adv_estimator=${adv_estimator} \
        actor_rollout_ref.actor.policy_loss.loss_mode=${loss_mode} \
        data.train_files=[$DATA_FOLDER/algopuzzle_train.parquet,$DATA_FOLDER/mmk12_train.parquet,$DATA_FOLDER/puzzlevqa_train.parquet,$DATA_FOLDER/thinklite_vl_hard_train.parquet,$DATA_FOLDER/tqa_train.parquet,$DATA_FOLDER/virl39k_train.parquet,$DATA_FOLDER/wemath_standard.parquet,$DATA_FOLDER/wemath_pro.parquet] \
        data.val_files=${DATA_FOLDER}/val.parquet \


    ... rest of the command args ...