paper-with-me

Papers

ReST-MCTS*: LLM Self-Training via Process Reward Guided Tree Search

2024-06-06 · Dan Zhang, Sining Zhoubian, Ziniu Hu, Yisong Yue, Yuxiao Dong, Jie Tang

Recent methodologies in LLM self-training mostly rely on LLM generating responses and filtering those with correct output answers as training data. This approach often yields a low-quality fine-tuning training set (e.g., incorrect plans or intermediate reasoning). In this paper, we develop a reinforced self-training approach, called ReST-MCTS*, based on integrating process reward guidance with tree search MCTS* for collecting higher-quality reasoning traces as well as per-step value to train policy and reward models. ReST-MCTS* circumvents the per-step manual annotation typically used to train process rewards by tree-search-based reinforcement learning: Given oracle final correct answers, ReST-MCTS* is able to infer the correct process rewards by estimating the probability this step can help lead to the correct answer. These inferred rewards serve dual purposes: they act as value targets for further refining the process reward model and also facilitate the selection of high-quality traces for policy model self-training. We first show that the tree-search policy in ReST-MCTS* achieves higher accuracy compared with prior LLM reasoning baselines such as Best-of-N and Tree-of-Thought, within the same search budget. We then show that by using traces searched by this tree-search policy as training data, we can continuously enhance the three language models for multiple iterations, and outperform other self-training algorithms such as ReST$^\text{EM}$ and Self-Rewarding LM. We release all code at https://github.com/THUDM/ReST-MCTS.

📄 PDF Abstract BibTeX arXiv:2406.03816

Code (2)

THUDM/ReST-MCTS 공식 구현 pytorch
DIRECT-BIT/SRA-MCTS

Methods 이 논문이 사용한 방법론

SET Dynamic Sparse Training method where weight mask is updated randomly periodically

Similar Papers 제목 키워드 기반

ReST-RL: Achieving Accurate Code Reasoning of LLMs with Optimized Self-Training and Decoding

2025-08-27 · Sining Zhoubian, Dan Zhang, Jie Tang arxiv

With respect to improving the reasoning accuracy of LLMs, the representative reinforcement learning (RL) method GRPO faces failure due to insignificant reward variance, while verification methods based on process reward …

Reinforcement Learning

Reward-Centered ReST-MCTS: A Robust Decision-Making Framework for Robotic Manipulation in High Uncertainty Environments

2025-03-07 · Xibai Wang

Monte Carlo Tree Search (MCTS) has emerged as a powerful tool for decision-making in robotics, enabling efficient exploration of large search spaces. However, traditional MCTS methods struggle in environments characteriz…

Decision MakingEfficient Exploration

Learning Policies from Self-Play with Policy Gradients and MCTS Value Estimates

2019-05-14 · Dennis J. N. J. Soemers, Éric Piette, Matthew Stephenson, Cameron Browne

In recent years, state-of-the-art game-playing agents often involve policies that are trained in self-playing processes where Monte Carlo tree search (MCTS) algorithms and trained policies iteratively improve each other.…

Board Games

rStar-Math: Small LLMs Can Master Math Reasoning with Self-Evolved Deep Thinking

2025-01-08 · Xinyu Guan, Li Lyna Zhang, Yifei Liu, Ning Shang 외

We present rStar-Math to demonstrate that small language models (SLMs) can rival or even surpass the math reasoning capability of OpenAI o1, without distillation from superior models. rStar-Math achieves this by exercisi…

Math

RPM-MCTS: Knowledge-Retrieval as Process Reward Model with Monte Carlo Tree Search for Code Generation

2025-11-25 · Yuanyuan Lin, Xiangyu Ouyang, Teng Zhang, Kaixin Sui arxiv

Tree search-based methods have made significant progress in enhancing the code generation capabilities of large language models. However, due to the difficulty in effectively evaluating intermediate algorithmic steps and…

Code Generation