Datasets:

Modalities:
Image
Text
Formats:
arrow
Languages:
English
ArXiv:
Libraries:
Datasets
License:
nielsr's picture
nielsr HF Staff
Enhance dataset card: Add paper, code, task category, and detailed description
7b616bc verified
|
raw
history blame
3.03 kB
metadata
license: apache-2.0
task_categories:
  - image-text-to-text
tags:
  - vlm
  - vqa
  - reinforcement-learning
  - efficiency
  - multimodal

VisionThink: Smart and Efficient Vision Language Model via Reinforcement Learning

This repository contains the training and validation datasets for the VisionThink project, which introduces a smart and efficient vision-language model (VLM) paradigm via reinforcement learning. The datasets are used for training and evaluating VisionThink models, which are designed for dynamically processing distinct samples with different visual resolutions, thereby achieving strong fine-grained visual understanding on OCR-related tasks while significantly saving visual tokens on simpler tasks.

For more details on the VisionThink project and its methodology, please refer to the paper: VisionThink: Smart and Efficient Vision Language Model via Reinforcement Learning

The code for the VisionThink project, including training and evaluation scripts, can be found on GitHub: https://github.com/dvlab-research/VisionThink

Highlights

  1. Our VisionThink leverages reinforcement learning to autonomously learn whether to reduce visual tokens. Compared to traditional efficient VLM approaches, our method achieves significant improvements on fine-grained benchmarks, such as those involving OCR-related tasks.
  2. VisionThink improves performance on General VQA tasks while reducing visual tokens by 50%, achieving 102% of the original model’s performance across nine benchmarks.
  3. VisionThink achieves strong performance and efficiency by simply resizing input images to reduce visual tokens. We hope this inspires further research into Efficient Reasoning Vision Language Models.

Data Preparation

The datasets used in VisionThink are hosted separately on Hugging Face. You can download them using the huggingface-cli tool:

Dataset for General VQA

huggingface-cli download --repo-type dataset --resume-download Senqiao/VisionThink-General-Train --local-dir datasets/VisionThink-General-Train
huggingface-cli download --repo-type dataset --resume-download Senqiao/VisionThink-General-Val --local-dir datasets/VisionThink-General-Val

Dataset for Efficient Reasoning VLM

huggingface-cli download --repo-type dataset --resume-download Senqiao/VisionThink-Smart-Train --local-dir datasets/VisionThink-Smart-Train
huggingface-cli download --repo-type dataset --resume-download Senqiao/VisionThink-Smart-Val --local-dir datasets/VisionThink-Smart-Val

Citation

If you find this project useful in your research, please consider citing:

@article{yang2025visionthink,
  title={VisionThink: Smart and Efficient Vision Language Model via Reinforcement Learning},
  author={Yang, Senqiao and Li, Junyi and Lai, Xin and Yu, Bei and Zhao, Hengshuang and Jia, Jiaya},
  journal={arXiv preprint arXiv:2507.13348},
  year={2025}
}