SPO++: Stream-Aligned Policy Optimization for Asynchronous Agentic RL

TL;DR

SPO++ aligns advantage normalization with action-token measure using event-time memory, boosting asynchronous RL efficiency with 19-point reward improvement.

cs.AI 🔴 Advanced 2026-08-26 66 views
Kai Ruan Jinghao Lin Qianshan Wei Ziqi Zhou Zihe Huang
Reinforcement Learning Policy Optimization Asynchronous Systems Advantage Estimation Model Efficiency

Key Findings

Methodology

This paper introduces SPO++, which retains SPO's single-rollout dependency and terminal outcome, but employs an event-based prompt tracker and standardizes advantages under the action-token measure. The event tracker records outcomes at discrete policy events, ensuring invariance to receipt order, while advantage normalization aligns the scalar advantage with the token-based actor loss. These mechanisms involve a geometric decay-based event coordinate and advantage standardization formula, improving stability and efficiency in asynchronous RL. The approach combines policy clock alignment with advantage measure consistency, addressing bias issues in long-horizon tasks.

Key Results

  • Across ALFWorld (0.8B and 2B models) and Math-TIR, SPO++ outperforms SPO with increases of 19.00 and 15.92 reward points in curve area, and about 2.5 points in final reward. The advantage normalization component is validated by ablation, showing the largest contribution to performance gains.
  • Training curves demonstrate faster reward acquisition, lower KL divergence, and reduced clipping ratios, indicating more stable and efficient optimization. The normalized advantage approach reduces bias caused by response length and temporal misalignment, leading to improved sample efficiency.
  • Ablation results confirm that advantage measure normalization is the key factor; without it, performance drops significantly, highlighting its critical role in aligning advantage estimates with the actor loss in asynchronous settings.

Significance

This work addresses fundamental challenges in asynchronous RL, particularly the mismatch between trajectory advantages and actor loss measures. By standardizing advantages under the action-token measure and organizing evidence by policy event time, SPO++ significantly enhances learning efficiency for large language models in long-horizon tasks. Its theoretical and empirical contributions pave the way for more robust, scalable, and sample-efficient RL systems, with broad implications for autonomous agents, multi-modal reasoning, and real-world tool use. The event-time memory mechanism also offers a new perspective on decoupling policy clock from data collection, crucial for real-time systems.

Technical Contribution

The core innovations include the introduction of event-based prompt tracking with invariant outcome estimates and advantage normalization under the action-token measure. These ensure alignment between the persistent baseline and the policy clock, reducing bias and variance in advantage estimates. The formulas for event coordinate calculation and advantage standardization are theoretically grounded, enabling stable, critic-free end-to-end training. The approach is compatible with various model scales and tasks, offering a new paradigm for asynchronous RL in language modeling and beyond.

Novelty

This is the first systematic application of advantage normalization based on action-token measures combined with event-time memory in asynchronous RL. Unlike previous trajectory-based or critic-dependent methods, SPO++ decouples the advantage baseline from receipt order and aligns it with the actor's token-based loss. The use of discrete policy events for organizing evidence and advantage standardization represents a novel approach that significantly improves training stability and efficiency, especially in long-horizon, tool-using tasks.

Limitations

  • The fixed event coordinate system may face challenges in extremely long or high-frequency interaction environments, potentially causing delays in information updates.
  • Memory storage and computational overhead could become bottlenecks in very large models or complex multi-modal tasks, requiring further optimization.
  • Experiments are limited to specific tasks and model sizes; generalization to more diverse, real-world scenarios remains to be validated.

Future Work

Future research will explore adaptive event memory mechanisms to handle dynamic environments, integrate multi-modal data for richer context, and extend the framework to larger models and real-world applications. Investigating methods to reduce memory overhead and improve scalability will be critical for deploying SPO++ in industrial settings. Additionally, combining this approach with imitation learning and multi-task learning could further enhance autonomous agent capabilities.

AI Executive Summary

Reinforcement learning for language models has seen rapid progress, yet long-horizon tasks involving complex tool use still face efficiency and stability hurdles. Traditional advantage estimation methods often struggle with asynchronous data collection, leading to bias and slow convergence. To address this, SPO++ introduces a novel framework that aligns advantage normalization with the token-based actor loss by organizing evidence via discrete policy events. This event-time memory mechanism ensures invariance to receipt order and maintains a consistent baseline, effectively decoupling the policy clock from data collection timing. The advantage normalization formula standardizes terminal advantages under the action-token measure, reducing bias caused by response length and temporal misalignment.

Experimental results on ALFWorld and Math-TIR tasks demonstrate that SPO++ significantly outperforms SPO, with improvements of up to 19 reward points in curve area and faster reward acquisition. The ablation studies confirm that advantage measure normalization is the most impactful component, validating the core hypothesis. The method exhibits more stable training dynamics, lower KL divergence, and fewer clipping events, indicating higher sample efficiency and robustness.

This work advances the theoretical understanding of advantage estimation in asynchronous RL, providing a practical solution for large language models engaged in long, complex interactions. Its implications extend to autonomous agents, multi-modal reasoning, and real-time decision-making systems. Future directions include dynamic event memory, multi-modal integration, and scaling to larger models, aiming to make reinforcement learning more effective and scalable in real-world applications.

Deep Dive

Plain Language Accessible to non-experts

想象你在一个工厂里工作,每天都要完成很多任务,比如组装零件、检查产品、打包发货。每个任务都需要记录时间和结果,但如果你每次都从头开始记忆,效率会很低。于是,你的工厂引入了一个智能记忆系统,把每个任务的关键时间点和结果用标签标记出来。这样,不管你什么时候需要回顾,都可以快速找到对应的任务信息,不会因为时间长了而忘记细节。这个系统就像SPO++,用事件标签和标准化的方法,让机器人能更快、更准确地学习和完成复杂任务。它保证每个动作的“价值”都在正确的尺度上,不会因为任务长短不同而搞错,从而大大提高了效率和稳定性。

ELI14 Explained like you're 14

想象你在玩一个超级复杂的游戏,你需要记住很多事情,比如每个任务的奖励、你什么时候做了什么。以前的方法就像用一张大地图,试图记住所有细节,但有时候信息会变得混乱,导致你做错事情。现在,这个新方法就像给每个任务贴上标签,标明什么时候完成、奖励是多少。每次你完成任务,助手会用这个标签帮你记忆,确保每个奖励都在正确的尺度上,不会因为任务长短不同而搞错。这让你学得更快,玩得更顺畅。就像你用一个聪明的记忆系统,帮你在游戏中变得更厉害!

Abstract

Group-relative reinforcement learning waits for sibling rollouts of the same prompt, which is costly for long and variable tool-use trajectories. Single-stream Policy Optimization (SPO) removes this dependency with a persistent prompt-level value estimate, but its recipe whitens one advantage per trajectory before optimizing a token-mean actor loss. We show that trajectory centering generally does not center the token-weighted quantity consumed by the actor, and fix the mismatch by standardizing terminal-outcome advantages under the action-token measure. We additionally organize prompt evidence by the policy event that generated it rather than learner receipt order. Across matched runs on ALFWorld at two model scales and on Math-TIR, SPO++ improves online learning efficiency over SPO. A paired ablation identifies action-token-measure normalization as the strongest tested component.

cs.AI