INQUIRING LINE

Can you tell which steps of an AI agent's work were good just by the shape of its path?

Can trajectory structure alone reveal process quality without human annotation?

This explores whether the shape of a reasoning or agent run (where it branches, what it reads, where tool calls fall) can show which steps were good, without paying humans to grade each step.


This explores whether the shape of a reasoning or agent run (where it branches, what it reads, where tool calls fall) can show which steps were good, without paying humans to grade each step. The corpus says mostly yes, with one catch: structure rarely works alone. It usually multiplies a cheap end-of-task pass/fail check into step-level signal. Several methods do this in different ways, and Can trajectory structure replace hand-annotated process rewards? is the best overview. Tree topology, expert-aligned actions and tool-call positions each turn one sparse outcome reward into dense step feedback, with no separately trained process reward model.

The tree version is the easiest to picture. If you branch an agent's run from a shared starting point, sibling branches that share everything up to step 5 and then diverge become a natural experiment. If one branch succeeds and its sibling fails, the step-5 choice gets the credit or blame (Can tree structure alone convert outcome rewards into process supervision?). Depth also gives you granularity for free. Early branches judge broad strategy, and late branches judge fine detail, and this multi-resolution signal comes from the sampling pattern alone (Does tree depth automatically produce supervision at multiple granularities?). Tree search in AlphaLLM ranks solution paths by how they turn out, which replaces the human labeler that standard RLHF needs (Can tree search replace human feedback in LLM training?).

Two other ideas reach the same goal without a tree. Reverse curriculum learning slides the starting point backward from near-completion. Where the model starts to fail as you move the start earlier shows which steps matter, and this needs only outcome feedback (Can curriculum learning approximate expensive process supervision?). Search agents leave a different kind of trace. The documents an agent read but didn't cite are the hardest distractors, so they are a rich source of reasoning signal. Rewarding only runs that end in a correct answer also stops the agent from faking good-looking reasoning (Can search agent behavior yield reliable process rewards for reasoning?).

Structure also helps when reading a finished trace. Averaging a model's confidence over a whole reasoning chain hides local collapses, and step-level confidence catches them. It also lets you stop a doomed trace early, matching majority-voting gains with far fewer generated traces (Does step-level confidence outperform global averaging for trace filtering?). A related approach drops human step labels and trains a self-supervised process reward model on weighted pseudo-labels. It reaches o3-mini-level results, though nobody has shown it works where answers are fuzzy rather than checkable (Can self-supervised process rewards replace human annotation?).

The surprise is that "structure alone" quietly depends on an outcome you can verify cheaply. That is why most of this work sits in math, code and search, where right and wrong are checkable, and why the fuzzy domains remain open. It also fits a wider shift in how agents are judged, from final answers to whole interaction sequences, where process quality, recoverability and robustness count (How should we evaluate agent behavior beyond final answers?). Trajectory structure can replace human annotation of steps. It can't yet replace a trustworthy way to say how the run ended.


Sources 9 notes

Can trajectory structure replace hand-annotated process rewards?

Tree-GRPO, Supervised RL, and ToolPO each convert sparse outcome rewards into dense step signals by exploiting different structural features—tree topology, expert-aligned actions, and tool-call positions—eliminating the need for annotated process reward models.

Can tree structure alone convert outcome rewards into process supervision?

Tree-GRPO uses branching structure to transform trajectory-level outcome rewards into step-level preference signals through sibling subtree comparison, eliminating the need for separate process reward models or step-level annotation while scaling with computational budget.

Does tree depth automatically produce supervision at multiple granularities?

Tree-GRPO's random expansion strategy naturally produces supervision at varying granularities—early branches provide coarse strategy-level signals while late branches provide fine-grained detail supervision. This multi-resolution signal emerges from sampling structure alone, without annotation effort or granularity scheduling.

Can tree search replace human feedback in LLM training?

AlphaLLM uses tree search outcomes and three critic models to derive dense reward signals equivalent to human-labeled feedback. Tree structure naturally ranks solution paths by success, replacing the annotation oracle that standard RLHF requires.

Can curriculum learning approximate expensive process supervision?

R3 progressively slides the reasoning start state backward from near-completion, creating a curriculum that reveals step-level failure modes using only outcome feedback. This achieves process supervision granularity without expensive human step annotations.

Show all 9 sources
Can search agent behavior yield reliable process rewards for reasoning?

LongTraceRL mines entity-level reasoning signals from what search agents read but don't cite—the hardest distractors—and applies rubric rewards only to correct answers, structurally blocking reward fabrication while capturing intermediate reasoning quality.

Does step-level confidence outperform global averaging for trace filtering?

Local step-level confidence catches reasoning breakdowns that global averaging masks and enables early stopping before traces complete. This approach achieves comparable accuracy gains to naive majority voting with far fewer generated traces, proving trace quality matters more than quantity.

Can self-supervised process rewards replace human annotation?

MetaStone-S1's SPRM achieves o3-mini-level results using dynamic weighting of pseudo-labels instead of human-annotated steps. This eliminates the annotation bottleneck for process supervision, though generalization to fuzzy-outcome domains remains unproven.

How should we evaluate agent behavior beyond final answers?

Evaluation of agentic systems shifts evidence from final responses to full interaction sequences, and scoring procedure from correctness alone to process quality, recoverability, coordination, and robustness. This pattern appears across multiple agent benchmarks as a coherent design move.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.