Should past update success guide future model changes?
When an autonomous training system proposes reusing an update that worked before, how should it account for the fact that the parent model has changed? What conditions make past success relevant to current decisions?
The paper's central claim is that "Past success in one source context does not authorize modifying every future parent." In an autonomous post-training loop, where a system proposes an update, trains a candidate, evaluates it and uses the feedback to pick the next proposal, the accumulated history of updates and outcomes "is not self-executing." An update's effect "depends on its parent model, data mixture, training stage, and evaluation contract," so evidence that an update helped under one context "may therefore be misleading under the current context." The authors name this problem conditional experience transfer.
The paper gives two costs of getting it wrong. Authorizing a context-incompatible update "consumes scarce training budget," and if the trained child is then promoted, it "changes the parent checkpoint and the relevance of later evidence." A bad reuse decision therefore does more than waste one run; it shifts the ground under the evidence that remains in memory. The proposed method, Boundary-Calibrated Intervention Transfer (BCIT), gates reuse before weight-changing training. It binds an observed effect to its source context, checks applicability conditions, vetoes candidates with named hard conflicts, and runs a bounded training trial on the current parent when the case is unresolved. Fully trained candidates still face a shared adoption rule that promotes or rolls back, and "only observed events extend memory." Reuse is checked at three points: before training, in a trial, and at adoption.
Two nearby notes treat the same loop from other sides. Why do LLM agents ignore condensed experience summaries? finds agents that fail to act on experience; this paper addresses the opposite failure, experience treated as context-free permission, and together they bracket the problem between ignoring history and following it unconditionally. Does constraining edits make skill learning more stable? reaches a similar conclusion for skill text, that control makes self-improvement stable, and BCIT's veto and rollback are comparable gates applied to weight updates. The substrate matters here. How does the substrate change which behaviors an optimizer can reach? separates weights from text, and Can frozen models learn better by extracting context into skills? operates on a frozen model. BCIT works on the weight side, where a promoted child rewrites the parent that later evidence is measured against. That reading of the contrast is mine; the excerpt does not draw it.
The excerpt is thin on evidence. It says only that "across the evaluated evidence chain, update effects vary across contexts," that under matched information BCIT "authorizes fewer harmful candidates while retaining beneficial ones," and that under matched compute it "attains a higher cross-task mean than all evaluated shared-model alternatives." It does not name the tasks, models or baselines, define "harmful" or "beneficial," give effect sizes, say how applicability conditions and hard conflicts are specified, or say how large the bounded trial is. The scope is one evaluated chain of updates, so generality is untested here. What the passages support is narrower than a general rule: a log of past updates is a set of hypotheses to check against the current parent, not a lookup table, and post-training compute is better allocated conditionally on evidence than unconditionally.
Inquiring lines that read this note 6
This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.
Can intelligent routing over smaller models outperform scaling a single large model? Does RL create genuinely new reasoning capabilities or refine existing ones? How can infrastructure records verify actual agent behavior? How does harness optimization generalize across different model architectures and domains? How do capability benchmark scores systematically misrepresent true model abilities?Related concepts in this collection 4
This note in its neighbourhood — explore the map, then jump to a related concept in the list below.
Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph
-
Why do LLM agents ignore condensed experience summaries?
LLM agents faithfully learn from raw experience but systematically disregard condensed summaries of the same experience. This study investigates whether the problem lies in how summaries are made, how models process them, or whether models simply don't need them.
the opposite failure: agents ignore experience, where BCIT guards against reusing it without conditions
-
Does constraining edits make skill learning more stable?
Self-improving agents often rewrite their own instructions freely, but what if bounded editing with memory of failures actually produces more reliable skill improvement than unconstrained revision?
also finds that gating self-improvement beats freedom, for skill text rather than weight updates
-
How does the substrate change which behaviors an optimizer can reach?
Different optimization substrates—weights, selection, text—differ in which behaviors they can produce, what information they preserve, and what can be inspected or constrained. Understanding these differences matters because defenses or risk estimates may not transfer between substrates.
BCIT acts on the weight substrate, where a promoted child changes the parent
-
Can frozen models learn better by extracting context into skills?
When a model encounters unfamiliar material in its context, can we help it reason more effectively by explicitly extracting rules and procedures from that material rather than changing the model itself?
contrast case: rules attach to a frozen model, so no parent checkpoint changes
Related papers in this collection 8
Papers most semantically related to this note, ranked by cosine similarity in the embedding space.
- Knowing When Not to Reuse: Conditional Experience Transfer in Autonomous LLM Post-Training
- Externalization in LLM Agents: A Unified Review of Memory, Skills, Protocols and Harness Engineering
- Macaron-V1: Towards Open Continual Learning with Self-Improvement and Mixture-of-LoRA
- RRSI: Regularized Recursive Self-Improvement of Agent Harnesses
- A Primer in Post-Training Reasoning Data: What We Know About How It Works
- Harness Updating Is Not Harness Benefit: Disentangling Evolution Capabilities in Self-Evolving LLM Agents
- Harness-R1: Learning to Edit Executable Runtime Harnesses from Agent Failure Trajectories
- Rethinking the Evaluation of Harness Evolution for Agents
Original note title
past update success does not authorize reuse on a changed parent model — autonomous post-training should condition transfer on current-state evidence