6.3.5 · D5Interpretability & Explainability
Question bank — Probing classifiers
Before we start, we anchor every symbol these questions lean on. Nothing appears in a question until it is pictured here first.
True or false — justify
TF1. A probe with 95% accuracy proves the model uses that property to make its predictions.
False — probing measures presence, not usage. The info can sit in the representation as a passenger the model never consults; you need Causal Intervention Methods to test usage.
TF2. If a linear probe scores near chance but an MLP probe scores high, the property is absent from the representation.
False — the property is present but nonlinearly entangled. The MLP untangles it; the linear probe can't draw one flat plane through it.
TF3. Freezing the base model is optional — fine-tuning it during probing gives a cleaner signal.
False — if you unfreeze, the base model can learn during probing, so you'd measure its capacity to learn, not what it already knew.
TF4. Higher probe accuracy always means the property is stored more "explicitly."
False — accuracy can rise just because a stronger/deeper probe was used. Explicitness is about linear accessibility at fixed probe complexity, not raw accuracy.
TF5. A probe that reaches 100% on the training set but 60% on held-out data has found real structure.
False — that gap is memorization. Only held-out accuracy counts; this is why L2 regularization is applied to the probe.
TF6. If two layers both hit 90% probe accuracy, they encode the property equally well.
Not necessarily — one might be linearly separable with a large margin (robust) and the other barely separable with a thin margin (see figure s02). Same accuracy hides very different encodings.
TF7. Word-embedding layer (layer 0) accuracy for POS is meaningless because it has no context.
False — word identity alone strongly correlates with POS (e.g. "the" is almost always a determiner), so layer 0 legitimately scores high without any context.
TF8. For a multiclass POS probe, 45% accuracy is always bad.
Not necessarily — with 45 tags, chance is far below 45%; you must compare to the majority-tag baseline, not to 50%.
Spot the error
SE1. "We measured probe accuracy (correct fraction on held-out data for task ), which is high, so we'll skip a random-label baseline."
Error — without a control (probing with shuffled/random labels or a random network), you don't know if 88% reflects real encoding or just the probe's own expressive power.
SE2. "Our linear probe scored 71%; the MLP scored 89%; therefore the model doesn't encode semantic roles."
Error — the MLP succeeding proves the info is encoded (nonlinearly). The correct read is: present but entangled, not absent.
SE3. "We fine-tuned the last two layers while training the probe to boost its accuracy."
Error — fine-tuning breaks the frozen assumption; the boost may come from the model newly learning , invalidating the diagnostic.
SE4. "We used a 4-layer MLP probe with no regularization to be sure we extract everything."
Error — an unregularized deep probe has enough free parameters to bend around individual training points (memorize them), so high train accuracy no longer tells you the info was easily accessible; you measure the probe, not the representation. See figure s02 (the right panel there shows exactly this wiggly boundary threading through noise).
SE5. "Accuracy dropped from layer 6 (97%) to layer 12 (95%), so the model is getting worse at syntax."
Error — the small drop reflects the output layer specializing for the pre-training objective, not degradation. A 2-point dip is within normal layer-wise variation.
SE6. "We trained the probe and base model jointly and reported the layer's probe accuracy."
Error — joint training entangles the two objectives; the representation you're probing is no longer the pre-trained one you meant to study.
SE7. "The probe achieves high mutual information (MI — bits of label uncertainty removed by knowing ) with the labels, so the representation must be causally responsible for downstream behavior."
Error — mutual information / correlation ≠ causation. High MI only says predicts the label; you'd need an intervention (edit the feature, watch the output change) to claim causal responsibility.
Why questions
WY1. Why do we prefer a simple probe (linear or shallow) over a powerful one?
Because a powerful probe can extract info from any representation, so it can't distinguish "easily accessible" from "buried deep." Simplicity turns the probe into a fair yardstick.
WY2. Why compare accuracy across layers instead of just one layer?
Because where a property lives is itself the finding — early layers tend to hold surface/syntactic features, deeper layers hold semantics, revealing the model's processing pipeline.
WY3. Why is L2 regularization (, where is the regularization coefficient — a knob that penalizes large weights and so limits probe capacity) part of the probing objective?
Bigger forces smaller and simpler, so the probe can't memorize idiosyncrasies; it must rely on genuinely accessible, robust structure. Setting removes the leash and invites overfitting.
WY4. Why does the margin (the distance from the nearest point to the hyperplane, figure s02) matter, not just whether classes are separable?
A large means a wide clean gap — the linear encoding is robust to noise; a tiny positive means the classes almost touch, so the probe barely works and the info is nearly nonlinear or noisy.
WY5. Why is probing called a diagnostic rather than an explanation of the model?
It tells you what information is present and where, but not why the model behaves as it does — behavior requires causal tests, linking to Causal Intervention Methods.
WY6. Why might a probe succeed on a randomly initialized network too?
Random high-dimensional projections can accidentally make simple properties separable; that's why a random-network control tells you how much accuracy is "free" before real learning.
WY7. Why does contrasting linear vs. MLP probes connect to Disentangled Representations?
A shrinking linear-vs-MLP gap across layers signals the network is untangling the property into an explicit, axis-aligned direction — the hallmark of disentanglement.
WY8. Why can Attention Mechanisms make a property linearly probeable even at a single token?
Attention lets a token gather information from far-away words (like the subject's number), so the local activation ends up carrying context that a linear probe can read off.
WY9. Why can an unregularized MLP get 100% train accuracy on pure noise labels?
With enough hidden units it can draw a boundary that wraps each point individually (like memorizing a lookup table), so it "fits" even random labels — which is exactly why train accuracy alone is worthless as evidence.
Edge cases
EC1. What does probe accuracy near chance mean — absent info, or hard-to-extract info?
Ambiguous by itself: either the info isn't there, OR it's so nonlinearly entangled that even the probe can't reach it. You must add a stronger-probe or control to disambiguate.
EC2. Your binary task has 95% of examples in one class. The probe scores 95%. Good encoding?
No — 95% is exactly the majority-class baseline (always guess the common class). Always compare against this prior; here the probe may have learned nothing.
EC3. How do you compute the "chance" baseline under class imbalance, for binary vs. multiclass?
Binary or multiclass: the majority-class baseline = fraction of examples in the single most common class (always predict it). For a regression probe, the baseline is predicting the mean value (its error is the label variance).
EC4. What if the probe's training labels themselves correlate with an easier confound (e.g. sentence length)?
The probe may be exploiting the confound, not the property. High accuracy then says nothing about being encoded — control for the confound.
EC5. A property is perfectly encoded but by a single dead direction the model zeroed out downstream. Will a probe find it?
Yes, the probe can still read that direction from the frozen activations, even though the model ignores it — another reminder that presence ≠ usage.
EC6. If two classes overlap exactly in representation space (identical activations), what's the best possible probe accuracy?
Only the majority-class rate — no hyperplane can separate coincident points, so no probe, however complex, exceeds the prior.
EC7. What happens to layer-wise trends if you probe a model before any pre-training (random weights)?
Trends flatten toward the random-projection baseline; meaningful layer structure only emerges because pre-training shaped the representations.
EC8. For a regression probe predicting a continuous property, why can't you report "accuracy"?
There is no notion of "correct class" for a real number, so you score with mean-squared error or correlation instead; a perfect probe drives error to zero, and the baseline is the variance of the target.
Recall One-line summary to lock in
Probing reveals what info is present and where, gauged by a deliberately weak probe on frozen activations — never confuse presence with usage, and always sit accuracy against a baseline. ::: Presence, not usage; weak probe on frozen features; always baseline.
Related: Probing classifiers · Causal Intervention Methods · Disentangled Representations · Fine-tuning vs. Feature Extraction · Attention Mechanisms · Adversarial Robustness