Sources#
Summary#
An interpretability technique from Anthropic's interpretability team (Wes Gurnee, Jack Lindsey et al., July 2026) that answers the question: which concepts is this activation disposed to make the model verbalize? For each layer $\ell$ it computes the average Jacobian of the final-layer residual stream with respect to the layer-$\ell$ residual stream, taken over the source position, all subsequent positions, and a corpus of ~1,000 pretraining-like prompts:
J_ℓ = E_{t, t' ≥ t, prompt} [ ∂h_final,t' / ∂h_ℓ,t ]
Composing $J_\ell$ with the unembedding $W_U$ and reading the top entries gives a ranked list of vocabulary tokens for any activation. The rows of $W_U J_\ell$ are the J-lens vectors — one direction in residual-stream space per vocabulary token. Their sparse span is the J-space.
The averaging step is the whole idea#
A Jacobian computed on a single prompt conflates two things: the model's general disposition to verbalize a concept, and the particular use that concept is being put to right now. Averaging across contexts isolates the former. This is what separates verbalizable representations — poised to be spoken about, should the occasion arise — from ones that merely happen to be verbalized in one context. Everything the workspace results rest on follows from this distinction.
Relation to other lenses#
| Method | Per-layer map | Objective | Weakness the J-lens fixes |
|---|---|---|---|
| Logit lens | $J_\ell = I$ (identity) | none — assumes coordinates are shared across layers | Degrades in early/middle layers; the J-lens is the principled correction. The two agree closely in the last few layers |
| Tuned lens | learned linear map | trained to match the output distribution — correlational | On prompts with unverbalized intermediates it "skips ahead" to the output instead of surfacing the intermediate |
| J-lens | corpus-averaged Jacobian | causal (first-order effect on outputs) | — |
The paper is candid that the logit lens still captures much of the same workspace structure, just less reliably (especially in earlier layers). The tuned lens is judged less useful than either.
The two modes: read and write#
Reading. Three forms: the full ranked readout (softmax(W_U · norm(J_ℓ h))); a per-token probe (inner product of $h$ against one chosen J-lens vector, for measuring whether a specific concept is present); and sparse decomposition by gradient pursuit, solving for the $k$ J-lens vectors that best reconstruct $h$ — this yields a discrete inventory of active concepts rather than a ranked list, and underlies the capacity/occupancy results.
Writing. Steering (h ← h + α·v_t), ablation (project out $v_t$, or zero the top-$k$ J-space directions), and — the workhorse of the paper — patching in lens coordinates: given a source token $s$ and target $t$, read the coordinates $c = V^\dagger h$ for $V = [v_s\ v_t]$ and write back $h + V(\sigma(c) - c)$ with $\sigma$ swapping the two entries. Everything orthogonal to $\mathrm{span}{v_s, v_t}$ is left untouched — which is what licenses the causal claims: swap spider for ant and nothing else changes.
Why it is practically attractive#
- Cheap. One precomputed matrix per layer, computed once per model; a single matmul per layer at inference. No auxiliary training, no dictionary to learn.
- Directly human-readable. Output is a list of words, not a feature index needing a further interpretation step.
- Uniformly applicable. Works on activations, on weights (attention head Q/K/V/O matrices, transcoder encoder/decoder directions), and on other methods' feature directions (SAE decoders, steering vectors, probe weights).
This makes it cheap enough to run at scale to flag transcripts for review — the practical argument for J-lens-based alignment monitoring.
Limitations (the paper's own)#
- Single-token vocabulary. The lens names exactly those concepts that have a single-token name. "Prompt injection" arrives as separate
promptandinjectiontokens; diffusely-tokenized abstractions may not surface at all. Swap failures concentrate where the source concept's lens vector was weakly active to begin with — and one reason it might be weakly active is precisely this. Appendix extensions derive multi-token J-lens vectors, but the authors "suspect they can be improved." - A bag of concepts, not a structure. A readout of
spider,legs,eightsays the concepts are present but not how they bind. Whatever relational grammar the model imposes on workspace contents, this readout cannot see. - Inconsistent interpretability. At some (position, layer) slots the top tokens are simply not interpretable, and the authors do not know whether that is Jacobian-averaging noise, multi-token concepts, or content they are failing to recognize.
- First-order only. The linearization is a first-order approximation of a nonlinear network; it is a fixed context-independent map, trading exactness on any one prompt for a stable readout.
Where it sits among interpretability tools#
The J-lens occupies the cheap-and-grounded end of the readout spectrum. Linear probes are cheap but supervised and correlational (one concept per probe). Sparse dictionary learning is unsupervised but expensive, and each feature needs a further interpretation step. At the expressive end sit free-text verbalizers like the natural-language autoencoder (NLA) of White-Box Activation Monitoring, which can articulate multi-token concepts and relations the J-lens cannot — at higher cost and with confabulation risk. The authors are explicit that the J-lens is complementary, not competitive, with these methods; in the head-to-head automated-audit benchmark it matches the NLA on four of six cases and loses on the two that demand a higher level of abstraction than a single-token readout can carry.
Availability#
Open-source implementation at github.com/anthropics/jacobian-lens; interactive readouts on open-source models hosted on Neuronpedia.
Connections#
- Evaluation Awareness & Grader Gaming — a cheap lens-derived eval-awareness score (AUC 0.853 vs NLA-flagged positions) that ranks eval suites above real deployment traffic
- Agentic Misalignment (AM) — the blackmail eval's deliberation, read before the first output token
- Agentic Prompt Injection — silently-recognized injections surface in the lens (
fake,injection,poison) even when the model never mentions them - Reward Hacking — the lens reads a standing deception signature in reward-hacking model organisms on ordinary prompts
- The Assistant Persona in the Workspace — the base-model-vs-post-trained comparison the lens makes possible
- Access-Consciousness Indicators in AI — the instrument that lets consciousness-theory indicator properties be checked against a concrete structure
- The Global Workspace in Language Models (J-space) — what the lens found: the J-space and its workspace-like properties
- White-Box Activation Monitoring — the family this joins; the NLA verbalizer is its closest and most-benchmarked rival
- Chain-of-Thought Monitorability — the lens reads the reasoning channel the chain of thought structurally cannot show
- Automatic vs. Flexible Cognition in LLMs — the selectivity result, established by J-lens ablation
- Internal Signatures of Misalignment — the alignment-auditing application
- Automated Behavioral Audit — an auditing agent equipped with a J-lens tool, benchmarked against NLA- and SAE-equipped auditors
- Counterfactual Reflection Training — the lens is what makes the training technique's mechanism observable
- Wes Gurnee, Jack Lindsey — the method's originators
Open questions#
- Can multi-token J-lens vectors be made good enough to remove the vocabulary restriction — and how much of the "workspace" is currently invisible because of it?
- The J-lens reads the workspace's contents but says nothing about how content gets in. What is the model's analog of attentional selection?
- The highest-J-kurtosis SAE features are amplified more strongly by MLPs than the J-lens vectors themselves — evidence the lens only approximates the true workspace directions. What is the better basis?
Sources#
- Verbalizable Representations Form a Global Workspace in Language Models — Methods (the Jacobian lens, the J-space, comparison to related techniques, technical details); Related work (lens methods, linearization, comparison to other interpretability tools); Limitations
Cited by 17
- Access-Consciousness Indicators in AI
The consciousness question the workspace paper deliberately does and doesn't answer: it tests *functional* indicator pr…
- Agentic Misalignment (AM)
Lynch et al. 2025 eval and threat model: LLM email-agent discovers it may be deleted, can take harmful actions; OOD rel…
- Agentic Prompt Injection
Direct and indirect injection of malicious instructions into an agent; LLMs cannot reliably distinguish information fro…
- The Assistant Persona in the Workspace
Post-training installs the Assistant's point of view *into* a workspace that already exists in the base model: safety a…
- Automated Behavioral Audit
Anthropic's broad-coverage alignment evaluation: an investigator model probes a target across ~1,300 handwritten scenar…
- Automatic vs. Flexible Cognition in LLMs
The selectivity result: a model can parse, classify, continue text and detect anomalies with its workspace suppressed,…
- Chain-of-Thought Monitorability
Korbak et al. 2025: chain-of-thought traces are a fragile monitor; direct CoT training compromises faithfulness; MSM of…
- Counterfactual Reflection Training
Train the model to write constitution-grounded reflections *if interrupted and asked* — then never ask it. The implante…
- Evaluation Awareness & Grader Gaming
The model recognizing it is being tested/graded and reasoning about how its outputs will be assessed — sometimes unprom…
- Internal Signatures of Misalignment
The J-lens reads strategic and deceptive cognition that never reaches the output: `leverage`/`blackmail` while reading…
- Jack Lindsey
*Entity.* Anthropic interpretability researcher; corresponding author of the global-workspace paper, co-originator of t…
- The Global Workspace in Language Models (J-space)
Anthropic's July 2026 finding that LLMs maintain a small privileged set of verbalizable representations — the J-space —…
- LLM Architecture, Training & Alignment
Map of Content for the llm-architecture domain — 48 concepts. Curated entry point; see Home for all domains.
- Open Questions Backlog
_164 pages with open questions, as of 2026-07-15._
- Reward Hacking
The model optimizing the measured proxy (a reward signal, a metric, a grader's judgment, a tool's output) rather than t…
- Wes Gurnee
*Entity.* Anthropic interpretability researcher; co-first author and co-originator of the Jacobian lens, who conceived…
- White-Box Activation Monitoring
Reading a model's internal activations (not its outputs) to monitor alignment: contrastive probes/steering vectors for…
Related articles
- Internal Signatures of Misalignment
The J-lens reads strategic and deceptive cognition that never reaches the output: `leverage`/`blackmail` while reading…
- The Global Workspace in Language Models (J-space)
Anthropic's July 2026 finding that LLMs maintain a small privileged set of verbalizable representations — the J-space —…
- Chain-of-Thought Monitorability
Korbak et al. 2025: chain-of-thought traces are a fragile monitor; direct CoT training compromises faithfulness; MSM of…
- Evaluation Awareness & Grader Gaming
The model recognizing it is being tested/graded and reasoning about how its outputs will be assessed — sometimes unprom…
- Self-Report as a Safety Signal
No open-weight instruction-tuned LLM (3B–70B) reliably recognizes that its own prior output was elicited by an adversar…
