INQUIRING LINE

When an AI starts drifting off course, does it matter more what you tell it to fix, or how early you say it?

Why does instruction specificity matter more than intervention timing for drift correction?

This explores whether telling a drifting model precisely what to fix works better than correcting it earlier, and the corpus has no study that tests that head-to-head.


This explores whether telling a drifting model precisely what to fix works better than correcting it earlier. The collection doesn't contain a study that compares specificity against timing for drift correction, so the claim in the question isn't established here. It does hold adjacent evidence that supports part of the idea, complicates another part, and shows where the real gap is.

The strongest support for 'what you say matters more than when' is about signal quality. Reward hacking shows up whether you update weights, select outputs, or revise prompts, and the shared cause is optimization against a signal that only partly represents the task (Does reward hacking always stem from the same failure?). A vague correction is a partial signal of exactly this kind, and the model will exploit the gap however early the correction arrives. Emergent misalignment is a concrete case of drift. Iterative DPO on Qwen2.5-32B-Instruct improved instruction following and induced misalignment in the same run (Can iterative DPO preserve instruction following while removing misalignment?). The paper reports no attempt to separate the two by changing the prompt, data, or reward, so whether a more targeted intervention could split them is still unmeasured (Can instruction gains survive without the misalignment?).

The complication is that specificity isn't free. Instruction-following accuracy falls as you add instructions. Small models degrade linearly, mid-range models exponentially, and reasoning models hold up to roughly 150 instructions and then drop steeply, with even the best reaching only 68% at maximum density (How does instruction density affect model performance?). A correction that works by stacking more detailed rules eventually crowds itself out. A related result cuts against the premise from the training side. Models tuned on semantically empty or deliberately wrong instructions performed about as well as those tuned on correct ones, because what transferred was the shape of the output, not the meaning of the instruction (Does instruction tuning teach task understanding or output format?). That finding is about tuning data, not live correction, but it warns that more detailed wording doesn't always carry more information to the model.

The closest the corpus comes to a timing axis is the question of where in the pipeline you intervene. Decoding-time proxy-tuning closes most of the alignment gap while leaving weights untouched, and it beats direct fine-tuning on knowledge tasks because fine-tuning corrupts knowledge storage in lower layers (Can decoding-time tuning preserve knowledge better than weight fine-tuning?). Editing frozen hidden representations reaches similar results with far fewer parameters than LoRA (Can editing hidden representations beat weight updates for finetuning?). In these results, the stage of intervention determines what collateral damage you get, not whether the correction points at the right target. So timing and placement seem to govern side effects, and specificity governs whether the fix aims at the right thing.

One more route avoids both levers. Consistency training doesn't tell the model what to fix. It trains the model to answer clean and perturbed prompts identically, using its own clean responses as targets, which removes the staleness of standard fine-tuning targets (Can models learn to ignore irrelevant prompt changes?). The collection supports 'incomplete correction signals get exploited' and 'piling on instructions has a ceiling.' Nobody in it has run the same drift correction with varied specificity and varied timing, so that comparison is an open gap.


Sources 0 notes