惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
WordPress大学
WordPress大学
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
博客园 - 三生石上(FineUI控件)
Last Week in AI
Last Week in AI
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
U
Unit 42
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG
IT之家
IT之家
MyScale Blog
MyScale Blog
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
I
InfoQ
博客园 - 司徒正美

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Your RL Agent Failed a 12-Step Task. Which Step Was Wrong...
Shoaibali Mir · 2026-05-31 · via DEV Community

About this series.

I'm going to take a fresh paper - Self-Distilled Agentic Reinforcement Learning (SDAR, arXiv:2605.15155) - and architect it end to end on AWS: the system design, the actual gate code, the evaluation plan, and a brutally honest cost model.

What I'm not going to do is wave a benchmark number around.

Reproducing a paper like this costs thousands in GPU time, and I'd rather show you the machinery than a screenshot you can't audit. The design is the deliverable.

This is Part 1.


A small, infuriating problem

Picture an LLM agent working a web-shopping task. It reads the goal, searches, clicks a category, filters, opens a product, compares, adds to cart - twelve steps in all. At the end, it bought the wrong thing.

So you do what reinforcement learning tells you to do: you score the trajectory. Reward = 0. Bad agent.

Now answer this: which of the twelve steps was actually wrong?

Maybe step 3, the search query, was fine and step 9, a filter choice, doomed everything.
Maybe steps 1–11 were brilliant and step 12 fat-fingered the wrong button.
Your single scalar reward has no idea. It punishes all twelve equally, including the eight that were correct.

That's the supervision problem in agentic RL, and it's the thing this whole series is about.


Why "just use RL" isn't enough for agents

RL has become the default way to post-train LLM agents. The catch is that the reward usually lands at the trajectory level - one number for the entire multi-step episode.

For a single-turn task ("answer this question"), that's tolerable; the action and the outcome are close together. For a long-horizon agent - ten, twenty, fifty turns of searching, calling tools, and reacting to an environment - it's a disaster of credit assignment. The signal is too coarse to tell the model which decisions earned the reward and which torpedoed it.

You can throw more episodes at it and let statistics sort the credit out eventually. But "eventually" on a 30-turn task burns a lot of expensive compute, and the training tends to get unstable along the way.

What you actually want is denser feedback: a signal at the level of individual tokens, not the whole episode.


Enter the teacher: On-Policy Self-Distillation

One way to get that denser signal is a technique called On-Policy Self-Distillation (OPSD).

The idea, in plain terms: alongside your student model (the one being trained), you run a teacher - the same model, but handed privileged context the student doesn't get. Think of extra hints: relevant skills, retrieved knowledge, a peek at what good looks like. Because the teacher is better-informed, its token-by-token probability distribution is a richer target than a single end-of-episode reward.

The student then learns to imitate the teacher at the token level. Dense feedback. Problem solved?

For single-turn settings, largely yes. For multi-turn agents, the wheels come off.


Why OPSD breaks on multi-turn agents

Two failure modes, and they're worth understanding before any code:

1. Instability compounds across turns.
In a multi-turn episode, the student's small mistakes at turn 1 change the state at turn 2, which changes turn 3, and so on. The teacher is reacting to an increasingly drifted situation. The dense signal that was supposed to stabilize training starts amplifying the wobble instead. More turns, more compounding, more chaos.

2. The teacher's "no" is often noise, not truth.
Here's the subtle one. The teacher's advantage is its privileged context - but that context comes from skill retrieval and utilization, and those aren't perfect. When the teacher rejects a token (says "the student should be less likely to do this"), it might be right... or the teacher might just have retrieved a bad skill. If you treat every teacher rejection as gospel and penalize the student for it, you're training on noise.

So you can't treat the teacher's positive endorsements and negative rejections the same way. Positives ("yes, do more of this") are relatively trustworthy. Negatives ("no, don't") are suspect. They need asymmetric handling.

SDAR's bet, in one sentence

This is where the paper's contribution lands:

Keep RL as the primary optimization backbone. Bolt OPSD on as a gated auxiliary objective - strengthen distillation on the teacher's confident positive guidance, and softly attenuate its noisy negative rejections.

The mechanism that does this is a sigmoid gate sitting on top of a detached token-level signal. Confident positive-gap tokens get the distillation signal amplified. Negative rejections get turned down - softened, not blindly obeyed.

RL still drives the bus. OPSD is a co-pilot whose advice you weight by how much you trust it.

Here's the contrast that the whole paper hinges on:

TRAJECTORY REWARD (vanilla RL)
  [step1 step2 step3 ... step12]  ──►  reward = 0
   (all twelve steps blamed equally)

DENSE OPSD (naive)
  teacher says yes/no on every token  ──►  trust it all
   (but multi-turn drift + noisy "no"s destabilize training)

SDAR (gated)
  teacher says yes/no  ──►  sigmoid gate  ──►
   amplify confident YES, soften suspicious NO
   (RL stays primary; dense signal is filtered, not swallowed)

The reported payoff (their numbers, not mine): meaningful gains over plain GRPO on ALFWorld, WebShop, and Search-QA, and - this is the part I find more interesting than the headline percentage - it avoids the training instability that naive GRPO+OPSD falls into.


Why this is an AWS problem, not a Bedrock checkbox

If you're reading this as an AWS practitioner, here's the part that matters: you cannot do this through managed fine-tuning.

SDAR needs a custom RL loop with four models in play at once - the trained actor, a frozen reference for the KL term, a rollout engine, and that privileged teacher branch - plus a live multi-turn environment to act in. That's a verl-agent/OpenRLHF-shaped workload running on GPU instances you provision and babysit, not a Bedrock fine-tuning job you submit and forget.

Which means the real questions are infrastructure questions: How many 80GB cards does a four-model setup actually need? Where does the teacher branch live? What does a converging run cost when an idle GPU node burns four figures over a forgotten weekend?

That's Part 2 - the full system diagram and the cost model, before a single GPU is rented.


Next in the series: "Architecting SDAR on AWS" - the component map, the service mapping, the memory math, and what it would actually cost to run.

If you've fought trajectory-reward credit assignment on your own agents, I want to hear how it went - drop it in the comments.