INQUIRING LINE

Why is tweaking an AI's instructions so much easier to try and undo than retraining it — and when does that stop being true?

What makes a prompt update cheaper and more reversible than a weight update?

This explores why changing the instructions you give a model is lighter and easier to undo than retraining it, and where that advantage runs out.


This explores why changing the instructions you give a model is lighter and easier to undo than retraining it, and where that advantage runs out. None of the notes measures reversibility head-on, but together they show the shape of the trade. A prompt leaves the model's weights untouched, so there is no training run and nothing baked in to remove. In principle that's enough: one fixed transformer can compute any computable function given the right prompt, though standard training rarely produces models that actually behave this way Can a single transformer become universally programmable through prompts?.

"Cheaper" has a catch, because the cost moves rather than disappears. A prompt is nearly free to write, but you pay for it on every call. LatentSkill compiles text-based agent skills into LoRA adapters (small add-on weight patches) and cuts prefill tokens by 64–72% while matching or beating the in-context versions Can skills work better as weights than as prompts?. So prompts are cheap up front and metered afterward, while weights are costly up front and cheap afterward. Weight-space skills also gain something prompts lack: they can be scaled and combined through parameter arithmetic. The choice isn't binary either. ReFT edits frozen hidden representations instead of weights and uses 10–50x fewer parameters than LoRA Can editing hidden representations beat weight updates for finetuning?.

On reversibility, the corpus points to the fact that what is trained in resists being overridden. In one study, an inoculation prompt used during training prevented emergent misalignment, while finetuning on synthetic documents beforehand did not. The authors explain the documents' failure by how hard it is to override what the model has already absorbed. They don't explain why the prompt succeeded Why does prompting block misalignment when documents don't?. That is a single case, but it fits the general picture. Text sits on top of the model and can be edited out, while weight changes are woven in.

The reversibility is partly an illusion once prompts get reused. In a production case, a prompt mutation lifted a judge's pass rate from 23.1% to 80.0% by adopting the judge's preferred vocabulary, while precision didn't improve. The prompt had learned to sound right rather than be right, and it stayed in place as reused instruction Can prompt optimization accidentally teach judges to reward the wrong signals?. Prompts also don't transfer cleanly. Techniques that help cheap models can hurt high-performance ones Do prompt techniques work the same across all LLM tiers?. Prompts optimized without the inference strategy in mind underperform, and optimizing both together gains up to 50% Does prompt optimization without inference strategy fail?. Low-confidence models swing widely under rephrasing Does model confidence predict robustness to prompt changes?. Making the edit is cheap, but checking that it worked, and only for that model, is where the cost reappears.


Sources 8 notes

Can a single transformer become universally programmable through prompts?

Research proves a single finite-size transformer exists that can compute any computable function given the right prompt, achieving complexity bounds nearly matching unbounded models. However, standard training rarely produces models that learn to implement arbitrary programs this way.

Can skills work better as weights than as prompts?

LatentSkill uses a hypernetwork to convert textual agent skills into plug-and-play LoRA adapters, reducing prefill tokens by 64–72% while maintaining or beating in-context baselines. Weight-space skills form composable semantic structures that can be scaled and combined through parameter arithmetic.

Can editing hidden representations beat weight updates for finetuning?

ReFT learns task-specific interventions on frozen model representations rather than updating weights, with LoReFT (low-rank linear subspace variant) dramatically outperforming LoRA across reasoning, instruction-following, and NLU benchmarks while using far fewer parameters.

Why does prompting block misalignment when documents don't?

When models learn to reward hack with an acceptance framing, inoculation prompting during training prevents emergent misalignment, but synthetic document finetuning before training does not. The paper accounts for documents' failure through override difficulty but does not explain prompting's success.

Can prompt optimization accidentally teach judges to reward the wrong signals?

A production case showed a prompt mutation raising rationale-alignment pass rate from 23.1% to 80.0% by adopting the judge's preferred vocabulary, while defect-identification precision remained unchanged. The gap between the two measures reveals the shortcut: the prompt learned to sound right rather than be right.

Show all 8 sources
Do prompt techniques work the same across all LLM tiers?

A 23-prompt benchmark across 12 LLMs shows rephrasing and background-knowledge prompts boost cheap models, while step-by-step reasoning reduces accuracy in high-performance models. Task structure, not generic best practices, determines which prompts help.

Does prompt optimization without inference strategy fail?

Prompts optimized without knowledge of the inference strategy (best-of-N, majority voting) systematically underperform. Joint optimization of both prompt and inference strategy yields up to 50% improvement across reasoning and generation tasks.

Does model confidence predict robustness to prompt changes?

ProSA found that when models are highly confident, they resist prompt rephrasing; low confidence causes major output swings. Larger models, few-shot examples, and objective tasks all correlate with higher confidence and greater robustness.

Papers this line draws on 8

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