What Monosemantic Features Look Like
A sparse autoencoder trained on a one-layer transformer extracts over 4,000 features from just 512 neurons [1]Towards Monosemanticity: Decomposing Language Models With Dictionary Learning
Bricken, T., Templeton, A., Batson, J., et al.
Anthropic, 2023. Each feature is a direction in activation space with a corresponding latent dimension in the SAE. But how do we know that these features are genuinely interpretable? How do we move from "this latent dimension activates on certain inputs" to "this feature represents Arabic script" or "this feature detects legal citations"?
The answer requires systematic inspection. A feature is not interpretable just because it exists in the SAE's latent space. It is interpretable when a human can examine the inputs that activate it and state a coherent rule that predicts its behavior. The tooling and methodology for this inspection are the subject of this article.
Some of Bricken et al.'s inspected SAE latents had unusually coherent activation sets [2]Towards Monosemanticity: Decomposing Language Models With Dictionary Learning
Bricken, T., Templeton, A., Batson, J., et al.
Anthropic, 2023. Examples responded predominantly to Arabic script, DNA sequences, legal language, HTTP requests, Hebrew text, or nutrition statements. These cases are much easier to label than the polysemantic neurons used as baselines, but “Arabic” remains a hypothesis to test on rare scripts, transliterations, code, and adversarial counterexamples.A concise label summarizes observed behavior; it does not tell us every condition under which the latent fires, what information is absent when it stays quiet, or how the model uses it. Good dashboard work actively searches for examples that break the proposed label.
Bricken, T., Templeton, A., Batson, J., et al.
Anthropic, 2023
Feature Dashboards
Feature dashboards became the standard tool for inspecting SAE features. A dashboard compiles three complementary views of what a feature does, giving researchers enough information to assess whether the feature represents a coherent concept.
Feature Dashboard: A visualization showing three key pieces of information about an SAE feature: (1) the text examples where the feature activates most strongly, with activating tokens highlighted; (2) the tokens the feature promotes or suppresses in the model's output when active (logit effects); and (3) the impact of removing the feature from the representation (ablation).
Bricken, T., Templeton, A., Batson, J., et al.
Anthropic, 2023
Activation examples are the most intuitive component. The dashboard shows text excerpts where the feature fires strongly, with the specific tokens that triggered activation highlighted. If a feature is truly monosemantic, the top activation examples will all share a common theme. For a legal language feature, every top example will contain court cases, statutes, or legal terminology. For a DNA feature, every example will contain genetic sequences. The consistency of the top examples is the first test of interpretability.
Logit effects show the feature direction's direct projection onto output logits. Each row of the SAE decoder is a direction; multiplying it by the unembedding reveals which tokens that direction directly promotes or suppresses. Legal tokens in both the activation examples and the direct logit effect strengthen a legal-language hypothesis. They do not capture transformations through later layers, so an intervention is still needed for a causal claim.Direct logit effects answer what the direction would write through the unembedding at this point. The model may rotate, amplify, cancel, or ignore that write downstream.
Ablation impact measures what changes when a feature's reconstructed contribution is removed. A selective drop on held-out legal text would support a role in that behavior, while effects on other domains would challenge the narrow label. A small effect may indicate irrelevance, redundancy, an incomplete intervention, or a metric that misses the feature's role.
How to Read a Dashboard
Reading a dashboard well requires looking for both positive and negative evidence. A well-behaved monosemantic feature shows a consistent pattern across all three views:
- The top activation examples all share a recognizable theme.
- The logit effects are consistent with that theme.
- Ablation causes degradation specifically on inputs related to that theme.
But not all features are clean. Several warning signs indicate that a feature may not be as interpretable as it first appears:
Mixed activation examples. If the top activations include legal text, code, and poetry, the feature may still be polysemantic, representing a blend of concepts rather than a single one. This can happen when the SAE does not have enough latent dimensions to fully decompose all the features the model represents. Larger SAEs with higher expansion factors can sometimes resolve these mixed features by splitting them into finer sub-features.
Inconsistent logit effects. If the feature promotes unrelated types of tokens, legal terms, cooking vocabulary, and mathematical symbols, it likely represents a blend of concepts. The logit effects should tell the same story as the activation examples.
Minimal ablation impact. A feature with little measured effect may be dead or redundant, but the result can also reflect the chosen baseline, dataset, metric, or downstream self-repair. Treat it as a reason for further testing, not an automatic verdict.
Pause and think: Evaluating a feature
Suppose you are examining an SAE feature whose top activation examples all contain the word "bank." The examples include sentences about river banks, financial banks, and data banks. Is this feature monosemantic? How would you use the logit effects and ablation results to resolve the ambiguity?
If the direct logit effects promote financial terms such as interest, deposit, and loan, that supports a financial-bank interpretation, while the river-bank examples may be false positives linked by surface form. Mixed effects would instead support a word-form account. An ablation that selectively degrades relevant financial predictions would add causal evidence, though it would still not make the label a complete definition of the latent.
Automated Interpretability
With 4,000+ features from a tiny one-layer transformer, manual inspection of every feature dashboard is already time-consuming. At production scale, SAEs extract millions of features. Inspecting each one manually is impossible. How do you evaluate whether millions of features are interpretable?
The solution is to use another language model to automatically describe and evaluate features. The automated interpretability pipeline works in three steps:
- Show the LLM many examples where the feature activates strongly, with the activating tokens highlighted.
- Ask the LLM to generate a description of what the feature responds to (for example, "This feature fires on legal citations and statutory references").
- Test the description on held-out examples: Does the feature fire on new legal citations that the LLM has not seen? Does it stay quiet on non-legal text?
If a description predicts activation on held-out data, it is more useful than a label fitted only to the top examples. The test still does not prove monosemanticity: the evaluation set may omit a second activating pattern, or the description may capture a correlate. If prediction fails, the latent may be mixed or the description may simply be too narrow.Automated interpretability has a circularity concern: one neural network is used to assess claims about another. Blind spots in the evaluating model can bias the result, which is why predictive description tests should complement rather than replace manual and causal checks.
The Promise and Limits of Automated Interpretation
Automated interpretability enables the kind of broad coverage that manual analysis cannot achieve. Bricken et al. used it alongside human evaluation to assess thousands of features, combining targeted manual investigation of important features with automated screening of the full feature set [5]Towards Monosemanticity: Decomposing Language Models With Dictionary Learning
Bricken, T., Templeton, A., Batson, J., et al.
Anthropic, 2023.
But automated interpretability is imperfect in important ways. It can miss subtle patterns that a human expert would catch, a feature that responds to a specific syntactic construction may look like noise to an LLM that focuses on semantic content. It may generate overly broad descriptions: "this feature fires on text" is technically correct for a feature that responds to English prose, but the description is useless for understanding what the feature does.The risk of overly broad descriptions connects to what Bolukbasi et al. (2021) called the 'interpretability illusion': explanations that have good recall but poor precision. A feature described as 'responds to safety-related content' might actually fire on a much broader category that includes safety text along with many other things. The description looks right when you check it against the feature's activations (good recall), but it incorrectly predicts that the feature would fire on safety content it actually ignores (poor precision).
More fundamentally, automated interpretability scales one kind of evaluation; it does not replace careful analysis of important features. The pipeline can test whether many latents admit descriptions that predict their activation patterns. It cannot by itself tell us whether those latents are causally meaningful or whether they correspond to computations the model uses rather than statistical patterns in its activations.
The combination of all four evaluation methods, detailed case studies for important features, human evaluation on random samples, automated interpretability on activations for broad coverage, and automated interpretability on logit weights for understanding downstream effects, gives the most reliable picture of feature quality. No single method is sufficient on its own.
From Features to Function
Feature dashboards and automated interpretability give us tools to inspect what SAE features represent. But inspection is only the first step. The deeper question is whether these features can serve as the building blocks for a mechanistic understanding of the model.
When an SAE latent is stable, predictively describable, and causally useful, it offers a path around the polysemanticity problem that frustrates neuron-level analysis. Feature-level circuit analysis can then use a more specific unit than a whole neuron or head. The evaluation burden matters because a coherent label alone does not establish those stronger properties.
Whether this promise holds at scale is the subject of the next articles. Scaling monosemanticity examines what happens in much larger models. SAE variants and evaluation then covers architectural improvements and failure modes that feature dashboards alone cannot reveal.
Pause and think: The scalability challenge
The one-layer transformer in Bricken et al.'s experiment had 512 MLP neurons and the SAE extracted about 4,000 features, an 8x ratio. If this ratio holds for larger models, a model like GPT-2 Small with 768 residual stream dimensions might contain over 6,000 features per layer, and a model like Claude 3 Sonnet with tens of thousands of dimensions could contain millions of features across all layers.
How would you evaluate millions of features? Manual dashboard inspection is clearly impossible. Can automated interpretability handle this scale? What new evaluation methods might be needed?