Weight-based feature connection attempt (failed method) — is the failed precursor to → Automatic feature circuit detection

explored within the theme Features proved by intervention

Before settling on the ablation-based procedure in Section 5.3, the authors tried a cheaper, purely weight-based shortcut for finding which features cause which: multiply a layer-4 feature through the MLP’s weights and check the cosine similarity of the result against layer-5 features, hoping matrix multiplication alone would reveal which downstream features a given feature feeds into (sparse-autoencoders, §"D.4 Failed interpretability methods", p. 17). It found no meaningful connections at all, and the paper attributes the failure to the intermediate vector going out of distribution: multiplying a feature through the MLP weights does not land back in the region of activation space the MLP was ever trained to process, so cosine similarity there is not measuring anything the network’s own computation respects (sparse-autoencoders, §"D.4 Failed interpretability methods", p. 17). The authors also note the approach does not obviously generalize to the attention sublayer, where there is no single position dimension to multiply through. Feature-circuit-detection is the working alternative: instead of asking what a feature’s weights point toward algebraically, it asks what happens to a target feature’s actual activation when a candidate cause is ablated from a real forward pass, trading the weight method’s one-shot cheapness for causal grounding in activations the model actually produces.