EN KO
← All Publications

Representation Units for LLM Knowledge Analysis: Neurons vs. SAEs

KCC 2026
Hyelim Lim, Ingyu Bang, Hwiyeong Lee, Taeuk Kim

One-Line Summary

A comparative study of the basic representation units used to analyze knowledge stored inside large language models — individual neurons versus features extracted by Sparse Autoencoders (SAEs) — examining which unit provides more interpretable, disentangled, and faithful access to how factual and linguistic knowledge is encoded within the model.

Background & Motivation

Understanding where and how knowledge lives inside a large language model is a central goal of mechanistic interpretability. To probe, localize, or edit the knowledge a model has memorized, researchers must first choose an atomic unit of analysis: the smallest component whose activation is inspected, attributed to a piece of knowledge, and potentially intervened upon. The two dominant candidates today are the model's own individual neurons (dimensions of hidden activations) and the features recovered by Sparse Autoencoders (SAEs) trained on those activations.

Neurons are the native, readily available unit — no extra training is required, and prior work on "knowledge neurons" has attributed specific facts and linguistic categories to small groups of them. However, neurons are widely observed to be polysemantic: a single neuron often fires for many unrelated concepts because the model packs more features into its representation space than it has dimensions (superposition). This entanglement makes neuron-level attribution ambiguous and can produce a misleading picture of how knowledge is organized.

SAEs were introduced to address exactly this problem. By reconstructing hidden activations as a sparse linear combination of an over-complete dictionary of features, SAEs aim to disentangle superposed concepts into monosemantic units, each ideally corresponding to a single, human-interpretable concept. Yet SAE features come at a cost: they require additional training, introduce reconstruction error, and their faithfulness to the model's actual computation is itself under scrutiny.

Key Tension — Polysemantic Neurons vs. Sparse Features:

  • Neurons are native but entangled: They are directly part of the model's computation, but polysemanticity and superposition mean one neuron mixes many concepts, blurring knowledge attribution.
  • SAE features are disentangled but derived: They promise clean, monosemantic units that separate distinct pieces of knowledge, but they are learned approximations layered on top of the model, raising questions of faithfulness and reconstruction fidelity.
  • The open question: When the goal is to analyze knowledge stored in an LLM, which unit yields more interpretable, disentangled, and faithful conclusions — and under what conditions?

This work situates itself within the lab's broader interpretability line, which asks how internal representations mediate knowledge access and retrieval in LLMs (e.g., Query Lens, ICML 2026). Rather than assuming a single "right" unit, it treats the choice of representation unit as an empirical question and systematically compares neurons and SAE features on the same knowledge-analysis tasks.

Two Views of the Same Representation

AspectNeuronsSAE Features
OriginNative hidden dimensions of the modelLearned dictionary trained on activations
Extra training?None requiredSAE must be trained per layer/site
InterpretabilityOften polysemantic (mixed concepts)Aims for monosemantic (single concept)
DisentanglementLimited by superpositionExplicitly encourages sparse separation
Faithfulness concernDirectly on the computation pathReconstruction error may distort signal
Cost / convenienceLow cost, immediately availableHigher cost, dictionary size to tune

Proposed Method

The study frames a controlled, head-to-head comparison in which neurons and SAE features are evaluated as interchangeable analysis units for the same knowledge-probing questions. The design isolates the effect of the unit choice from the underlying knowledge being studied.

1
Define a Common Knowledge-Analysis Setting
A shared set of knowledge probes is fixed — factual associations and linguistic properties that the model has plausibly memorized — so that both candidate units are tested against identical targets. Fixing the knowledge under study ensures that any difference in the resulting analysis is attributable to the representation unit rather than to a change in the task.
2
Extract Both Candidate Units from the Same Activations
For a chosen model site (e.g., hidden activations at a given layer), the neuron view uses the raw activation dimensions directly, while the SAE feature view passes the same activations through a trained Sparse Autoencoder to obtain a sparse, over-complete feature basis. Both views therefore describe the same underlying representation, differing only in how it is decomposed into units.
3
Localize Knowledge to Units
For each piece of knowledge, the most responsible units are identified in both spaces — the neurons most strongly associated with the target, and the SAE features most strongly associated with the target. This yields, for every probe, a neuron-based localization and an SAE-based localization that can be directly compared for how concentrated, clean, and consistent the attribution is.
4
Assess Interpretability and Disentanglement
Each identified unit is examined for what concepts it responds to. The analysis asks whether a unit corresponds to a single coherent concept (monosemantic) or mixes several unrelated ones (polysemantic), and whether distinct pieces of knowledge map to distinct units rather than collapsing onto shared, overloaded units. This captures the practical interpretability and disentanglement of each representation unit.
5
Test Faithfulness via Intervention
To move beyond correlation, the identified units are perturbed — suppressing or amplifying the neurons versus the SAE features associated with a given target — and the effect on the model's expression of that knowledge is observed. A unit is deemed faithful to the extent that intervening on it selectively changes the intended knowledge without broadly disrupting unrelated behavior, providing a causal rather than merely descriptive comparison.

Controlled Comparison Principle:

Because both unit types are derived from the same activations and evaluated on the same probes, differences in interpretability, disentanglement, and faithfulness can be attributed to the choice of representation unit itself — making the comparison a clean test of "neurons vs. SAEs" rather than a confound of different tasks or models.

Key Points

Why It Matters

The choice of representation unit is a foundational, often unexamined assumption underlying much of interpretability research. By making that choice the explicit object of study, this work clarifies what is gained and lost when analyzing LLM knowledge through neurons versus SAE features.

Broader Insight: Before we can answer "how does an LLM store this knowledge?", we must decide in terms of what we describe that storage. Neurons and SAE features offer two different lenses on the same representation, and each shapes the conclusions we can draw. Treating the representation unit as an empirical choice — rather than a given — is a prerequisite for trustworthy, reproducible interpretability of knowledge in large language models.

Interpretability Representation Learning