Reverse engineering, not just explaining
Most interpretability work answers the question which inputs mattered? Attribution methods like LIME, SHAP, and Integrated Gradients score input features against a prediction, and they are genuinely useful for auditing decisions.
Mechanistic interpretability asks a harder question: what algorithm is the network running? The goal is to recover the internal computation as something a human can read, name, and verify, in the way you might recover the logic of a compiled binary by reading its disassembly. Christopher Olah's group framed the ambition in the Distill article "Zoom In: An Introduction to Circuits" (2020): treat the network as an object to be reverse engineered rather than a black box to be probed from outside.
The difference matters for safety. An attribution map tells you a loan model leaned on income. It cannot tell you whether a model contains machinery for deception, because that machinery would not announce itself in the inputs.

