The Interpretation Bottleneck
The logit lens projects states into vocabulary space, sparse autoencoders decompose them into learned latents, and probes test whether chosen labels are decodable. Each method restricts the form of the answer. Hidden-state decoding asks whether a language model can instead produce an open-ended description.
Consider an SAE feature that activates on certain inputs. A researcher must examine examples, propose a label, seek counterexamples, and refine the hypothesis. Doing this carefully is slow, and dictionaries can contain millions of features. Automated descriptions could help researchers triage that workload, although they do not remove the need for validation.
What if we could automate this translation? What if we could ask a model directly: "What does this activation represent?" and receive a natural language answer?
The Core Idea: LLMs as Interpreters
Language models are trained to produce coherent, contextually appropriate text. They have learned rich associations between concepts, contexts, and linguistic expressions. The central insight of hidden state decoding is that we can leverage this capability to interpret activations.
Hidden State Decoding: The use of language models to translate neural network activations into natural language descriptions. Rather than relying solely on human interpretation or indirect methods like vocabulary projection, we query LLMs to explain what information is encoded in a given activation.
The approach takes various forms. We can patch activations into a model and observe how its generation changes. We can train models to answer questions about activations. We can fine-tune models on datasets pairing activations with descriptions. But the underlying principle is consistent: use the linguistic competence of LLMs to bridge the gap between vector representations and human understanding.
Why This Matters
Hidden state decoding addresses several limitations of existing interpretability methods:
Scalability. Manual interpretation does not scale to models with billions of parameters and millions of features. Automated natural language descriptions enable systematic analysis of large-scale representations.
Expressiveness. Vocabulary projection reduces representations to single-token predictions. Natural language can express nuanced, multi-faceted descriptions: "This activation represents uncertainty about whether the speaker is being sarcastic, with attention to social context cues."
Accessibility. Natural-language questions let domain experts participate without learning every underlying tensor operation, provided the interface exposes uncertainty and failure modes rather than hiding them behind fluent prose.
Novel queries. Traditional methods answer fixed questions (what token would be predicted? does this probe classify correctly?). LLM-based interpretation enables open-ended questions: "What is this activation attending to? Why might this feature activate here? What would change if we modified this representation?"
The Landscape of Methods
This block covers several complementary approaches to hidden state decoding:
Patchscopes provides a unifying framework for activation inspection. By patching hidden states into carefully designed prompts, we can elicit natural language descriptions of what those states represent. Patchscopes generalizes several prior methods and enables cross-model interpretation.
SelfIE focuses on self-interpretation. It injects an activation where the model expects a text representation, then prompts the model for a description. Experiments include ethically charged scenarios and prompt injections, but the generated text is an elicited readout rather than a direct transcript of the model's reasoning.
Training models to explain their computations compares fine-tuned self-explainers with external explainers on targets produced by existing interpretation methods.
LatentQA frames activation interpretation as question-answering. By training decoder models on paired datasets of activations and Q&A, we can ask arbitrary questions about what a representation encodes and receive natural language answers.
Activation Oracles train one decoder across diverse interpretation tasks and test how far that common interface generalizes beyond its training mixture.
Natural Language Autoencoders remove the labels entirely. A verbalizer and a reconstructor are trained jointly to autoencode an activation through a natural-language bottleneck, so the explanations are learned from a reconstruction objective rather than from data whose answers we already know.
A Note on Faithfulness
A persistent concern in interpretability is whether explanations are faithful to actual model computations. A model might produce plausible-sounding but incorrect descriptions of its activations. This is not unique to hidden state decoding; all interpretation methods face questions about whether their outputs reflect ground truth.
The methods in this block take different approaches to faithfulness. Some evaluate against held-out benchmarks. Others compare self-interpretation with external interpretation or train against targets from existing interpretability methods. Better task performance is useful evidence, but it does not by itself establish privileged introspective access or faithfulness to the original computation.
We will examine these faithfulness considerations for each method. For now, the key point is that hidden state decoding is not a solved problem but a research frontier. The promise is significant, but so are the open questions.
Pause and think: What would convince you?
What evidence would convince you that an LLM's description of an activation is faithful to what that activation actually represents? Consider:
- If the description predicts downstream behavior, does that establish faithfulness?
- If different models give consistent descriptions, does that help?
- If causal interventions based on the description produce expected effects, is that sufficient?
There is no consensus answer. Different methods in this block offer different sources of evidence. As you read, consider what standards you find compelling.
Looking Ahead
We begin with Patchscopes, a framework that unifies many prior inspection techniques under a common abstraction. Understanding Patchscopes provides the conceptual foundation for the specialized methods that follow.