Pith. sign in

REVIEW 3 major objections 4 minor 19 references

Agentic Reinforcement Learning with Observation-Calibrated Self-Distillation

T0 review · 3 major / 4 minor · reviewed 2026-08-06 · deepseek-v4-flash

Pith's one-line read The paper claims that contrasting token-replay scores under Full and Observation-Ablated views isolates the effect of future observations from replay-scaffold artifacts, and that using this calibrated residual to modulate token-level GRPO…

desk verdict A clean residual for separating observation signal from replay scaffold in agentic self-distillation, but the training-time control that would validate the interpretation is missing. read the letter →

arxiv 2608.04788 v1 pith:JLMBWP2N submitted 2026-08-05 cs.LG cs.AIcs.CL

classification cs.LGcs.AIcs.CL
keywords reinforcementlearningLLMagentson-policyself-distillationtoken-levelcreditassignmentGRPOobservationablationagenticRLcalibration
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

LLM agents trained by reinforcement learning usually receive one sparse reward per trajectory, so token-level credit is hard to assign. On-policy self-distillation tries to fill this gap by re-scoring generated tokens under a privileged replay that includes future environment observations, but the replay scaffold itself shifts token scores and confounds the signal. This paper proposes Observation-Calibrated Self-Distillation (OCSD), which subtracts the support from an observation-ablated replay view (a structurally identical view with 'Observation: not provided' in place of real observations) from the full replay support, isolating score changes attributable to the future observation itself. The residual modulates token-level GRPO updates at high-uncertainty steps while preserving the trajectory-level update direction. Across ALFWorld, WebShop, and Search-QA and three model scales, OCSD reports consistent gains over strong baselines, with diagnostics indicating the residual tracks local environment feedback better than raw replay support.

What carries the argument

The load-bearing object is the observation residual $e_{i,k,t} = \log\pi^F(y_{i,k,t}\mid h_{i,k,t}, E^F_{i,k}) - \log\pi^A(y_{i,k,t}\mid h_{i,k,t}, E^A_{i,k})$, computed from two structurally matched replay views. The Full view appends the actual future observations plus a naturalized schema of the intervening future action; the Observation-Ablated view keeps the same field order, format, and action scaffold but replaces each future observation with the fixed phrase 'Observation: not provided.' Contrasting the two views cancels the student log-probability and any score changes produced by the shared scaffold, leaving a bounded calibration signal $q_{i,k,t}=\tanh(e_{i,k,t}/2)$ that modulates token-level GRPO advantages as $\hat{A}^{\mathrm{OCSD}}_{i,k,t}=\hat{A}_i[1+\beta\,\mathrm{sgn}(\hat{A}_i)q_{i,k,t}]$ on NLL-selected steps. The step-selection heuristic concentrates the modulation on the top-$\rho$ highest-NLL interaction steps within each trajectory, and the sign-preserving factor ensures the trajectory-level update direction is never reversed.

What would settle it

Train with a third replay view that contains the realized future observations but omits the future-action scaffold; if OCSD's advantage over Full support persists when no scaffold is present, the claim that the gain comes from removing scaffold confounds would be falsified.

Watch

Extended reading notes

Core claim

The central claim is that the observation residual $e_{i,k,t} = \delta^F_{i,k,t} - \delta^A_{i,k,t}$, the difference between token support under Full and Observation-Ablated replay views, discounts score changes shared by the replay scaffold and isolates a token-level signal attributable to the true future observation. Because both supports are measured against the same student prediction, the student term cancels and the residual reduces to $\log \pi^F(y_{i,k,t}\mid \cdot) - \log \pi^A(y_{i,k,t}\mid \cdot)$. OCSD maps this residual through $\tanh(e/2)$ and uses it to scale the magnitude of the GRPO advantage at each token in the top-$\rho$ highest-NLL steps, keeping the sign of the trajectory advantage fixed. The paper argues, and supports with experiments, that this calibrated credit is more consistent with local environment feedback, achieving an AUROC of 0.707 for distinguishing valid from invalid actions versus 0.654 for full replay support, and that swapping the realized observation for an unrelated one collapses the signal, showing the residual tracks observation-action correspondence rather than the mere presence of extra text. Consistently higher success rates and scores on three agent benchmarks at three model scales are reported as the practical consequence.

Load-bearing premise

The load-bearing premise is that substituting the fixed phrase 'Observation: not provided' for the real future observation removes exactly the observation-dependent information while leaving the model's handling of the replay format and future-action scaffold unchanged; if the mere presence of real observation text alters how the scaffold is processed, the residual still carries scaffold artifacts.

Editorial extensions

If this is right

  • OCSD outperforms GRPO, OPSD, GRPO+OPSD, RLSD, and SDAR on overall ALFWorld success, WebShop success, and Search-QA average Exact Match across Qwen3-1.7B, Qwen3-4B, and Qwen3-8B.
  • The gains extend to out-of-distribution Search-QA datasets, so the benefit is not confined to the training distributions.
  • Diagnostic AUROC shows that the observation residual tracks local environment feedback more closely than either the Full or Observation-Ablated support alone.
  • Observation swapping degrades the residual's discriminative power to near chance, indicating the signal depends on genuine action-observation correspondence rather than on merely adding observation text.
  • OCSD adds only about 1.4% per-iteration runtime over GRPO, so the calibration is inexpensive to integrate.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The same contrast trick could apply to other privileged contexts, such as tool outputs, expert demonstrations, or hindsight hints, wherever a structural ablation can in principle isolate the target information from formatting artifacts.
  • Because the residual is a scalar per token, it could serve as dense reward shaping or as an update gate in policy-gradient algorithms beyond GRPO.
  • The reliance on high-NLL step selection suggests uncertainty-based gating is doing real work; replacing NLL with a learned uncertainty estimator might transfer the gains to tasks where rollout NLL is poorly calibrated.
  • A direct test of the scaffold-confound account would compare OCSD against a third view that includes real observations but omits the future-action scaffold; if the gains persist without the scaffold, the residual would not be the sole cause.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 4 minor

Summary. The paper addresses a confounding effect in privileged replay scoring for LLM agents: when future environment observations are replayed as privileged evidence, the resulting token-level support (log-probability change relative to the student view) conflates changes caused by the observation content with changes caused by the replay scaffold itself. The authors propose Observation-Calibrated Self-Distillation (OCSD), which constructs two structurally matched replay views—Full and Observation-Ablated—that differ only in whether the actual future observation is present. The difference of the two support terms (Eq. 6) is a parameter-free observation residual, mapped through tanh (Eq. 8) to modulate the token-level update strength of GRPO at high-NLL steps while preserving the trajectory-level update direction. Experiments on ALFWorld, WebShop, and Search-QA with Qwen3-1.7B/4B/8B report consistent improvements over GRPO and several self-distillation baselines, and diagnostic analyses (AUROC against local environment feedback, word-level analyses, observation-swapping sensitivity) support the claim that the residual is better aligned with local feedback than Full-view support.

Significance. If the empirical claims hold, OCSD is a simple and well-motivated contribution to agentic RL: it identifies a real attribution problem in privileged replay scoring and proposes a clean, parameter-free contrast that cancels the student term and discounts shared scaffold effects. The paper is careful in several respects: the residual derivation is transparent, the architecture ablations are informative, the observation-swapping diagnostic is a good sensitivity check, and the code is publicly available. The main weakness is that the central empirical claim—that the training gains come specifically from the true future observation—is not directly tested at training time, and many of the reported improvements over strong baselines are within one standard deviation with only three seeds. The diagnostic AUROC is also computed only on the selected high-NLL steps used for training, leaving open the possibility that the apparent alignment is an artifact of step selection.

major comments (3)
  1. [Section 4.4 and Appendix D] The central claim is that the residual in Eq. (6) isolates observation-specific support and that using it in Eq. (11) improves performance because it aligns with local environment feedback. The paper never tests this dependence at training time. Appendix D swaps the future observation only for an AUROC diagnostic at fixed checkpoints; the method trained in Tables 1-3 always uses the realized observation in the Full view. Since q_{i,k,t}=tanh(e_{i,k,t}/2) is a bounded nonlinear function of the residual, a substantial part of the signal could come from the contrast between the two replay contexts, or from the specific placeholder phrase, rather than from the content of the actual observation. A matched training-time control—replacing the realized observation in the Full view with a random same-operator donor observation, as in Appendix D—would settle whether the observed gains require the true observation content. If random-observation OCSD matches OCSD, the 'observation-calibrated' explanation is unsupported; if it degrades toward GRPO, the concern is resolved. This is a load-bearing gap for the paper's main narrative.
  2. [Tables 1 and 2] Several of the reported improvements over the strongest baselines are within one standard deviation, and with only three seeds the claim that OCSD 'consistently outperforms' is not statistically established. For example, Table 1 (WebShop Success, Qwen3-1.7B): OCSD 54.4±1.2 vs. SDAR 53.4±1.0; Table 2 (SearchQA Avg, Qwen3-1.7B): OCSD 43.1±1.2 vs. GRPO+OPSD 42.6±0.4; Table 2 (SearchQA ID, Qwen3-8B): OCSD 43.6±0.2 is below RLSD's 45.6±0.5. The paper should report paired per-seed comparisons or significance tests, or at minimum explicitly identify which differences are outside the bootstrap/standard-deviation overlap. Without this, the headline claim of consistent gains across all tasks and scales is not fully supported.
  3. [Section 2.2, Figure 2(c)-(d), Appendix C.3-C.4] The AUROC diagnostic that supports the claim that the residual 'aligns better with local environment feedback' is restricted to the top-20% high-NLL interaction steps used for training and is computed on the training checkpoints themselves. This in-sample selection procedure could inflate the apparent alignment, because the step-selection criterion and the residual are both derived from the same policy at the same checkpoints. The paper should report the same AUROC analysis on the unselected steps, or on held-out evaluation tasks, to rule out the possibility that the alignment is an artifact of the selection procedure. The 'ambiguous cases excluded' rule also needs a sensitivity check, since the labeling is based on deterministic templates that could correlate with the residual in unforeseen ways.
minor comments (4)
  1. [Eq. (13) and Table 4] The KL coefficient is denoted β_KLD in Eq. (13) and β_KL in Table 4, while Eq. (11) uses β for the advantage modulation coefficient; the notation is confusing and should be made consistent.
  2. [Section 2.2 and Appendix C.3] The word-level analysis and the local-feedback AUROC in Figure 2 are defined on the top-20% high-NLL steps, but the NLL uncertainty score is first introduced in Section 3.2 (Eq. 9); the diagnosis in Section 2.2 would be easier to follow if the step-selection criterion were defined before the analysis.
  3. [Figure 6] The runtime breakdown figure uses a broken y-axis but does not state the units; please add the unit (seconds per iteration) and label the data values or the axis clearly.
  4. [Tables 1, 2, 6] The Vanilla rows are reported without standard deviations, unlike the other methods; if the vanilla evaluation is single-run, that should be stated explicitly in the caption or in Appendix B.

Circularity Check

0 steps flagged · score 0.0 of 10

No significant circularity: the observation residual is a parameter-free teacher-score contrast and the empirical gains are not forced by construction.

full rationale

The central derivation is self-contained. The observation residual in Eq. (6) is defined as e = δF − δA, and Eq. (7) explicitly expands both supports; because both are measured relative to the same student distribution, the student term cancels algebraically. No fitted parameter, learned scalar, or baseline statistic enters the residual. The only tunable hyperparameters (ρ = 0.2, β = 0.5) are fixed across benchmarks and model scales and are selected by sensitivity analysis in Appendix E, not presented as first-principles predictions. The diagnostic AUROC analysis (Section 2.2 and Appendix C) is computed post hoc on training checkpoints and does not fit the model, so it cannot be a fitted input renamed as a prediction. Citations to OPSD, SDAR, RLSD, and related self-distillation methods are used as background and baselines; none is invoked as a uniqueness theorem or as justification for the residual definition. The concern that Appendix D only evaluates observation swapping diagnostically, without a train-time random-observation control, is a causal identifiability question about what drives the empirical gains; it does not exhibit any equation that reduces to its own input. Accordingly, no circular step is identified.

Assumptions & free parameters 3 free parameters · 4 assumptions · 0 invented entities

The method introduces no invented entities. The only hand-chosen values are the hyperparameters rho and beta, selected by sensitivity analysis on one benchmark, and a fixed tanh scaling constant. The structural matching of the two replay views is the main domain assumption, and the high-NLL step selection is a design choice supported by ablations.

free parameters (3)
  • step selection ratio rho = 0.2
    Chosen via sensitivity analysis on Qwen3-4B ALFWorld (Appendix E); applied to all benchmarks and scales.
  • advantage modulation coefficient beta = 0.5
    Chosen via sensitivity analysis on Qwen3-4B ALFWorld (Appendix E); applied to all benchmarks and scales.
  • tanh temperature 1/2 in Eq. (8) = 0.5
    Fixed constant that maps unbounded log-probability differences into [-1,1]; its value is not derived and could affect calibration strength.
assumptions (4)
  • domain assumption GRPO provides unbiased trajectory-level advantages for the update direction.
    The method inherits the GRPO framework (Section 2.1, Eq. 1) and assumes the group-relative advantage is a correct indicator of trajectory quality.
  • domain assumption The Full and Observation-Ablated views are structurally matched and differ only in the actual future observation.
    Stated in Section 3.1 and Appendix A.2; the residual (Eq. 6) is interpreted as the observation effect because of this matching assumption.
  • domain assumption High-NLL steps are the appropriate subset for token-level calibration.
    Assumed in Section 3.2 and supported by the ablation in Table 3, but not derived from first principles.
  • domain assumption The naturalized future-action schema g(a_{k+1}) does not leak high-information content.
    Appendix A.2 states the schema preserves coarse intent while removing entities, locations, and queries; if the schema leaks, the two views are not matched.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Agentic Reinforcement Learning with Observation-Calibrated Self-Distillation." pith.science (2026). https://pith.science/paper/JLMBWP2N

@misc{pith2026260804788,
  author       = {Pith},
  title        = {Pith review of: Agentic Reinforcement Learning with Observation-Calibrated Self-Distillation},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/JLMBWP2N}},
  note         = {Machine review of arXiv:2608.04788}
}
read the original abstract

Large language model agents are commonly trained through reinforcement learning with sparse trajectory-level rewards, which offer limited guidance on how strongly individual tokens should be updated. On-Policy Self-Distillation (OPSD) addresses this by re-scoring generated tokens under a privileged replay view to obtain dense, token-level supervision. However, we identify a confounding issue: the resulting support may reflect both the privileged information contained in the replay view and score shifts induced by the replay scaffold, making it difficult to attribute the support specifically to that information. This issue is especially pronounced when future environment observations serve as privileged information, since replaying them requires reconstructing an extended scaffold that itself perturbs token scores. To resolve this confounding, we propose Observation-Calibrated Self-Distillation (OCSD), which contrasts two structurally matched replay views, Full and Observation-Ablated, differing only in whether the actual future observation is present, to derive an observation residual that discounts score changes shared by the replay scaffold. OCSD then applies this residual to modulate token-level GRPO updates at high-uncertainty steps, while preserving the trajectory-level update direction. Experiments on ALFWorld, WebShop, and Search-QA across three Qwen3 model scales show that OCSD consistently outperforms strong baselines. Diagnostic analyses further confirm that the calibrated residual aligns better with local environment feedback. Our code is publicly available at https://github.com/yiy1x/OCSD.

Figures

Figures reproduced from arXiv: 2608.04788 by the authors.

Figure 1
Figure 1. Deriving the observation residual from structurally matched replay views. [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Fine-grained diagnosis of Qwen3-1.7B over 150 training steps on ALFWorld. All panels use the top- [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 3
Figure 3. Overview of the OCSD training framework. [PITH_FULL_IMAGE:figures/full_fig_p004_3.png] view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: ALFWorld training dynamics across model scales. [PITH_FULL_IMAGE:figures/full_fig_p006_4.png]
Figure 5
Figure 5. Figure 5: AUROC for distinguishing valid and invalid steps [PITH_FULL_IMAGE:figures/full_fig_p007_5.png]
Figure 6
Figure 6. Figure 6: Per-iteration runtime breakdown of OCSD on ALF [PITH_FULL_IMAGE:figures/full_fig_p007_6.png]
Figure 7
Figure 7. Figure 7: Hyperparameter sensitivity of OCSD with Qwen3-4B on ALFWorld. (a) Effect of the step selection ratio [PITH_FULL_IMAGE:figures/full_fig_p014_7.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

19 extracted references · 9 canonical work pages

  1. [2]

    On-Policy Delta Distillation

    On-Policy Delta Distillation.arXiv preprint arXiv:2607.15161. Jin, B.; Zeng, H.; Yue, Z.; Yoon, J.; Arik, S.; Wang, D.; Zamani, H.; and Han, J

  2. [4]

    arXiv preprint arXiv:2607.05184

    Re- thinking On-Policy Self-Distillation for Thinking Models. arXiv preprint arXiv:2607.05184. Kim,J.;Luo,X.;Kim,M.;Lee,S.;Kim,D.;Jeon,J.;Li,D.; andYang,Y.2026. WhyDoesSelf-Distillation(Sometimes) DegradetheReasoningCapabilityofLLMs?arXiv preprint arXiv:2603.24472. Kim, M. J.; Pertsch, K.; Karamcheti, S.; Xiao, T.; Balakr- ishna,A.;Nair,S.;Rafailov,R.;Fos...

  3. [6]

    Liu, H.; Zhang, Y.; Li, X.; Lyu, B.; and Shang, J

    What and When to Distill: Selective HindsightDistillationfor Multi-TurnAgents.arXiv preprint arXiv:2605.19447. Liu, H.; Zhang, Y.; Li, X.; Lyu, B.; and Shang, J. 2026a. HERO: Hindsight-Enhanced Reflection from Environment Observations for Agentic Self-Distillation.arXiv preprint arXiv:2606.11559. Liu, X.; Wang, X.; Ma, Y.; Zhang, Y.; and Xiao, C. 2026b. W...

  4. [7]

    InInternational Conference on Learning Representations, volume 2024, 52989–53046

    Agentbench: Evaluating llms as agents. InInternational Conference on Learning Representations, volume 2024, 52989–53046. Lu,Z.;Yao,Z.;Han,Z.;Wang,Z.-H.;Wu,J.;Gu,Q.;Cai,X.; Lu,W.;Xiao,J.;Zhuang,Y.;etal.2026.Self-distilledagentic reinforcement learning.arXiv preprint arXiv:2605.15155. Pan, L.; Tao, S.; Zhai, Y.; Zhang, L.; Liu, Z.; Ding, B.; Liu, A.; and Wen, L

  5. [8]

    Penaloza,E.;Vattikonda,D.;Gontier,N.;Lacoste,A.;Char- lin,L.;andCaccia,M.2026

    RLCSD: Reinforcement Learning with Contrastive On-Policy Self-Distillation.arXiv preprint arXiv:2606.11709. Penaloza,E.;Vattikonda,D.;Gontier,N.;Lacoste,A.;Char- lin,L.;andCaccia,M.2026. PrivilegedInformationDistilla- tionforLanguageModels.arXiv preprint arXiv:2602.04942. Peng, K.; Li, C.; Ouyang, Y.; Yuan, Y.; and Ding, L

  6. [9]

    Diagnosing and Mitigating Thinking Collapse in On-Policy Self-Distillation

    Diagnosing and Mitigating Thinking Collapse in On-Policy Self-Distillation.arXiv preprint arXiv:2607.10805. Reddy,R.G.;Mukherjee,S.;Kim,J.;Wang,Z.;Hakkani-Tur, D.;andJi,H.2025. Infogent:Anagent-basedframeworkfor webinformationaggregation. InFindings of the Association for Computational Linguistics: NAACL 2025, 5745–5758. Shao,Z.;Wang,P.;Zhu,Q.;Xu,R.;Song,...

  7. [10]

    Shen, Z.; Tong, J.; Yan, S.; Shen, C.; Chen, H.; Ye, W.; Hu, X.;Miao,R.;Wang,H.;Zhao,J.;etal.2026

    Deepseekmath: Pushing the limits of mathematical reasoning in open lan- guage models.arXiv preprint arXiv:2402.03300. Shen, Z.; Tong, J.; Yan, S.; Shen, C.; Chen, H.; Ye, W.; Hu, X.;Miao,R.;Wang,H.;Zhao,J.;etal.2026. PurifiedOPSD: On-Policy Self-Distillation Without Losing How to Think. arXiv preprint arXiv:2607.02234. Shridhar, M.; Yuan, X.; Côté, M.-A.;...

  8. [12]

    InInternational Conference on Learning Representations, volume 2025, 89490–89520

    Dynamic loss-based sample reweighting for improved large language model pretraining. InInternational Conference on Learning Representations, volume 2025, 89490–89520. Tian, Y.; Wang, R.; Wen, X.; Li, J.; Sun, S.; Song, L.; Bian, J.; and Zhao, B

Show all 19 references
  1. [13]

    Tu, S.; Xu, C.; Zhang, Q.; Ma, Y.; Zhang, Y.; Li, L.; Li, D.; Lan,X.;andZhao,D.2026

    PBSD: Privileged Bayesian Self- Distillation for Long-Horizon Credit Assignment.arXiv preprint arXiv:2606.09348. Tu, S.; Xu, C.; Zhang, Q.; Ma, Y.; Zhang, Y.; Li, L.; Li, D.; Lan,X.;andZhao,D.2026. UCOB:LearningtoUtilizeand Evolve Agentic Skills via Credit-Aware On-Policy Bidi...

  2. [14]

    Xie, Y.; Zhu, S.; Wen, T.; Chen, B.; and Wang, Y

    SEED: Self- Evolving On-Policy Distillation for Agentic Reinforcement Learning.arXiv preprint arXiv:2607.14777. Xie, Y.; Zhu, S.; Wen, T.; Chen, B.; and Wang, Y

  3. [15]

    Yang,A.;Li,A.;Yang,B.;Zhang,B.;Hui,B.;Zheng,B.;Yu, B.;Gao,C.;Huang,C.;Lv,C.;etal.2025

    On the Position Bias of On-Policy Distillation.arXiv preprint arXiv:2606.22600. Yang,A.;Li,A.;Yang,B.;Zhang,B.;Hui,B.;Zheng,B.;Yu, B.;Gao,C.;Huang,C.;Lv,C.;etal.2025. Qwen3technical report.arXiv preprint arXiv:2505.09388. Yang,C.;Qin,C.;Si,Q.;Chen,M.;Gu,N.;Yao,D.;Lin,Z.; Wang,...

  4. [16]

    In ICML 2025 Workshop on Computer Use Agents

    Reinforcing multi-turn reasoning in llm agents via turn-level credit assignment. In ICML 2025 Workshop on Computer Use Agents. Zhang, H.; Wang, C.; Chen, K.; Pan, Y.; Xiang, Y.; Wang, J.; and Zhang, M. 2026a. Tailoring Teaching to Aptitude: Direction-Adaptive Self-Distillation...

  5. [17]

    arXiv preprint arXiv:2606.10385

    Beyond Absolute Imitation: Anchored Residual Guidance for Privileged On-Policy Distillation. arXiv preprint arXiv:2606.10385. Zhang, Y.; Lin, X.; and Wu, C

  6. [18]

    Zhang, Y.; Zhu, Y.; Chong, W.; Tu, S.; Zhang, Q.; Chai, J.; Wang, X.; Lin, W.; Yin, G.; and Zhao, D

    StepOPSD: Step- Aware Online Preference Distillation for Agent Reinforce- ment Learning.arXiv preprint arXiv:2605.27140. Zhang, Y.; Zhu, Y.; Chong, W.; Tu, S.; Zhang, Q.; Chai, J.; Wang, X.; Lin, W.; Yin, G.; and Zhao, D. 2026b.π- Play: Multi-Agent Self-Play via Privileged Sel...

  7. [19]

    Zhou, S.; Xu, F

    Self-Distilled Reasoner: On-Policy Self-DistillationforLargeLanguageModels.arXiv preprint arXiv:2601.18734. Zhou, S.; Xu, F. F.; Zhu, H.; Zhou, X.; Lo, R.; Sridhar, A.; Cheng,X.;Ou,T.;Bisk,Y.;Fried,D.;etal.2024. Webarena: Arealisticwebenvironmentforbuildingautonomousagents. In...

  8. [2020]

    Sow,D.;Woisetschläger,H.;Bulusu,S.;Wang,S.;Jacobsen, H

    Alfworld: Aligning text and em- bodiedenvironmentsforinteractivelearning.arXiv preprint arXiv:2010.03768. Sow,D.;Woisetschläger,H.;Bulusu,S.;Wang,S.;Jacobsen, H. A.; and Liang, Y

  9. [2024]

    Li, X.; Lyu, T.; Li, Y.; Ma, Y.; Li, P.; Li, L.; Guo, Q.; Lin, D.; and Chen, K

    Openvla: An open-source vision-language- action model.arXiv preprint arXiv:2406.09246. Li, X.; Lyu, T.; Li, Y.; Ma, Y.; Li, P.; Li, L.; Guo, Q.; Lin, D.; and Chen, K

  10. [2025]

    Kaur, S.; Ri, N.; He, Y.; Fowl, L.; and Arora, S

    Search-r1: Training llms to reason and leverage search engines with reinforcement learning.arXiv preprint arXiv:2503.09516. Kaur, S.; Ri, N.; He, Y.; Fowl, L.; and Arora, S

  11. [2026]

    Hanley,J.A.;andMcNeil,B.J.1982

    Group-in- grouppolicyoptimizationforllmagenttraining.Advances in Neural Information Processing Systems, 38: 46375–46408. Hanley,J.A.;andMcNeil,B.J.1982. Themeaninganduse of the area under a receiver operating characteristic (ROC) curve.Radiology, 143(1): 29–36. He,L.;Zhu,J.;Zh...

Pith tools

Reviewed August 6, 2026 · model on record in the stance chip above.