Papers › Information Gain-based Policy Optimization: A Simple and Effective Approach for...

Information Gain-based Policy Optimization: A Simple and Effective Approach for Multi-Turn Search Agents

16 Oct 2025ICLRarXiv:2510.14967added by Syntology

Guoqing Wang, Sunhao Dai, Guangze Ye, Zeyu Gan, Wei Yao, Yong Deng, Xiaofeng Wu, Zhenzhe Ying

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Large language model (LLM)-based agents are increasingly trained with reinforcement learning (RL) to enhance their ability to interact with external environments through tool use, particularly in search-based settings that require multi-turn reasoning and knowledge acquisition. However, existing approaches typically rely on outcome-based rewards that are only provided exclusively upon generating the final answer. This reward sparsity becomes particularly problematic in multi-turn settings, where long trajectories exacerbate three critical issues: (i) advantage collapse, where all rollouts receive identical rewards and provide no useful learning signals; (ii) lack of fine-grained credit assignment, where the correctness of intermediate turns is obscured, especially in long-horizon tasks; and (iii) poor sample efficiency, where each rollout yields only a single outcome signal, leading to low data utilization. In this paper, we propose Information Gain-based Policy Optimization (IGPO), a simple yet effective RL framework that provides dense and intrinsic supervision for multi-turn agent training. IGPO models each interaction turn as an incremental process of acquiring information about the ground truth, and defines turn-level rewards as the marginal increase in the policy's probability of producing the correct answer. Unlike prior process-level reward approaches that depend on external reward models or costly Monte Carlo estimation, IGPO derives intrinsic rewards directly from the model's own belief updates. These intrinsic turn-level rewards are combined with outcome-level supervision to form dense reward signals. Extensive experiments on both in-domain and out-of-domain benchmarks demonstrate that IGPO consistently outperforms strong baselines in multi-turn scenarios, achieving higher accuracy and improved data efficiency. Our code is available at https://github.com/GuoqingWang1/IGPO.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2510.14967")

Code

Syntology Ran 3 of 17 code samples harvested from 1 repository linked to this paper; 14 have no recorded run. Of those that ran: 1 ran · our draft was wrong; 1 ran · fixture could not drive it; 1 ran with no contract checked.

By repository: found in paper text by Syntology: 17 samples from 1 repository, 3 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

GuoqingWang1/IGPO found in paper text by SyntologyApache-2.0 report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

17 samples harvested; 3 ran; 0 honoured the contract we drafted; 14 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

1ran · our draft was wrong
1ran · fixture could not drive it
1ran
14unverified

Licence: 0 of the 17 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from GuoqingWang1/IGPO. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

is_ipv4 GuoqingWang1/IGPO/verl/utils/net_utils.py found in paper text by Syntology ran Apache-2.0 (permissive) · 735e93af30b15fa9 · report
union_tensor_dict GuoqingWang1/IGPO/verl/protocol.py found in paper text by Syntology ran · fixture could not drive it Apache-2.0 (permissive) · 21331a58f93375e4 · report
unpad_dataproto GuoqingWang1/IGPO/verl/protocol.py found in paper text by Syntology ran · our draft was wrong Apache-2.0 (permissive) · 25f0ea3f460f6ce1 · report
call_gpt_4o_mini GuoqingWang1/IGPO/evaluate/cacluate_metrics.py found in paper text by Syntology unverified Apache-2.0 (permissive) · e5ead6aad013dbb3 · report
check_tags_balance GuoqingWang1/IGPO/evaluate/cacluate_metrics.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 54d0cd89e3fa4317 · report
get_generation_config GuoqingWang1/IGPO/verl/utils/model.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 68aa34a57b353cae · report
get_huggingface_actor_config GuoqingWang1/IGPO/verl/utils/model.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 9411d1fb7e4f68e5 · report
get_tool_names GuoqingWang1/IGPO/tools_server/tools.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 3ef330f50eba38f6 · report
get_tools GuoqingWang1/IGPO/tools_server/tools.py found in paper text by Syntology unverified Apache-2.0 (permissive) · c5677288a38d7a82 · report
get_weight_loader GuoqingWang1/IGPO/verl/models/weight_loader_registry.py found in paper text by Syntology unverified Apache-2.0 (permissive) · acf240079d434746 · report
get_weight_saver GuoqingWang1/IGPO/verl/models/weight_loader_registry.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 1008c22d29f85015 · report
initialize_system_prompt GuoqingWang1/IGPO/tools_server/initialize_prompts.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 3342a992efb2b01e · report
is_ipv6 GuoqingWang1/IGPO/verl/utils/net_utils.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 705afe175ad8e404 · report
populate_template GuoqingWang1/IGPO/tools_server/initialize_prompts.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 95d41d682e3b2f44 · report
preprocess_text GuoqingWang1/IGPO/evaluate/cacluate_metrics.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 567311eaeb3eeea6 · report
squeeze GuoqingWang1/IGPO/verl/utils/model.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 3b15e2ac7497c441 · report
string_to_uuid GuoqingWang1/IGPO/tools_server/util.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 8f70e95490c5a263 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2510.14967, was issued in October 2025, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections