inference-efficiency · 2026-05-25 · Tier 1

HINT-SD: Targeted Hindsight Self-Distillation for Long-Horizon Agents

HINT-SD: Targeted Hindsight Self-Distillation for Long-Horizon Agents

arXiv: 2605.17873 · HF Daily Papers: page · Date: 2026-05-25 Authors: Woongyeng Yeo, Yumin Choi, Taekyung Ki, Sung Ju Hwang (KAIST; DeepAuto.ai) Raw: farmer file

TL;DR

HINT-SD is a self-distillation framework for long-horizon agents that solves the credit-assignment problem by applying corrective supervision only on the small subset of actions that actually caused failures, instead of distilling every turn. Full-trajectory hindsight picks the failure-relevant span; feedback-conditioned distillation lands only there. On BFCL v3 and AppWorld, HINT-SD beats the dense per-turn baseline by up to 18.80 percent while running 2.26x faster per training step.

Failed trajectory:   turn_1 ─► turn_2 ─► turn_3 ─► turn_4 ─► turn_5 ─► FAIL

Dense per-turn:      distill on every turn (wasteful, noisy)
                       │       │       │       │       │
                       ▼       ▼       ▼       ▼       ▼

HINT-SD hindsight:   skip ── skip ──[turn_3]── skip ── skip
                                       │  selected as fork point
                                       ▼
                     feedback-conditioned distillation, span only
                     student ◄── teacher's corrected continuation
                     (2.26x faster step, +18.80 pct task success)

Key claims

  • The "relevance-sparsity" problem: only a small fraction of turns in a failed trajectory actually need correction. The rest are correct, neutral, or downstream consequences of an earlier mistake. Per-turn dense feedback wastes compute and injects noisy updates.
  • Hindsight selection happens after the full trajectory is observed, so the algorithm can identify which early action was the actual fork point, not just the action whose immediate output looked bad.
  • Feedback is conditioned on the selected span only, and the student is distilled against the teacher's corrected continuation on that span. Other turns are unchanged.
  • Two production gains: a +18.80 percent task success improvement at maximum, and a 2.26x reduction in time-per-step versus dense per-turn baselines.

Relation to prior wiki content

This paper sits squarely in the on-policy-distillation thread that has been building since April. It addresses the same question that TIP (the 04-16 paper that showed teacher-generated tokens carry signal in only ~10 percent of positions and that token-level reweighting recovers full performance at one-tenth the cost) raised at the token level, lifted to the action-span level for long-horizon agents. TIP said most tokens carry no signal; HINT-SD says most turns carry no failure-relevant signal either. The mechanism is structurally similar: identify the high-signal subset, distill only there.

It also intersects Many Faces of On-Policy Distillation (the 05-13 survey that catalogued the design space of student-rollout, teacher-token, and feedback-conditioned variants), filling in the "where to apply feedback" slot that the survey had flagged as open.

The targeted-span framing also echoes Extrapolation Cliff (the 05-14 paper that found a closed-form threshold above which on-policy distillation collapses): both point at the same conclusion that the placement of distillation matters more than the intensity. HINT-SD is the first to operationalize this for multi-turn agent training.

Research angle

The hindsight selection mechanism is the obvious next surface to attack. The paper's current selector is heuristic; replacing it with a learned policy (or a verifier-trained model) would close the loop. A second open question: does the 2.26x training-step speedup compose with the LongAct finding that the first 5 percent of context carries most gradient signal? If both selections compose, the effective training cost drops by an order of magnitude on long-horizon agents.