@cwolferesearch: Agentic RL requires new algorithm modifications. In GRPO, the “group” used starts to change when training agents… In va…
Summary
This thread discusses modifications to GRPO for agentic RL, focusing on different levels of advantage normalization (prompt-level, task-level, environment-level) to handle higher reward variance in multi-task, multi-turn environments.
View Cached Full Text
Cached at: 07/07/26, 09:38 PM
Agentic RL requires new algorithm modifications. In GRPO, the “group” used starts to change when training agents…
In vanilla GRPO, we sample multiple rollouts per prompt and compute the advantage by normalizing each rollout’s reward (i.e., subtracting the mean reward and dividing by the standard deviation of rewards in the group). This works well for single-turn tasks, but agentic RL can have much higher reward variance due to rollouts having multiple turns, different environments, etc.
To cope with higher variance in agentic RL, several papers modify GRPO by changing the group over which advantages are normalized:
(1) Prompt-level normalization. This is standard GRPO. For each prompt, sample multiple trajectories, compute the mean / standard deviation of rewards within that prompt group, and use these statistics to estimate an advantage for each trajectory.
(2) Task-level normalization. AgentRL first computes GRPO-style trajectory advantages, assigns these advantages to agent-generated tokens, and then normalizes token-level advantages across an entire task / domain. This reduces optimization scale differences across domains and prevents one task from dominating the update.
(3) Environment-level normalization. ERPO keeps the prompt-level reward mean from GRPO, but computes the reward standard deviation across all valid trajectories from questions in the same environment. In other words, the denominator in the GRPO-style advantage estimate pools rewards across a wider environment-level group.
Why does this help? Agentic RL is multi-task and multi-turn. Different environments can have different reward scales, difficulty levels, trajectory lengths, and variance. If we normalize only within each prompt group, the policy update can become noisy or dominated by a subset of tasks. By widening the normalization group from a prompt to an entire task / domain / environment, we can make advantage estimates more stable during agent training.
Relevant links for further reading:
- My blog: https://cameronrwolfe.substack.com/p/agentic-rl
- ERPO: https://arxiv.org/abs/2512.22857
- Task-Level Adv. Norm.: https://arxiv.org/abs/2510.04206
Similar Articles
Progress- and Reliability-Oriented Group Policy Optimization for Agentic Reinforcement Learning
ProGPO is a learned-critic-free method for step-level advantage estimation in group-based RL for LLM agents, using exact-prefix action comparisons and rollout-based state potentials to improve credit assignment on long-horizon tasks. Experiments on ALFWorld and WebShop with Qwen2.5 models show it outperforms existing agentic RL baselines.
@cwolferesearch: One of the hardest aspects of agentic RL is managing / scaling environments... [1/6]
A thread discussing one of the hardest aspects of agentic reinforcement learning: managing and scaling environments.
@cwolferesearch: I just published a blog on agentic RL that covers 10+ recent frameworks in the space. Here are the key takeaways… Link …
A blog post summarizing ten recent agentic RL frameworks and best practices, covering modular interfaces, trajectory structure, action masks, process rewards, advantage normalization, scalable rollouts, stability/exploration, and task curriculum.
GAGPO: Generalized Advantage Grouped Policy Optimization
GAGPO proposes a critic-free RL method that uses a non-parametric grouped value proxy for step-level credit assignment in multi-turn agentic tasks, outperforming strong baselines on ALFWorld and WebShop.
@cwolferesearch: I've been reading a ton of agentic RL papers recently. Out of all the work, one of the only commonly-used tricks is act…
Discussion of recent agentic RL papers, highlighting action masking as a common technique and its evolution with world modeling papers like ECHO and PaW.