[ICLR2026] MMSearch-Plusโœจ: Benchmarking Provenance-Aware Search for Multimodal Browsing Agents

February 6, 2026 ยท View on GitHub

Official repository for the paper "MMSearch-Plus: Benchmarking Provenance-Aware Search for Multimodal Browsing Agents".

๐ŸŒŸ For more details, please refer to the project page with examples at https://mmsearch-plus.github.io/.

[๐ŸŒ Webpage] [๐Ÿ“– Paper] [๐Ÿค— Huggingface Dataset] [๐Ÿ† Leaderboard]

๐Ÿ’ฅ News

  • [2026.02.04] ๐ŸŒŸ MMSearch-Plus is now in lmms-eval. There is a simple no-search implementation here.
  • [2026.01.29] ๐ŸŒŸ Thanks Vision-DeepResearch for evaluating on our benchmark!
  • [2025.01.26] ๐ŸŽŠ MMSearch-Plus is accepted by ICLR 2026!
  • [2025.09.26] ๐Ÿ”ฅ We update the arXiv paper and release all MMSearch-Plus data samples in huggingface dataset.
  • [2025.08.29] ๐Ÿš€ We release the arXiv paper.

๐Ÿ“Œ ToDo

  • Agentic rollout framework code
  • Evaluation script
  • Set-of-Mark annotations

Usage

Dataset Usage

Load the dataset with automatic decryption using your canary string:

from decrypt_after_load import decrypt_mmsearch_plus
    
# Load and decrypt in one step
decrypted_ds = decrypt_mmsearch_plus(
    dataset_path="Cie1/MMSearch-Plus",
    canary='your_canary_string' # Set the canary string (hint: it's the name of this repo without username)
)

๐Ÿ‘€ About MMSearch-Plus

MMSearch-Plus is a challenging benchmark designed to test multimodal browsing agents' ability to perform genuine visual reasoning. Unlike existing benchmarks where many tasks can be solved with text-only approaches, MMSearch-Plus requires models to extract and use fine-grained visual cues through iterative image-text retrieval.

Key Features

๐Ÿ” Genuine Multimodal Reasoning: 311 carefully curated tasks that cannot be solved without visual understanding

๐ŸŽฏ Fine-grained Visual Analysis: Questions require extracting spatial cues and temporal traces from images to find out-of-image facts like events, dates, and venues

๐Ÿ› ๏ธ Agent Framework: Model-agnostic web agent with standard browsing tools (text search, image search, zoom-in)

๐Ÿ“ Set-of-Mark (SoM) Module: Enables provenance-aware cropping and targeted searches with human-verified bounding box annotations

Dataset Structure

Each sample contains:

  • Quuestion text and images
  • Ground truth answers and alternative valid responses
  • Metadata including arXiv id (if an event is a paper), video URL (if an event is a video), area and subfield

Performance Results

Evaluation of closed- and open-source MLLMs shows:

  • Best accuracy is achieved by o3 with full rollout: 36.0% (indicating significant room for improvement)
  • SoM integration provides consistent gains up to +3.9 points
  • Models struggle with multi-step visual reasoning and cross-modal information integration


The overview of three paradigms for multimodal browsing tasks that demand fine-grained visual reasoning.


The overview of an example trajectory for a task in MMSearch-Plus.

๐Ÿ† Leaderboard

Contributing to the Leaderboard

๐Ÿšจ The Leaderboard is continuously being updated, welcoming the contribution of your excellent LMMs!

๐Ÿ”– Citation

If you find MMSearch-Plus useful for your research and applications, please kindly cite using this BibTeX:

@article{tao2025mmsearch,
  title={MMSearch-Plus: A Simple Yet Challenging Benchmark for Multimodal Browsing Agents},
  author={Tao, Xijia and Teng, Yihua and Su, Xinxing and Fu, Xinyu and Wu, Jihao and Tao, Chaofan and Liu, Ziru and Bai, Haoli and Liu, Rui and Kong, Lingpeng},
  journal={arXiv preprint arXiv:2508.21475},
  year={2025}
}