paper-with-me

Papers

On the Emergence of Thinking in LLMs I: Searching for the Right Intuition

2025-02-10 · Guanghao Ye, Khiem Duc Pham, Xinzhi Zhang, Sivakanth Gopi, Baolin Peng, Beibin Li, Janardhan Kulkarni, Huseyin A. Inan

Recent AI advancements, such as OpenAI's new models, are transforming LLMs into LRMs (Large Reasoning Models) that perform reasoning during inference, taking extra time and compute for higher-quality outputs. We aim to uncover the algorithmic framework for training LRMs. Methods like self-consistency, PRM, and AlphaZero suggest reasoning as guided search. We ask: what is the simplest, most scalable way to enable search in LLMs? We propose a post-training framework called Reinforcement Learning via Self-Play (RLSP). RLSP involves three steps: (1) supervised fine-tuning with human or synthetic demonstrations of the reasoning process, (2) using an exploration reward signal to encourage diverse and efficient reasoning behaviors, and (3) RL training with an outcome verifier to ensure correctness while preventing reward hacking. Our key innovation is to decouple exploration and correctness signals during PPO training, carefully balancing them to improve performance and efficiency. Empirical studies in the math domain show that RLSP improves reasoning. On the Llama-3.1-8B-Instruct model, RLSP can boost performance by 23% in MATH-500 test set; On AIME 2024 math problems, Qwen2.5-32B-Instruct improved by 10% due to RLSP. However, a more important finding of this work is that the models trained using RLSP, even with the simplest exploration reward that encourages the model to take more intermediate steps, showed several emergent behaviors such as backtracking, exploration of ideas, and verification. These findings demonstrate that RLSP framework might be enough to enable emergence of complex reasoning abilities in LLMs when scaled. Lastly, we propose a theory as to why RLSP search strategy is more suitable for LLMs inspired by a remarkable result that says CoT provably increases computational power of LLMs, which grows as the number of steps in CoT \cite{li2024chain,merrill2023expresssive}.

📄 PDF Abstract BibTeX arXiv:2502.06773

Code (4)

GuanghaoYe/Emergence-of-Thinking 공식 구현 pytorch
OpenLLMAI/OpenLLaMA2 pytorch
OpenLLMAI/OpenRLHF pytorch
openrlhf/openrlhf pytorch

Tasks

Math

Methods 이 논문이 사용한 방법론

Entropy Regularization 설명 없음
PPO Proximal Policy Optimization, or PPO, is a policy gradient method for reinforcement learning. The motivation was to have an algorithm with the data efficiency and reliable…
AlphaZero AlphaZero is a reinforcement learning agent for playing board games such as Go, chess, and shogi.

Similar Papers 제목 키워드 기반

MER-R1: Multimodal Emotion Reasoning via Slow-Fast Thinking Synergy

2026-06-26 · Zhiyuan Han, Beier Zhu, Wenwen Tong, Chengwei Qin 외 arxiv

We find that explicit reasoning does not necessarily translate into better multimodal emotion recognition (MER) accuracy, even though it makes predictions more interpretable. Specifically, for reasoning-based MLLMs, fast…

Multimodal Emotion RecognitionReinforcement Learning

MM-THEBench: Do Reasoning MLLMs Think Reasonably?

2026-01-30 · Zhidian Huang, Zijun Yao, Ji Qi, Shangqing Tu 외 arxiv

Recent advances in multimodal large language models (MLLMs) mark a shift from non-thinking models to post-trained reasoning models capable of solving complex problems through thinking. However, whether such thinking miti…

Benchmarking the Thinking Mode of Multimodal Large Language Models in Clinical Tasks

2025-11-05 · Jindong Hong, Tianjie Chen, Lingjie Luo, Chuanyang Zheng 외 arxiv

A recent advancement in Multimodal Large Language Models (MLLMs) research is the emergence of "reasoning MLLMs" that offer explicit control over their internal thinking processes (normally referred as the "thinking mode"…

To think inside the box, or to think out of the box? Scientific discovery via the reciprocation of insights and concepts

2022-12-01 · Yu-Zhe Shi, Manjie Xu, Wenjuan Han, Yixin Zhu

If scientific discovery is one of the main driving forces of human progress, insight is the fuel for the engine, which has long attracted behavior-level research to understand and model its underlying cognitive process. …

Diversityscientific discovery

ThinkTuning: Instilling Cognitive Reflections without Distillation

2025-08-11 · Aswin RRV, Jacob Dineen, Divij Handa, Md Nayem Uddin 외 arxiv

Recent advances in test-time scaling have led to the emergence of thinking LLMs that exhibit self-reflective behaviors and multi-step reasoning. While RL drives this self-improvement paradigm, a recent study (Gandhi et a…