Skip to content
AI.info

Neural networks

Reading Hidden Representations Without Overclaiming

Use activation inspection, linear probes, ablations, similarity analysis, and counterfactual tests while respecting the limits of neural interpretation.

By the end you can

Comparison

Three levels of evidence about an internal representation

Stronger claims require stronger methods than merely plotting activations. Description summarises what activations look like across examples. Decodability trains a probe to predict an attribute from frozen activations. Intervention changes an activation or a pathway and measures what happens to the output.

The third level is not an abstraction waiting for someone to attempt it. In 2022 an intervention located where GPT stores a fact, and then edited it. “We first develop a causal intervention for identifying neuron activations that are decisive in a model's factual predictions.” That is Meng and colleagues, opening the abstract of the paper that introduced causal tracing. The tracing localised factual recall to middle-layer feed-forward modules at the subject tokens. The authors then changed those weights with Rank-One Model Editing to alter specific facts.

Notice what the levels cost and what they return. The same activations could have been plotted, and could have been probed, and neither would have named a weight anyone could change. The move from a heat map to a patched activation is not a rhetorical upgrade of the same finding. It is a different experiment with a different output.

FigureComparison · 3 columns

Description

Summarize what activations look like across examples.

  • Histograms and feature maps
  • Nearest neighbors
  • Dimensionality-reduction plots
  • Useful for finding patterns

Decodability

Train a probe to predict an attribute from the representation.

  • Shows accessible information
  • Depends on probe capacity
  • May exploit correlations
  • Does not prove the network uses it

Intervention

Change an activation or pathway and measure output effects.

  • Ablation and replacement
  • Activation patching
  • Counterfactual edits
  • Closer to causal evidence within the model

One concept may occupy a direction, subspace, circuit, or context-dependent pattern

Neural information can be distributed across many units, while one unit can participate in several features. A coordinate’s apparent meaning may also change across layers, contexts, seeds, or fine-tuning stages.

Whether a coordinate carries readable meaning is a property of the chosen basis, not of the function computed. That has been measured, not argued. The Network Dissection team took the 256 units of AlexNet conv5, trained on Places205, and spun them with a random orthogonal rotation Q drawn from SO(256). The network computed exactly what it had computed before: “Each rotated representation has exactly the same discriminative power as the original layer”. What changed was how much of it could be read — “we find that the number of unique detectors in Qf(x) is 80% fewer than the number of unique detectors in f(x)”. Same function, same accuracy, 80% fewer readable units. The paper’s introduction states the conclusion: “emergent interpretability is an axis-aligned property of a representation that can be destroyed by rotation without affecting discriminative power” — Bau and colleagues, 2017.

Interpretation should therefore target a defined behavior and dataset. Searching for a permanent dictionary of neuron labels is often the wrong objective. The rotation experiment shows that such a dictionary can be deleted without touching anything the network does.

Representations are functional and distributed; their meaning is not guaranteed to align with individual coordinates.

What a linear probe actually tests

A linear probe asks whether an attribute can be decoded by a simple linear boundary from frozen activations, and strong probe performance means the information is linearly accessible to that probe.

It does not show that the original network relies on the attribute, that the information is causal, or that the probe cannot exploit a shortcut correlated with the label.

The size of that gap has been measured. An experiment on BERT removed properties from the representation by causal intervention, then measured what the removal did to word prediction. Rank the properties by how well a probe decodes them. Rank the same properties by how much the model’s predictions actually depend on them. The two orders have no relationship to each other: “the probe accuracy does not correlate with task importance as measured by our method (Spearman correlation of 8.5, with a p-value of 0.871)”. That is Elazar and colleagues, in the 2021 amnesic probing paper. Their own summary is blunt. “Our findings demonstrate that conventional probing performance is not correlated to task importance, and we call for increased scrutiny of claims that draw behavioral or causal conclusions from probing results.” A probe score is not a weak form of a causal claim. On this evidence it is not a form of one at all.

An independent group reached the same failure from theory. Kumar and colleagues proved in 2022 that “Even under the most favorable conditions for learning a probing classifier when a concept's relevant features in representation space alone can provide 100% accuracy, we prove that a probing classifier is likely to use non-concept features”. The probe takes a shortcut even when it does not need one.

There is a cheap test for the shortcut, and it dates to 2019. Hewitt and Liang pair each linguistic probing task with a control task. Control tasks are ones “which associate word types with random outputs” and can therefore “only be learned by the probe itself”. A trustworthy probe should be selective, “achieving high linguistic task accuracy and low control task accuracy”. They tested part-of-speech tagging and dependency edge prediction on ELMo representations. The verdict: “popular probes on ELMo representations are not selective”. The control also reorders the layers, since although “probes on the first layer of ELMo yield slightly better part-of-speech tagging accuracy than the second, probes on the second layer are substantially more selective”. A probe accuracy reported without a control is a measurement of the probe.

Decodable information can be present without being used by the model’s decision path.

Visual

Interpretation tools answer different questions

Choose a method from the claim, not from the most attractive visualization. Activation statistics reveal scale, sparsity and saturation. Feature visualization searches for inputs that increase selected activations. Representation similarity compares layers or checkpoints at a population level. Probes measure accessibility. Interventions test whether changing an internal value alters a target behavior. Three of those five have a published, measured failure mode.

For saliency maps the failure is not hypothetical. Adebayo and colleagues ran sanity checks on the popular methods in 2018 and reported that “reliance, solely, on visual assessment can be misleading”. Worse, they found that “some existing saliency methods are independent both of the model and of the data generating process”. Such a picture reads as an explanation. It is meanwhile insensitive to the very model it claims to explain. Their conclusion is operational. Methods that fail those checks “are inadequate for tasks that are sensitive to either data or model, such as, finding outliers in the data, explaining the relationship between inputs and outputs that the model learned, and debugging the model”. They compare such output to edge detection, “a technique that requires neither training data nor model”.

Feature visualization has its own measured limit, and it predates the current interest by a decade. Nguyen and colleagues used evolutionary algorithms and gradient ascent to synthesise inputs that maximise class outputs. What came out, in their words: “Here we show a related result: it is easy to produce images that are completely unrecognizable to humans, but that state-of-the-art DNNs believe to be recognizable objects with 99.99% confidence (e.g. labeling with certainty that white noise static is a lion).” That was 2015. The optimiser did exactly what it was asked. What it returned is a picture of a unit’s sensitivity, at 99.99% confidence, and not a picture of the concept a reader will name when shown it.

At the other end of the table, an intervention-based method returns something with a denominator. Conmy and colleagues automated the activation-patching step of circuit finding in 2023 and validated it against circuits found by hand. Their ACDC rediscovered 5/5 component types in the GPT-2 Small Greater-Than circuit. And: “ACDC selected 68 of the 32,000 edges in GPT-2 Small, all of which were manually found by previous work.” 68 edges out of 32,000, each one checkable against prior manual work. A heat map has no such count and offers nothing to check it against.

FigureHierarchy · 5 levels
  • Activation statistics

    Reveal scale, sparsity, saturation, and distribution changes.

    • Feature visualization

      Search for inputs or patterns that increase selected activations.

      • Representation similarity

        Compare layers, models, or checkpoints at a population level.

        • Probes

          Measure whether chosen information is accessible from a representation.

          • Interventions

            Test whether changing an internal value alters a target behavior.

Position

Most of what is sold as explainability is a picture nobody ran a control on

Interpretability has become a product category, and its usual deliverable is an image: a heat map beside a prediction, a coloured overlay, a chart of where the model looked. The image is persuasive in a way the evidence under it is not. This lesson has now supplied the three controls that separate them.

For saliency, Adebayo and colleagues report that some existing methods are independent both of the model and of the data generating process. That is output which reads as an explanation while being insensitive to the thing it claims to explain. Their comparison is the one to keep: such output resembles edge detection, a technique that requires neither training data nor a model. For probes, Hewitt and Liang pair each task with a control task that associates word types with random outputs and can therefore only be learned by the probe itself; they find that popular probes on ELMo representations are not selective. For the further claim that a decoded attribute is used, Elazar and colleagues removed properties from BERT by causal intervention. Probe accuracy and measured task importance came out unrelated, at a Spearman correlation of 8.5 with a p-value of 0.871. A probe accuracy reported without its control measures the probe.

The shape is the same in all three, and that is why this is worth arguing rather than noting. The artefact gets produced, it is legible, and nothing in producing it tested whether it depends on the model at all. The test exists in each case, it is not expensive, and it is rarely shown next to the picture. Until it is, what you are holding is descriptive visualisation presented as a causal account: the weakest of this lesson’s three levels of evidence wearing the label of the strongest.

Some saliency methods are independent of the model they claim to explain. Their authors compared the output to edge detection.

Example

Claims that require different evidence

The wording of an interpretation should match the method used. Each claim below names the evidence it needs. Where the field has already run that evidence, the result is attached.

  • “This channel activates on curved edges” needs diverse visual examples and negative controls — not a synthesised maximiser. Nguyen and colleagues produced images “completely unrecognizable to humans” that networks labelled at 99.99% confidence.
  • “Layer 8 encodes language identity” needs held-out probes that control for topic and source, in the sense Hewitt and Liang made measurable: a probe is trustworthy when it is selective, “achieving high linguistic task accuracy and low control task accuracy”.
  • “The model uses this feature for prediction” needs an intervention or mediated causal test, not a probe score. Elazar and colleagues’ removal experiment on BERT put the correlation between probe accuracy and task importance at a Spearman 8.5, with a p-value of 0.871.
  • “Two models learned the same representation” needs a declared alignment and similarity method, because the published measures disagree with each other. “Unfortunately, these widely used measures often disagree on fundamental observations, such as whether deep networks differing only in random initialization learn similar representations.” That is Ding and colleagues, in 2021. Kornblith and colleagues had already shown in 2019 that no measure invariant to invertible linear transformation “can measure meaningful similarities between representations of higher dimension than the number of data points”. The measure is part of the claim.
  • “This head causes copying behavior” needs targeted ablation, patching, and checks for compensating paths. The worked standard is Wang and colleagues’ 2022 circuit for indirect object identification in GPT-2 small, evaluated against three declared criteria — faithfulness, completeness and minimality: “Our explanation encompasses 26 attention heads grouped into 7 main classes, which we discovered using a combination of interpretability approaches relying on causal interventions.” Even that is not the end of it. When Conmy and colleagues re-derived the same 1041-edge circuit automatically, “The IOI recovery runs were not able to recover negative heads when optimizing for logit difference”.
  • “The embedding is fair” requires outcome and slice evaluation beyond geometric appearance, since geometry is basis-dependent and a rotation can remove 80% of the readable structure without changing what the layer computes.

Key idea

Superposition complicates unit-level stories

A network with limited width may encode more features than available coordinates by using overlapping directions, so inputs activate combinations and downstream computation separates them imperfectly.

This makes one-neuron interpretations fragile. Population-level analyses and interventions across directions or circuits may provide stronger evidence.

A coordinate can carry several features, and one feature can span several coordinates.

Case

Toy models packed more features than the network had dimensions

Superposition has both its name and its mechanism from one specific study. Elhage and fifteen co-authors published Toy Models of Superposition in 2022. They used “small ReLU networks trained on synthetic data with sparse input features” to investigate “how and when models represent more features than they have dimensions”. The result: “when features are sparse, superposition allows compression beyond what a linear model would do, at the cost of ‘interference’ that requires nonlinear filtering”.

An independent group then pursued the consequence. Cunningham and colleagues showed in 2024 that sparse autoencoders trained to reconstruct a language model’s internal activations recover “sparsely activating features that are more interpretable and monosemantic than directions identified by alternative approaches”. When a learned direction reads more cleanly than a neuron, the neuron was never the unit.

Analogy

Studying a city through traffic sensors

Traffic sensors are one way to infer a city’s organization. Correlated sensor readings may reveal districts and commuting patterns, but shutting one road offers stronger evidence about which routes actually support movement.

Road closures remain plausible city interventions, whereas neural edits can move activations far outside their training distribution. The model may then react unpredictably.

Observation suggests hypotheses; controlled intervention tests whether an internal path matters.

Steps

A disciplined interpretation protocol

Build claims from weaker to stronger evidence. Define one behavior, slice or failure to explain. Collect descriptive evidence across positive, negative and counterexample inputs. Test decodability with simple probes, under held-out controls and against baseline features. Intervene by ablating, replacing or patching values, watching for distribution shift. Then state the claim narrowly: what the method supports, and which alternatives remain.

The fourth step is the one that needs a warning attached to it. Even a clean intervention result bounds its own claim rather than generalising. Hase and colleagues tested in 2023 whether the localisation produced by causal tracing predicts where a fact can be edited, and found that it does not. Which layer was edited predicted editing success far better than the tracing result did. “Specifically, we show that localization conclusions from representation denoising (also known as Causal Tracing) do not provide any insight into which model MLP layer would be best to edit in order to override an existing stored fact with a new one.”

That result comes from the same community that produced causal tracing, and it lands on the same lesson the probe results do one level down. An intervention answers the question it actually ran. The fifth step exists because the next question needs its own experiment.

FigureProcess · 5 steps
  1. 1. Define the behavior

    Choose one output, slice, or failure to explain.

  2. 2. Collect descriptive evidence

    Inspect activations across positive, negative, and counterexample inputs.

  3. 3. Test decodability

    Use simple probes with held-out controls and baseline features.

  4. 4. Intervene carefully

    Ablate, replace, or patch values while monitoring distribution shift.

  5. 5. State the claim narrowly

    Report what the method supports and which alternatives remain.

Key takeaways