Deconstructing Off-Policy Ratios: Entropy-Scaled Trust Regions for Asynchronous Reinforcement Learning
Abstract
Asynchronous reinforcement learning (RL) accelerates large language model (LLM) post-training by overlapping rollout generation with policy optimization, but the resulting stale, off-policy data can destabilize optimization and ultimately cause policy collapse. Existing methods typically retain or discard tokens based solely on the magnitude of their importance ratios, applying the same threshold uniformly across token positions. In this work, we reveal that the natural scale of the importance ratio varies systematically with token entropy. Under asynchronous dynamics, this entropy-ratio scaling dictates two distinct phenomena: at low entropy, the inherent train-inference discrepancy is drastically amplified into substantial sampling noise; at high entropy, in-flight weight updates naturally induce pronounced, legitimate exploratory deviations. Consequently, magnitude-only correction inadvertently admits the amplified noise while strictly masking out the essential exploration triggered by in-flight updates. To address this, we propose the Entropy-Scaled Trust Region (ESTR), which scales each token’s off-policy deviation by its local entropy, requiring no auxiliary forward passes or explicit version-switch detection. Across long-horizon agentic tasks and mathematical reasoning benchmarks, ESTR consistently outperforms existing asynchronous methods and achieves the best train-inference consistency. Compared with synchronous GRPO, ESTR attains comparable accuracy while improving training speed by .
1Beijing University of Posts and Telecommunications, 2Peking University, 3University of Science and Technology of China
4Institute of Computing Technology, Chinese Academy of Sciences, 5Baidu Inc.
1 Introduction
Reinforcement learning (RL) has become the dominant paradigm for aligning large language models (DeepSeek-AI 2026) and for eliciting long-horizon reasoning (Chen et al. 2025; Yu et al. 2025; Zheng et al. 2025a) and agentic behavior (GLM-5-Team et al. 2026). To scale RL to long, multi-turn rollouts, modern systems increasingly adopt asynchronous training (Sheng et al. 2025; Fu et al. 2026a; Lu et al. 2025; Piché et al. 2025; Hu et al. 2026; Wu et al. 2025; Bai et al. 2026), where trajectory generation and policy optimization are decoupled and run concurrently. This dramatically improves throughput (Li et al. 2026a) but breaks the on-policy assumption (Li et al. 2026b): each update consumes rollouts sampled from behavior policies that lag behind and diverge from the target policy being optimized. In long multi-turn rollouts, a single trajectory may even span multiple weight versions. Optimizing against such stale, ill-defined behavior policies injects high-variance off-policy gradients that, in the worst case, drive training into irreversible policy collapse (Zheng et al. 2025b). Mitigating this instability without sacrificing the throughput benefits of asynchrony is thus a central challenge for scaling RL on LLMs.
Existing stabilization methods fall into three families: importance sampling correction, i.e., interval clipping (Li et al. 2026c; Çağatan et al. 2026; Fu et al. 2026b; Luo et al. 2026; Xie et al. 2026) and hard masking (Yao et al. 2025; Team et al. 2025; Guo et al. 2026; Zheng et al. 2025b); staleness-mismatch decoupling (Fu et al. 2026a; Guan et al. 2026); and off-policy objective design (Ritter et al. 2026; Yuan et al. 2025). Despite their differences, these methods rest on two implicit premises that both fail in asynchronous agentic RL. One is that a token’s trustworthiness can be read from the magnitude of its importance ratio. We find instead that this magnitude is intrinsically governed by token entropy, its natural scale growing with entropy. At confident, low-entropy tokens, a near-zero probability amplifies a small train-inference gap into a large ratio that is mere noise rather than genuine drift, whereas at high entropy asynchronous in-flight weight updates inject large ratios that carry genuine exploration, which a magnitude threshold wrongly suppresses. The other is that each trajectory comes from a single, well-defined behavior policy. Yet a long multi-turn rollout is produced by a mixture of weight versions diverging from the target to varying degrees, so no single reference behavior policy is even well defined.
Motivated by these empirical findings, we propose the Entropy-Scaled Trust Region (ESTR). Specifically, our main contributions are:
- •
We establish a fundamental entropy-ratio relation, proving that the importance ratio’s natural scale is governed by token entropy. This reveals that conventional magnitude-only masking fundamentally fails at low entropy, where it erroneously admits amplified sampling noise.
- •
We decompose asynchronous staleness to identify an overlooked intra-trajectory version switching mechanism. We demonstrate that these in-flight updates trigger concurrent surges in token entropy and importance ratios, which constitute genuine exploration that conventional methods indiscriminately suppress.
- •
We propose the Entropy-Scaled Trust Region (ESTR), a token-level trust region for asynchronous RL whose boundary expands and contracts with each token’s entropy, requiring no magnitude bias or behavior-policy reconstruction. Across long-horizon agentic tasks and complex reasoning benchmarks, ESTR consistently surpasses the strongest asynchronous baseline, reaching 37.3 avg@1 on BrowseComp-Plus versus 34.9 for the best prior method, and matches synchronous GRPO while training faster.
2 Related Work
To mitigate the instability of asynchronous LLM RL, prior works have explored various stabilization strategies. While these methods perform strongly in standard settings, their effectiveness rests on assumptions that break down under the highly dynamic nature of asynchronous agentic training.
A prominent line of work controls variance through importance-sampling corrections. One family discards out-of-bounds tokens directly, either by interval clipping (Çağatan et al. 2026; Fu et al. 2026b; Shen et al. 2026; Li et al. 2026c), which constrains each ratio to a fixed interval, or by hard masking (Yao et al. 2025; Team et al. 2025; Guo et al. 2026; Zheng et al. 2025b), which zeroes out the contribution of any token whose ratio exceeds a preset bound. Both rest on the same premise, reading a token’s untrustworthiness off the magnitude of its importance ratio and letting a single global threshold, shared across all positions irrespective of their local uncertainty, decide which tokens are kept. A second family modulates updates through finer-grained stability signals: ESPO (Sheng et al. 2026) regroups sequences according to their entropy before correction, but such regrouping presumes a relatively stable entropy structure across a batch, whereas under asynchronous rollouts staleness and in-flight version switches perturb per-token entropy and make the grouping itself noisy; AEPO (Dong et al. 2025) balances entropy across the trajectory, yet requires explicitly locating specific high-entropy positions and the turn-switching points of agentic rollouts, introducing additional overhead; and VCPO (Huang et al. 2026) uses the effective sample size as an aggregated variance signal to dynamically scale updates. Although these methods move beyond raw magnitude, entropy or variance still enters as an external reweighting or grouping heuristic layered on top of a trust region that is treated as position-invariant, leaving the boundary of a valid deviation uniform rather than redefined according to each token’s local state.
Another direction is staleness–mismatch decoupling (Fu et al. 2026a; Guan et al. 2026), which approximates the behavior policy that actually generated each rollout in order to separate genuine policy drift from benign staleness, and correct only the former. This isolation, however, hinges on the existence of a single, well-defined behavior policy for the trajectory—an assumption that does not hold in the asynchronous agentic setting. In long multi-turn rollouts, in-flight weight updates synchronize the inference engine to newer parameters mid-generation, so a single trajectory is progressively produced by a mixture of weight versions rather than one fixed policy. There is thus no complete, uniform behavior policy to recover for the whole trajectory, and the version that generated any given token must itself be inferred, making the clean separation of drift from staleness difficult to realize.
A related direction is off-policy objective design (Ritter et al. 2026; Shen et al. 2026; Luo et al. 2026; Yuan et al. 2025), which redesigns the objective to reuse stale data without hard cutoffs, either by softening clipping into a distributional variance penalty or by regressing against a reference policy without importance ratios. Yet the former imposes a batch-level, position-invariant budget that still cannot separate low-entropy noise from high-entropy exploration, while the latter forgoes importance correction altogether, treating every token uniformly regardless of its off-policy deviation.
Across these lines, the common limitation is a boundary of trust that is fixed either by ratio magnitude or at the sequence level, decoupled from the local state of each token. Our work departs from this view. Rather than tuning a global cutoff or reconstructing a behavior policy, ESTR scales the trust region to each token’s local entropy, standardizing each deviation by its own local entropy. This design is grounded in an empirical observation that the natural scale of the importance ratio is tightly coupled with token entropy, the relationship that motivates and underpins the method.
3 Motivation
To understand why magnitude-only suppression struggles in asynchronous agentic RL, we analyze the joint distribution of token entropy and the log-importance-ratio on real rollouts using Qwen3-30B-A3B on BrowseComp-Plus (Chen et al. 2025). We find that is inherently coupled with token entropy, suggesting that a single global cutoff may not fully accommodate this state-dependent variance.
3.1 Ratio Magnitude Relates to Entropy
Empirically, the magnitude of the ratio is not uniform but grows with token entropy. As shown by the per-bin mean in Figure 1 (purple curve), the average increases monotonically with . We summarize this core relation as follows:
| (1) |
Rather than a constant horizontal line, the bound of valid expands as entropy increases. Formal mathematical proofs for this relation are provided in the Appendix. Given that the natural scale of is governed by entropy, we must examine how the massive deviations observed in asynchronous RL align with this expected scale across different entropy regimes.
3.2 Dual Phenomena under Asynchronous Dynamics
As illustrated in Figure 2, unlike synchronous RL, asynchronous RL maximizes throughput by eliminating pipeline bubbles. However, this causes in-flight weight updates to sync mid-generation. Let be the target policy version at the current update, and let and be the weight versions that generated the first and last tokens of the rollout, respectively. We formalize this by decomposing the total staleness into two components:
| (2) |
The term captures the intra-trajectory version switch, meaning a single long trajectory spans multiple weight versions.
When a version switch occurs mid-trajectory, the newly updated weights evaluate a prefix generated by older weights, causing both and to spike concurrently at the switch point (; Figure 3). By Eq. (1), this joint surge factorizes as
| (3) |
so the spike is carried entirely by the entropy factor , while the standardized deviation stays at scale , invariant to it (Appendix). Hence at a switch
| (4) |
a fixed threshold discards these ratios as drift, whereas they are in fact valid exploration within the natural high-entropy envelope.
Conversely, the low-entropy region in Figure 1 exhibits massive values tracing concave arcs. At a confident position the model reduces to a binary choice between a dominant token () and a sampled off-mode alternative (), so the entropy hugs the binary bound
| (5) |
independent of vocabulary size. When the off-mode token is sampled, the train-inference mismatch is amplified by the near-zero denominator, and the delta method gives
| (6) |
Since as while diverges, Eq. (5)–(6) jointly produce the concave, entropy-opening arcs (derivation in the Appendix). These outliers are amplified sampling noise, not policy drift: fixed-magnitude thresholds admit them, whereas our entropy-scaled rule discards them.
3.3 An Entropy-Scaled Design Principle
These observations establish a trust criterion, where the entropy-ratio relation itself dictates the boundary between valid updates and harmful drift. Fluctuations within the natural envelope of their local entropy are genuine exploration, whereas outliers exceeding this scale are amplified sampling noise. A fixed-magnitude threshold applies one uniform boundary across the joint distribution, suppressing valid exploration at high entropy while admitting inflated noise at low entropy. This motivates a principled paradigm: the trust region should be dynamically scaled by local entropy. Enforcing such an entropy-scaled threshold preserves deviations that match their natural scale and better fits the dynamics of asynchronous RL, which we formalize next.
4 Method
The preceding analysis established that the natural scale of the importance ratio is dictated by local entropy, and that a trustworthy update criterion must be relative to this scale. We now formalize this principle as the Entropy-Scaled Trust Region (ESTR).
At token position with state , let denote the behavior policy that generated token , and the target policy being optimized. We define the log-importance-ratio and the behavior-policy entropy as:
| (7) | ||||
| (8) |
4.1 A Second-Order Trust Region
To construct an entropy-scaled threshold, we must first examine how deviations are constrained. Asynchronous RL estimates the policy gradient for using data sampled by the behavior policy . When the two are locally close, the per-token KL divergence admits a second-order expansion (derivation in the Appendix):
| (9) |
A trust region therefore bounds the second moment of the log-ratio. The conventional fixed budget implicitly assumes this moment is position-invariant (homoscedastic). The scaling relation of Eq. (1), however, shows that it grows with local entropy: the data are intrinsically heteroscedastic, and a constant budget is mis-scaled at every entropy level.
4.2 An Entropy-Standardized Budget
The remedy is to constrain not the raw deviation but the deviation measured in units of its own local scale. Let denote the position-dependent scale of ; by Eq. (1), . We define the standardized deviation and impose a uniform budget on it:
| (10) |
which restores a single, position-invariant trust region across all entropy regimes. Concretely, we instantiate the scale as
| (11) |
where guards against degenerate near-zero entropy and is read off the inference-side logits at no extra cost. Modeling as a small logit perturbation of with per-logit variance , a first-order expansion gives (Appendix)
| (12) |
so the standardized deviation carries a position-invariant scale,
| (13) |
independent of entropy. The same scale governs the low-entropy regime, whose amplified-noise envelope (Eq. (6)) diverges as yet stays monotonically tied to (Appendix). Normalizing by thus tightens the budget exactly where this noise dominates, while the bounded keeps the criterion numerically stable.
4.3 Entropy-Scaled Keep Mask
Substituting the entropy scale (11) into the standardized trust region (10) yields the entropy-scaled keep rule. Defining the entropy-scaled score
| (14) |
a token is retained iff it lies within the entropy-dependent boundary:
| (15) |
The score measures each token’s deviation relative to the natural scale permitted by its local entropy, while controls the acceptance budget. The criterion therefore tightens the boundary where low-entropy noise dominates and widens it where high-entropy deviations reflect exploration, filtering amplified sampling noise without the magnitude bias of a fixed threshold.
Proposition 1 (Strict Generalization)
The keep rule (15) accepts a token inside the entropy-dependent boundary
| (16) |
Forcing the scale to be constant, , collapses this to the fixed threshold of prior methods, which the two boundaries share at the single crossover . Away from it, is strictly tighter at low entropy, where large ratios are amplified noise, and strictly wider at high entropy, where they are exploration, contracting to a floor as and growing like as entropy increases. Proof in the Appendix.
| Method | Qwen3-30B-A3B | Qwen2.5-7B | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| BrowseComp-Plus | GSM8K | AIME24 | AIME25 | AIME26 | AIME Avg. | |||||
| avg@1 | avg@4 | avg@4 | pass@4 | avg@4 | pass@4 | avg@4 | pass@4 | avg@4 | pass@4 | |
| GRPO(Sync) | 38.55 | 96.07 | 19.84 | 27.73 | 16.67 | 27.20 | 16.12 | 28.12 | 17.54 | 27.68 |
| GRPO(Async) | 28.91 | 60.72 | 14.17 | 25.69 | 14.16 | 22.57 | 12.50 | 20.75 | 13.61 | 23.00 |
| ICEPop | 32.53 | 65.01 | 17.52 | 27.42 | 15.78 | 25.45 | 14.16 | 22.01 | 15.82 | 24.96 |
| KPop | 34.94 | 70.51 | 18.74 | 26.61 | 15.12 | 25.08 | 14.79 | 24.73 | 16.22 | 25.47 |
| ESTR (Ours) | 37.34 | 95.69 | 20.03 | 31.78 | 15.64 | 26.23 | 15.46 | 27.14 | 17.04 | 28.38 |
4.4 The ESTR Objective
ESTR gates the per-token policy gradient with the entropy-scaled keep mask . With group-normalized advantage , the per-token quantities are
| (17) |
| (18) |
Though both act on the same importance ratio, the mask and the PPO clip play orthogonal roles. The clip bounds the step size of trusted tokens, whereas enforces the trust region by zeroing out any token that violates the entropy-scaled boundary, preventing severe off-policy deviations from corrupting the update. The full objective is
| (19) |
Since is fixed, and the hard mask is a stop-gradient gate, yielding
| (20) |
where is the clip indicator (Appendix). A masked token () is dropped from the loss entirely, whereas a clipped token () still enters the loss but with zero gradient. As a diagnostic of how aggressively the trust region discards tokens, we track the empirical masked fraction
| (21) |
In summary, ESTR is an entropy-scaled trust region for asynchronous RL. By scaling off-policy deviations against the local entropy scale, it filters amplified sampling noise at low entropy while preserving the genuine exploration injected by intra-trajectory version switches, precisely the signal that fixed-magnitude thresholds discard, securing training stability at the full throughput of asynchronous optimization.
5 Experiment
5.1 Setup
Tasks.
We evaluate ESTR on two task families. Long-horizon multi-turn tool use produces long rollouts that interleave reasoning with external tool calls: (i) agentic deep search on BrowseComp-Plus (Chen et al. 2025) with Qwen3-30B-A3B (Team 2025); and (ii) tool-integrated math on multi-turn GSM8K (Cobbe et al. 2021) under a binary exact-match reward. Mathematical reasoning tests generalization beyond the long-horizon regime: we train on DAPO-Math (Yu et al. 2025) with Qwen2.5-7B (Team 2024) and evaluate on AIME 2024 (Zhang and Math-AI 2024), 2025 (Zhang and Math-AI 2025), and 2026 (Zhang and Math-AI 2026).
Baselines.
All methods share the same experimental configuration, differing only in the token-level acceptance rule; all masking baselines act on the same off-policy ratio as ESTR. Sync is synchronous GRPO (Guo et al. 2025); Async is vanilla asynchronous training with no correction; IcePop (Team et al. 2025) keeps a token when its ratio lies within a fixed interval; and KPop (Guo et al. 2026) keeps a token when the bidirectional binary KL between behavior and target token probabilities stays below a threshold.
Implementation.
All experiments are implemented in the verl framework (Sheng et al. 2025) on H800 GPUs (8 per node), using disaggregated rollout and training pools in the asynchronous setting. The synchronous baseline colocates generation and training on the same total hardware, so all efficiency comparisons are made under equal resource budgets. Full hyperparameters, per-task resource splits, training configurations, and hyperparameter sensitivity studies are provided in the appendix.
5.2 Long-Horizon Multi-Turn Tool Use
Using the staleness definition from Eq. (2), we evaluate two long-horizon settings: agentic search on BrowseComp-Plus (, ), and tool-integrated math on GSM8K (, ). In both settings, ESTR significantly outperforms all other asynchronous baselines. By scaling the trust region to local entropy, ESTR successfully stabilizes training while preserving the legitimate exploration naturally induced by intra-trajectory version switches.
On BrowseComp-Plus, ESTR reaches 37.3 avg@1, surpassing all asynchronous baselines by a clear margin, as detailed in Table 1 (Async 28.9, IcePop 32.5, KPop 34.9). The underlying training dynamics provide further insights. Figure 5(a) illustrates that ESTR maintains a steady increase in policy entropy, ensuring progressive exploration. Concurrently, Figure 5(b) demonstrates that ESTR achieves the best train-inference consistency by effectively controlling the rollout–target KL divergence. As a result, its validation accuracy consistently outperforms the other asynchronous methods throughout the training process, as depicted in Figure 4. Additional training dynamics for all tasks are provided in the Appendix.
Under the more aggressive GSM8K configuration, Figure 6 shows that IcePop and KPop destabilize, with their training scores dropping irreversibly within a few hundred steps, whereas ESTR trains stably and achieves the highest performance. As reported in Table 1, ESTR reaches 95.7 on GSM8K, essentially matching synchronous GRPO, while the asynchronous baselines collapse to 60–71. This shared failure stems from the baselines’ fundamental design. Magnitude-only correction discards the high- tokens that carry essential exploration at high entropy, so these methods degrade and eventually fail as the off-policy gap expands. ESTR instead evaluates each token relative to its entropy scale, remaining well-calibrated across both settings.
5.3 Mathematical Reasoning
Figure 7 shows training rewards on DAPO-Math with Qwen2.5-7B (, ). Naïve asynchronous training collapses irreversibly early in training; IcePop and KPop avoid collapse but plateau at a lower reward; ESTR improves throughout training and attains the highest final reward. Table 1 reports downstream accuracy on AIME 2024–2026: ESTR reaches an avg@4 of , closely approaching the synchronous baseline of despite the aggressive staleness. Furthermore, it achieves the highest pass@4 of compared to for the synchronous baseline, indicating that the preserved high-entropy exploration translates into broader solution coverage rather than mere stability.
Mask behavior and variance control.
Figure 8 examines how each keep rule attains its stability. As shown in the left panel of Figure 8, ESTR attains the lowest masked fraction (Eq. (21)), consistently discarding the fewest tokens—roughly an order of magnitude below the fixed-threshold baselines. Despite sacrificing this minimal amount of tokens, it successfully maintains the lowest and most stable IS-ratio deviation throughout training, as illustrated in the right panel of Figure 8. In contrast, IcePop’s deviation drifts steadily upward in late training even though its is substantially higher. By achieving superior training stability at the lowest token cost, ESTR demonstrates that its entropy-scaled boundary removes precisely the harmful, noise-driven outliers rather than indiscriminately truncating high-ratio exploration. This directly instantiates the trust-region argument of Eq. (9): bounding the standardized deviation is sufficient to keep the second moment of the log-ratio in check.
Robustness to each staleness component.
Using the decomposition of Eq. (2), we stress each staleness source in isolation. The left panel of Figure 9 presents a sweep over the intra-trajectory staleness with , while the right panel displays the inter-trajectory staleness with . Under these stress tests, no configuration collapses. Instead, rewards degrade gracefully and monotonically as staleness grows, confirming that the entropy-scaled trust region absorbs both mid-trajectory version switches and stale off-policy batches without requiring any staleness-specific tuning.
| Method | Throughput | s/step | Speedup |
|---|---|---|---|
| GRPO(Sync) | 82.56 | 1356.47 | |
| ESTR | 214.38 | 514.84 |
5.4 Training Efficiency
Table 2 quantifies the throughput benefit that motivates asynchronous training in the first place, comparing ESTR against the synchronous baseline on identical hardware and parallelism. By decoupling generation from parameter updates, ESTR lifts rollout throughput by and shortens the per-step wall-clock time by . Crucially, this speedup comes at no accuracy cost: as shown in Table 1, ESTR matches the synchronous run on avg@4 and surpasses it on pass@4. The keep rule itself adds no measurable overhead—one entropy read per token—so the asynchronous speedup is realized essentially for free.
6 Conclusion
We introduce the Entropy-Scaled Trust Region (ESTR) to address the instability of asynchronous LLM reinforcement learning. By demonstrating that off-policy deviations scale intrinsically with token entropy, ESTR replaces conventional fixed-magnitude thresholds with an entropy-scaled trust region. This formulation systematically filters low-entropy noise while preserving high-entropy exploration, naturally absorbing the perturbations of intra-trajectory version switches without auxiliary overhead. Consequently, ESTR achieves synchronous-level accuracy while retaining the full throughput advantages of asynchronous optimization. Future work will explore extending this framework to tackle problem-solving in even longer-horizon agentic tasks under extreme asynchronous regimes.
References
- D-arl: a distribution-matched asynchronous reinforcement learning framework for language reasoning. Cited by: §1.
- Clipping-free policy optimization for large language models. External Links: 2601.22801, Link Cited by: §1, §2.
- BrowseComp-plus: a more fair and transparent evaluation benchmark of deep-research agent. External Links: 2508.06600, Link Cited by: §1, §3, §5.1.
- Training verifiers to solve math word problems. arXiv preprint arXiv:2110.14168. Cited by: §5.1.
- DeepSeek-v4: towards highly efficient million-token context intelligence. Cited by: §1.
- Agentic entropy-balanced policy optimization. External Links: 2510.14545, Link Cited by: §2.
- AReaL: a large-scale asynchronous reinforcement learning system for language reasoning. External Links: 2505.24298, Link Cited by: §1, §1, §2.
- From to : taming divergence in soft clipping via bilateral decoupled decay of probability gradient weight. External Links: 2603.14389, Link Cited by: §1, §2.
- GLM-5: from vibe coding to agentic engineering. External Links: 2602.15763, Link Cited by: §1.
- Missing old logits in asynchronous agentic rl: semantic mismatch and repair methods for off-policy correction. External Links: 2605.12070, Link Cited by: §1, §2.
- DeepSeek-r1 incentivizes reasoning in llms through reinforcement learning. Nature 645 (8081), pp. 633–638. External Links: ISSN 1476-4687, Link, Document Cited by: §5.1.
- KPop: taming training–inference mismatch in reinforcement learning with adaptive masking regions. External Links: Link Cited by: §1, §2, §5.1.
- DORA: a scalable asynchronous reinforcement learning system for language model training. External Links: 2604.26256, Link Cited by: §1.
- Stable asynchrony: variance-controlled off-policy rl for llms. External Links: 2602.17616, Link Cited by: §2.
- Unleashing efficient asynchronous rl post-training via staleness-constrained rollout coordination. External Links: 2601.12784, Link Cited by: §1.
- Trust region masking for long-horizon llm reinforcement learning. External Links: 2512.23075, Link Cited by: §1.
- BandPO: bridging trust regions and ratio clipping via probability-aware bounds for llm reinforcement learning. External Links: 2603.04918, Link Cited by: §1, §2.
- Part ii: roll flash – accelerating rlvr and agentic training with asynchrony. External Links: 2510.11345, Link Cited by: §1.
- Ratio-variance regularized policy optimization for efficient llm fine-tuning. External Links: 2601.03320, Link Cited by: §1, §2.
- PipelineRL: faster on-policy reinforcement learning for long sequence generation. External Links: 2509.19128, Link Cited by: §1.
- LLMs can learn to reason via off-policy rl. External Links: 2602.19362, Link Cited by: §1, §2.
- VESPO: variational sequence-level soft policy optimization for stable off-policy llm training. External Links: 2602.10693, Link Cited by: §2, §2.
- HybridFlow: a flexible and efficient rlhf framework. In Proceedings of the Twentieth European Conference on Computer Systems, EuroSys ’25, pp. 1279–1297. External Links: Link, Document Cited by: §1, §5.1.
- ESPO: entropy importance sampling policy optimization. External Links: 2512.00499, Link Cited by: §2.
- Every step evolves: scaling reinforcement learning for trillion-scale thinking model. External Links: 2510.18855, Link Cited by: §1, §2, §5.1.
- Qwen2.5: a party of foundation models. External Links: Link Cited by: §5.1.
- Qwen3 technical report. External Links: 2505.09388, Link Cited by: §5.1.
- LlamaRL: a distributed asynchronous reinforcement learning framework for efficient large-scale llm training. External Links: 2505.24034, Link Cited by: §1.
- ACPO: adaptive credit policy optimization via fine-grained surrogate entropy. External Links: 2607.03126, Link Cited by: §1.
- Your efficient rl framework secretly brings you off-policy rl training. External Links: Link Cited by: §1, §2.
- DAPO: an open-source llm reinforcement learning system at scale. External Links: 2503.14476, Link Cited by: §1, §5.1.
- Trajectory bellman residual minimization: a simple value-based method for llm reasoning. External Links: 2505.15311, Link Cited by: §1, §2.
- American invitational mathematics examination (aime) 2024. Cited by: §5.1.
- American invitational mathematics examination (aime) 2025. Cited by: §5.1.
- American invitational mathematics examination (aime) 2026. Cited by: §5.1.
- Group sequence policy optimization. External Links: 2507.18071, Link Cited by: §1.
- Prosperity before collapse: how far can off-policy rl reach with stale data on llms?. External Links: 2510.01161, Link Cited by: §1, §1, §2.
Appendix A Proof of the Entropy–Ratio Scaling Law
The Motivation section of the main text establishes the empirical scaling law (Eq. (1) of the main text). We now derive it analytically by modeling asynchronous off-policy deviation as a logit perturbation.
Setup and notation.
At step with state , let be the vocabulary. Let be the inference-side (behavior) distribution used during rollout, with logits ; that is,
| (22) |
where is the Shannon entropy. The token is sampled from . We model the training-side (target) policy as a logit perturbation of the inference distribution:
| (23) |
where the are mutually independent across the vocabulary and measures the local off-policy perturbation strength induced by asynchronous staleness. Define the log-importance-ratio
| (24) |
let denote the indicator function, and write
| (25) |
Proposition 2 (Entropy–ratio scaling)
Under the first-order (small-) approximation of (23),
| (26) |
and, applying the pointwise approximation , which is accurate for concentrated distributions,
| (27) |
Proof.
Taking logarithms of
| (28) |
and subtracting (the terms cancel) gives
| (29) |
Since , a first-order expansion at yields
| (30) |
Substituting into (29),
| (31) |
Because , we have ; in particular, coincides with to this order. By the independence of the and ,
| (32) |
Averaging over the sampled token , and using and ,
| (33) |
which proves (26). Applying term by term gives
| (34) |
establishing (27).
Switch-point invariance of the standardized deviation.
The scaling law of Proposition 2 also explains why an intra-trajectory version switch, which inflates both and , does not destabilize the entropy-scaled criterion. At a switch the behavior policy (old weights) and the target (new weights) differ by a logit perturbation of per-logit variance , as in (23).
Proposition 3 (Switch-point invariance)
Under the perturbation model of (23), the standardized deviation satisfies
| (35) |
with equality as . Hence, although a switch inflates both the entropy and the raw deviation , the standardized deviation is governed by the perturbation strength alone and is invariant to the entropy spike.
Proof.
By Proposition 2, . Dividing by the deterministic scale gives the equality in (35); since for , the bound follows, and as . The raw deviation scales with the entropy factor , whereas dividing by removes it, leaving only . A fixed-magnitude rule is therefore triggered by the spike alone, while the standardized criterion is not.
Empirical symmetry of the signed deviation.
Eq. (31) implies to first order, so the off-policy deviation is symmetric about zero and its natural scale is fully captured by the second moment. Figure 10 confirms this on real BrowseComp-Plus rollouts: the signed distributes symmetrically around zero at every entropy level, with the per-bin mean envelope () expanding as , in line with Proposition 2. This symmetry justifies gating tokens by the sign-free score without treating positive and negative deviations separately. The signed view also visualizes the two failure modes of a fixed threshold: it newly masks legitimate high-entropy exploration (blue) while admitting amplified low-entropy noise (red), both of which the entropy-scaled boundary handles correctly.
Appendix B Low-Entropy Regime: Amplified Off-Mode Noise and the Concave Arc
The preceding section characterizes the expected scale of . We now explain the extreme outliers observed at low entropy in the joint distribution (Figure 2 of the main text), which manifest as distinct concave arcs, and derive the variance law invoked in the Method section.
Variance law via the delta method.
At position , let be the realized target probability of the sampled token. Model the behavior probability as a sampling-side perturbation, with and . Treating the realization of the token as a Bernoulli event gives . Since to first order, the delta method yields
| (36) |
As —an off-mode token drawn at a highly confident position—the variance diverges purely because the near-zero denominator inflates a marginal absolute probability gap between the training and inference engines. Such outliers are amplified sampling noise, not policy drift.
The concave binary-entropy envelope.
To see why these outliers trace concave arcs in the plane, consider the minimum entropy attainable at a given confidence level. For a position whose mode carries probability (with the off-mode mass), entropy is minimized when the residual mass concentrates on a single alternative token, yielding the binary entropy
| (37) |
independently of vocabulary size; empirically the low-entropy population hugs this lower bound. On the high-confidence branch , a Taylor expansion gives
| (38) |
while by (36) the standard-deviation scale of the log-ratio is
| (39) |
Eliminating between the two expressions,
| (40) |
Since , the envelope vanishes strictly more slowly than , forcing the bounding envelope into the concave, entropy-opening arc observed in Figure 2 of the main text rather than a horizontal line.
Appendix C Second-Order Expansion of the KL Divergence
The Method section (“A Second-Order Trust Region”) states that
| (41) |
Writing , note first the exact identity
| (42) |
so the KL divergence can be written without approximation as
| (43) |
The integrand equals , whose second-order Taylor expansion is . Hence, when and are locally close,
| (44) |
Moreover, since under the perturbation model of the entropy–ratio scaling law derived above, the second moment coincides with the variance to this order, recovering the trust-region-on-variance reading used in the main text.
Appendix D Joint Monotonicity of and
The Method section replaces the singular variance scale with the entropy . Here denotes the vanishing off-mode mass at a confident position. We show that this substitution is order-preserving: the two quantities are strictly monotone in on , so one is a strictly monotone reparameterization of the other and thresholding them is equivalent up to a monotone change of scale.
Monotonicity of the variance scale.
Define
| (45) |
Differentiating,
| (46) |
so is strictly decreasing and convex on . Its range is
| (47) |
i.e., the variance scale grows without bound as the off-mode mass vanishes.
Monotonicity of the binary entropy.
For
| (48) |
term-by-term differentiation gives
| (49) | ||||
| (50) |
and summing the two yields
| (51) |
For we have , hence : is strictly increasing on . Differentiating (51) once more,
| (52) |
so is strictly concave, and it vanishes at the confident limit,
| (53) |
Monotone reparameterization.
Since is a strictly decreasing bijection from onto , it is invertible with
| (54) |
Composing, define , i.e.,
| (55) |
By the chain rule, using and ,
| (56) |
so is strictly decreasing. Hence is a strictly monotone (order-reversing) reparameterization of , and for any budget ,
| (57) |
so a bound on the variance scale is equivalent to an entropy threshold.
| BrowseComp-Plus | DAPO-Math | GSM8K | |
| Policy model | Qwen3-30B-A3B (MoE) | Qwen2.5-7B | Qwen2.5-7B |
| Train backend | Megatron | Megatron | Megatron |
| Rollout engine | SGLang | SGLang | SGLang |
| Task type | multi-turn agentic | single-turn | multi-turn tool |
| Reward | LLM judge | rule-based | rule-based |
| Total nodes (8 H800) | 4 | 2 | 2 |
| Train nodes | 2 | 1 | 1 |
| Rollout nodes | 2 | 1 | 1 |
| Train GPUs / Rollout GPUs | 16 / 16 | 8 / 8 | 8 / 8 |
| Actor TP/PP/CP/EP | 2/1/8/8 | 2/1/1/1 | 2/1/1/1 |
| Ref TP/PP/CP/EP | 2/1/4/8 | 2/1/1/1 | 2/1/1/1 |
| Rollout TP/EP | 8/1 | 2/1 | 2/1 |
| Rollout samples | 8 | 8 | 8 |
| Global batch (prompts) | 16 | 128 | 256 |
| Prompt length | 4096 | 2048 | 2048 |
| Response length | 32768 | 12288 | 8192 |
| Max model length | 40960 | 15376 | 12288 |
| Max turns | 100 | 100 | 100 |
| ESTR (default) | 0.7 | 1.6 | 1.6 |
| Entropy floor | 0.01 | 0.01 | 0.01 |
| Staleness threshold | 5 | 20 | 10 |
| Param-sync interval | 1 | 2 | 4 |
| Partial rollout | yes | yes | yes |
| Rollout mem. util. | 0.50 | 0.70 | 0.70 |
| Epochs | 5 | 12 | 12 |
Why entropy is the preferred scale.
Although and are threshold-equivalent, they differ sharply in numerical behavior. As the raw scale diverges, whereas stays bounded in . Moreover the empirically used is an aggregate statistic of the full next-token distribution, rather than a function of a single realized probability, so it is robust to single-token sampling noise. These properties justify using as the local scale in the keep rule.
Probability-space view of the two rules.
Figure 11 recasts the comparison above in probability space. Panel (a) verifies the premise of this section: high entropy corresponds to low realized token probability, so is a faithful, smoothly varying proxy for the confidence level . Panel (c) then exposes the magnitude bias of a fixed threshold from a complementary angle. Inverting shows that the absolute probability drift needed to trigger the mask scales linearly with : at confident positions the rule tolerates drifts an order of magnitude larger than at uncertain ones, which is exactly how the amplified low-entropy noise of Eq. (36) slips through. The entropy-scaled boundary instead keeps this trigger sensitivity bounded across the entire probability range, tightening where confidence is high. Panel (b) confirms that this reallocation is not achieved by masking more overall: the two rules mask comparable fractions at every probability level, and the fixed threshold is in fact more aggressive only at the lowest probabilities—the exploratory tokens it should preserve. The entropy-scaled rule thus redistributes a similar masking budget from legitimate exploration to amplified noise, consistent with the geometric analysis of the Strict Generalization property below.
Appendix E Proof of the Strict Generalization Property
Proposition 4 (Strict Generalization)
The fixed-threshold keep rule is the degenerate, position-invariant special case of the ESTR keep rule; conversely, ESTR is a strict, entropy-dependent generalization of it.
Setup.
The ESTR keep rule accepts a token when
| (58) |
so its acceptance boundary in the plane is the entropy-dependent curve
| (59) |
Fixed thresholding as a special case.
Suppose the scale is forced to be position-invariant, i.e.,
| (60) |
for some constant (the homoscedastic assumption). Substituting into (58) collapses the rule to
| (61) |
which is exactly the fixed-threshold mask employed by prior methods such as IcePop. Hence fixed-threshold masking is recovered whenever the entropy dependence is removed, establishing it as the constant-scale degenerate case of ESTR.
Geometric comparison.
Now compare the ESTR boundary (59) against the constant boundary with the same . Equating the two,
| (62) |
so the two boundaries intersect at the single entropy level . Since is strictly increasing in ,
| (63) | ||||
| (64) |
That is, relative to the fixed threshold, ESTR is strictly tighter at low entropy—rejecting the amplified sampling noise of the low-entropy regime, whose scale diverges as entropy vanishes—and strictly wider at high entropy, retaining the genuine exploration characterized by the entropy–ratio scaling law. In the two limits,
| (65) | |||
| (66) |
so the admissible deviation contracts to a small floor at near-zero entropy and grows without bound as entropy increases.
Conclusion.
The fixed-threshold rule is thus the single horizontal slice of the entropy-opening ESTR boundary. ESTR reduces to it exactly under the homoscedastic assumption, and otherwise strictly departs from it in an entropy-dependent manner, which proves the claim.
Appendix F Derivation of the ESTR Policy Gradient
We derive the gradient of the ESTR objective and verify the clip indicator used in the main text. Let the per-token surrogate be
| (67) |
so that .
Two elementary facts.
First, the behavior policy that produced the rollout is fixed with respect to , so
| (68) | ||||
Second, the keep mask is piecewise constant in , hence almost everywhere, and we treat it as a stop-gradient gate.
Gradient of the clipped surrogate.
Write . The term is piecewise, and its gradient vanishes precisely when the selects the flat clipped branch. A case analysis on the sign of and the position of relative to the clip interval shows that this happens only on the two flat branches, so
| (69) |
Collecting the two flat branches into the indicator
| (70) |
all cases collapse to the single expression .
Full gradient.
Multiplying by the stop-gradient mask and taking the expectation gives
| (71) |
which is the main-text policy gradient. In particular a token with contributes exactly zero, so the entropy-scaled mask removes the gradient of every token that violates the trust region, without affecting the gradient of the retained tokens.
Appendix G Training Configuration
All tasks share GRPO advantages, no KL penalty (), asymmetric clipping , token-mean loss, zero entropy bonus, and a constant learning rate (AdamW). ESTR is a token-level keep rule () applied on top of GRPO, with rollout log-probabilities as the proximal anchor (bypass mode) and full parameter/gradient/optimizer offloading with activation recomputation. The complete per-task configuration is summarized in Table 3.
Appendix H Hyperparameter Sensitivity
We probe the sensitivity of ESTR to its two most relevant knobs, varying one at a time while holding all other settings fixed as in Table 3. Tables 4 and 5 report the effect of the keep threshold on BrowseComp-Plus and DAPO-Math, and Table 6 reports the effect of the global batch size on DAPO-Math. Across a broad range of (–) performance stays within roughly one point on both tasks, indicating that ESTR is not sensitive to the exact threshold; a mild optimum appears around on BrowseComp-Plus and on the harder AIME splits. Increasing the global batch size improves DAPO-Math accuracy and largely saturates beyond prompts. All AIME numbers are reported as mean@4 (4 samples per problem).
| Accuracy | 35.97 | 37.34 | 37.15 |
|---|---|---|---|
| Reward | 29.87 | 32.25 | 30.62 |
| AIME-2024 (mean@4) | 19.67 | 19.85 | 20.03 |
|---|---|---|---|
| AIME-2025 (mean@4) | 14.33 | 16.12 | 15.64 |
| AIME-2026 (mean@4) | 13.49 | 15.21 | 15.46 |
| Global batch (prompts) | ||||
|---|---|---|---|---|
| AIME-2024 (mean@4) | 16.97 | 18.26 | 20.03 | 19.87 |
| AIME-2025 (mean@4) | 13.23 | 14.19 | 15.64 | 15.58 |
| AIME-2026 (mean@4) | 12.94 | 14.47 | 15.46 | 16.32 |
Appendix I Additional Training Dynamics
To complement the main-text results, we report additional training-dynamics curves for each task. Unless otherwise noted, all curves show the asynchronous methods (ESTR, KPop, IcePop, and vanilla GRPO) under the same configuration as the corresponding main-text experiment, and raw values are smoothed with an exponential moving average for readability.
I.1 BrowseComp-Plus
Figure 12 tracks six signals on BrowseComp-Plus (Qwen3-30B-A3B). On the gradient norm (Figure 12(a)), vanilla GRPO spikes sharply (early version switches and late bursts) and IcePop/KPop drift upward with the off-policy gap, whereas ESTR stays low and stable—local entropy normalization suppresses the noise-driven updates that inflate the gradient. This stability is productive, not conservative: ESTR reaches the fewest turns (Figure 12(b)) and shortest responses (Figure 12(c)) yet the highest final reward (Figure 12(d)), with vanilla GRPO lowest and IcePop/KPop in between.
Log-perplexity (Figure 12(e)) is not “lower is better”: ESTR rises smoothly to the highest value alongside its highest reward, IcePop spikes late (tracking instability), and KPop stays lowest (weaker learning). ESTR is also faster: unlike the synchronous baseline that stalls at every step (Figure 12(f)), it overlaps rollout with training and settles at a substantially lower, stable per-step time.
Mask evolution over training.
Figure 13 visualizes how the entropy-scaled keep rule operates in the plane as training progresses, providing a dynamic counterpart to the static boundary of Figure 1 in the main text. Three observations stand out. First, at every stage the kept population fills precisely the region beneath the entropy-scaled boundary: the spread of widens with exactly as predicted by the scaling law of Proposition 2, confirming that the boundary tracks the natural scale of the deviation rather than an arbitrary cutoff. Second, the masked tokens (red) are dominated by the low-entropy outliers that trace the concave arcs analyzed earlier for the low-entropy regime—the amplified train-inference noise— whereas large deviations at high entropy remain almost entirely inside the boundary and are retained as legitimate exploration. Third, the masked fraction is self-regulating: it stays below through most of training and rises only to at step , when the accumulated off-policy gap inflates deviations across the batch. The rule thus tightens its effect exactly when and where harmful deviations emerge, without any schedule or staleness-specific tuning, which explains the order-of-magnitude lower masking rates reported in the main text.
I.2 Multi-turn GSM8K
Figures 14(a) and 14(b) report token entropy and masking on multi-turn GSM8K (Qwen2.5-7B). IcePop is the most unstable: its entropy spikes until the run destabilizes, and its masked fraction drifts up by orders of magnitude, discarding a large share of tokens. Vanilla GRPO also loses control of its entropy, spiking out of the healthy range late in training. ESTR instead keeps both entropy and masked fraction low and stable throughout, discarding only the harmful noise rather than genuine exploration.
This carries over to accuracy (Figure 14(c)): ESTR tracks the synchronous run within about one point and reaches the highest final accuracy among asynchronous methods, whereas vanilla GRPO, IcePop, and KPop each collapse as their entropy destabilizes and never recover. ESTR is thus the only asynchronous method that stays stable and matches the synchronous accuracy trajectory.
I.3 DAPO-Math
Figures 15(a) and 15(b) expose how each method trades stability against exploration on DAPO-Math (Qwen2.5-7B). IcePop masks – of sequences throughout and KPop shows large intermittent spikes, whereas ESTR keeps the sequence-level masked fraction below 5% (Figure 15(a)): fixed thresholds cannot separate genuine high-entropy exploration from noise, so they either over-discard or oscillate, while ESTR’s entropy-scaled boundary removes only the amplified low-entropy noise. The entropy curves (Figure 15(b)) confirm this: vanilla GRPO’s entropy explodes upward without bound, IcePop and KPop collapse toward zero through over-suppression, and ESTR alone sustains a gradual, controlled rise—masking not less but the right tokens.
Sweeping the global batch over (Figures 15(c) and 15(d)), training reward improves monotonically () with diminishing returns beyond , driven by lower gradient variance. Crucially, the masked fraction stays negligible (below ) across the entire sweep, so larger batches help through variance reduction rather than by altering the trust region—matching the accuracy sensitivity in Table 6.