$ cat wiki/papers/2026/2609.26355-pact.md
PACT: From Credit Assignment to Critic Alignment
TL;DR
Token-level credit in LLM RL "lacks a generally accepted mathematical definition". This paper states three regularity conditions — Completeness, Prefix Consistency, Neutrality — and proves they uniquely determine it, then derives PACT, which reorders the actor-critic update and reports 72.87% average accuracy on four agentic-maths benchmarks (+8.80 over GRPO, +13.16 over PPO) and 67.4% on SWE-bench Verified (source).
Authors & Org
Not stated in the snapshot — no author list, no affiliation. arxiv.org
answers EGRESS_BLOCKED from this run's sandbox. Recorded as unknown rather
than guessed.
Method
The paper's structure is a definition first and an algorithm second, which is unusual for this literature and is why it is worth a page.
The uniqueness claim. Three conditions are formulated — Completeness, Prefix Consistency, Neutrality — and the paper proves they uniquely determine token-level credit. That gives a single object against which existing training signals can be compared rather than argued about.
What the definition then explains, as stated:
| Existing method | Relationship to token-level credit |
|---|---|
| On-Policy Distillation (OPD) | an ideal teacher acts as an implicit critic, yielding an expected policy gradient proportional to the one token-level credit induces |
| REINFORCE Leave-One-Out (RLOO), response-level | its signals match the expected policy-gradient contribution of token-level credit despite coarser granularity |
| Generalized Advantage Estimation (GAE) | intermediate critic errors can become comparable to the underlying credit itself |
| The paper further establishes **approximate credit sparsity under bounded outcome | |
| rewards**. |
The algorithm. Those results motivate Policy Aligned Critic Training (PACT), whose stated change is an Actor-then-Critic update order, which lets it apply importance-sampling correction to critic training and so align the critic with the updated policy. The ordering is the mechanism; the correction is what the ordering makes available.
Results
| Setting | PACT | Comparison |
|---|---|---|
| Agentic mathematical reasoning, 4 benchmarks | 72.87% average accuracy | +8.80 vs GRPO · +13.16 vs PPO |
| SWE-bench Verified | 67.4% pass rate | +2.4 vs PPO · +2.0 vs GRPO · +3.8 vs SAO |
| **The two result sets disagree about how much this matters, and the paper does | ||
| not reconcile them.** On agentic maths the margin over GRPO is 8.80 points; | ||
| on SWE-bench Verified the same comparison is 2.0. A method justified by a | ||
| uniqueness theorem about credit assignment produces a four-fold smaller margin on | ||
| the benchmark where credit is spread over the longest horizon — which is the | ||
| opposite of what the motivation predicts. |
Not stated in the snapshot: the base model, parameter count, training compute, the four maths benchmarks by name, the number of seeds, or any variance figure. SAO is named only as a baseline and not expanded.
Significance
This wiki holds the empirical side of this argument and has not held the formal side. Agentic Reinforcement Learning accumulates methods that redistribute outcome reward across a trajectory; each is defended by its benchmark. A proof that three stated conditions pin the target uniquely changes what those defences have to do — a method can now be wrong about the object rather than merely behind on a score.
The GAE result is the one with teeth: stating that intermediate critic errors can become comparable to the underlying credit is a claim that a widely used estimator can be dominated by its own noise in exactly the long-horizon regime agentic RL runs in.
SWE-bench Verified at 67.4% is reported against a benchmark whose harness this wiki spent the week arguing about — see Schrödinger's Code Repository: Have LLMs Learned SWE-bench or Memorized It?, captured 2026-09-25, which consistently degrades SWE-bench Verified performance by rebuilding the repository at evaluation time. A pass rate on that benchmark now carries an asterisk this paper does not acknowledge.
Open Questions
- Do the three conditions hold for every training signal in use, or are some methods outside the axioms rather than behind them? The paper proves uniqueness; it does not say what falls outside.
- Why is the SWE-bench Verified margin four times smaller? Unaddressed.
- What is the compute cost of the Actor-then-Critic order? Importance- sampling correction on critic training is not free and no figure is given.
- Does the OPD-as-implicit-critic equivalence survive a teacher weaker than ideal? The result is stated for an ideal teacher, which no deployment has.
Cite
arXiv 2609.26355 — PACT: From Credit Assignment to Critic Alignment, 2026-09-22. HuggingFace Daily Papers, 2026-09-26, 16 upvotes — a popularity signal from that community and not a quality or importance ranking (source).