Features proved by intervention

A feature that merely looks meaningful in a highlighted text snippet hasn't proven anything yet. The real test is whether editing it changes what the model actually does, and this theme is where that test gets run.

It covers patching a learned feature's activation into a different sentence and watching the output shift, checked against a task whose correct answer was already known from earlier work, an even finer edit that stops exactly at a feature's own on/off threshold, and a method for tracing which upstream features cause a downstream one to fire, alongside a more direct attempt that was tried first and simply didn't work.

This theme's claim is that an interpretable-looking feature earns trust only once editing it is shown to change the model's behavior predictably. Activation patching, a causal mediation technique, supplies the method: the dictionary-feature patching procedure caches a feature's encoded activation on a counterfactual sentence and adds the difference back into the base sentence's residual stream, measuring the resulting KL divergence from a target output. On the Indirect Object Identification (IOI) task, naming the correct recipient in a sentence, this reaches a given KL divergence with fewer patched features and smaller edit magnitude than patching PCA components, using Automated Circuit Discovery's ordering algorithm to rank features by causal contribution. At finer grain, less-than-rank-one ablation lowers an activation only as far as one feature's own activation threshold, precise enough to isolate its causal effect on next-token logits. Automatic feature circuit detection extends the same logic across layers, ablating upstream features to trace what causes the closing-parenthesis dictionary feature to fire; the paper also records a weight-based feature connection attempt at the same task that found no meaningful connections, a negative result kept alongside the method that worked.