超要約: 教師データなしでAIが検索能力を爆上げするSSPってすごい!🔍
💎 ギャル的キラキラポイント✨ ● 教師データ(先生)いらず!🤖→🌟 ● 自己プレイでどんどん賢くなる!🧠✨ ● 検索・推論(考えを巡らす事)・自己検証(答え合わせ)が全部できる!😎
詳細解説 ● 背景 LLM(大規模言語モデル)を使って、すごい検索エージェント🤖を作りたいけど、先生役のデータ集めが大変だったの🥺 そこで、自己プレイ(Self-play)って方法を試したら、なんと!AIが自分で成長し始めたんだって!
● 方法 AI同士が勝手にクイズ大会みたいなのを始めて、お互いを成長させていくイメージ😎 質問するAI(提案者)と、答えるAI(解決者)がいて、RAG(検索拡張生成)を使って答え合わせもするんだって!
続きは「らくらく論文」アプリで
Reinforcement learning with verifiable rewards (RLVR) has become the mainstream technique for training LLM agents. However, RLVR highly depends on well-crafted task queries and corresponding ground-truth answers to provide accurate rewards, which requires significant human effort and hinders the scaling of RL processes, especially in agentic scenarios. Although a few recent works explore task synthesis methods, the difficulty of generated agentic tasks can hardly be controlled to provide effective RL training advantages. To achieve agentic RLVR with higher scalability, we explore self-play training for deep search agents, in which the learning LLM utilizes multi-turn search engine calling and acts simultaneously as both a task proposer and a problem solver. The task proposer aims to generate deep search queries with well-defined ground-truth answers and increasing task difficulty. The problem solver tries to handle the generated search queries and output the correct answer predictions. To ensure that each generated search query has accurate ground truth, we collect all the searching results from the proposer's trajectory as external knowledge, then conduct retrieval-augmentation generation (RAG) to test whether the proposed query can be correctly answered with all necessary search documents provided. In this search self-play (SSP) game, the proposer and the solver co-evolve their agent capabilities through both competition and cooperation. With substantial experimental results, we find that SSP can significantly improve search agents' performance uniformly on various benchmarks without any supervision under both from-scratch and continuous RL training setups. The code is at https://github.com/Qwen-Applications/SSP.