论文

用小模型学搜索策略,提升大模型推理 pass@k

Beyond Repeated Sampling: Learning Search Policies for LLM Reasoning

精选理由

一个小的概念生成器经过 RL 训练后,能当搜索策略帮大模型多解出难题,还能跨模型复用,思路挺有意思。

论文针对重复采样在难题上容易产生近似重复解的问题,提出先采样多样化概念再条件化生成答案的搜索策略。作者用强化学习训练一个小型概念生成器,以冻结的大模型下游成功率为奖励。在数学推理基准上,该方法在同等推理预算下提升了 pass@k,超过从更大未调优模型抽取概念的效果。概念生成器还能迁移到不同家族的答案模型上使用。

原文 · arXiv cs.AI

Beyond Repeated Sampling: Learning Search Policies for LLM Reasoning

Large language models increasingly tackle hard reasoning problems by spending more test-time compute, yet the dominant strategy remains naive repeated sampling: draw many independent solutions and hope one is correct. Because such sampling explores only through local decoding noise, it tends to produce many near duplicate attempts rather than genuinely different ideas. We ask whether exploration can instead be steered at a semantic level, by first sampling problem specific concepts, hints, or strategies and then conditioning answer generation on them. We refine this into a simple, more exploratory procedure that emits many diverse concepts in a single trajectory, and evaluate it on hard problems where repeated sampling struggles. We then go a step further and make concept generation trainable: a small concept generator is optimized with reinforcement learning so that its concepts maximize the downstream success of a larger, frozen answer generator. On hard mathematical reasoning problems, the trained concept generator substantially improves the answer generator's pass@k over naive repeated sampling at the same answer generation allocation, surpasses concepts drawn from much larger untuned models, and transfers to answer generators it was never trained against, including a model from a different family. A small model can thus be trained into an effective, reusable search policy for a much larger one.