🤖 AI Summary
Visual language models (VLMs) suffer from a scarcity of high-quality, low-cost chain-of-thought (CoT) data for multimodal reasoning.
Method: This paper introduces the first game-code-driven paradigm for automatic visual-language reasoning data synthesis. Leveraging large language models (LLMs), we parse and rewrite game source code; executing the code then automatically extracts state-transition logic and multi-step reasoning trajectories—enabling zero-shot, human-annotation-free construction of GameQA, a dataset spanning 30 games and 158 tasks.
Contribution/Results: Our approach enables scalable, cross-domain generalizable, and high-difficulty multimodal CoT data generation. Empirical evaluation demonstrates that fine-tuning Qwen2.5-VL-7B solely on GameQA yields an average +2.33% improvement across seven mainstream vision-language benchmarks—validating the efficacy of game-derived data for enhancing general visual-language understanding. The GameQA dataset is publicly released.
📝 Abstract
Visual-language Chain-of-Thought (CoT) data resources are relatively scarce compared to text-only counterparts, limiting the improvement of reasoning capabilities in Vision Language Models (VLMs). However, high-quality vision-language reasoning data is expensive and labor-intensive to annotate. To address this issue, we leverage a promising resource: game code, which naturally contains logical structures and state transition processes. Therefore, we propose Code2Logic, a novel game-code-driven approach for multimodal reasoning data synthesis. Our approach leverages Large Language Models (LLMs) to adapt game code, enabling automatic acquisition of reasoning processes and results through code execution. Using the Code2Logic approach, we developed the GameQA dataset to train and evaluate VLMs. GameQA is cost-effective and scalable to produce, challenging for state-of-the-art models, and diverse with 30 games and 158 tasks. Surprisingly, despite training solely on game data, VLMs demonstrated out of domain generalization, specifically Qwen2.5-VL-7B improving performance by 2.33% across 7 diverse vision-language benchmarks. Our code and dataset are available at https://github.com/tongjingqi/Code2Logic.