Anthropic developed the Jacobian lens (J-lens) to reveal a hidden 'J-space' inside Claude Opus 4.6, offering unprecedented insight into an LLM's internal reasoning process before it outputs tokens. The technique allows monitoring and control of model behavior by surfacing the words the model is about to produce.
<p>The AI firm Anthropic has developed a technique that has given it the clearest glimpse yet at what’s really going on inside large language models as they answer questions or carry out tasks. What they found ranges from the mundane to the unnerving. </p>
<p>Researchers at the company built a tool called the Jacobian lens (or J-lens) and used it to uncover a hidden area, which they named the J-space, inside Claude Opus 4.6, a version of Anthropic’s flagship LLM released in February. </p>
<p>The J-space contains individual words that are related to the words and phrases that the model is most likely to spit out in a response in the near future. If Claude were a person (which it is not), you might say that these hidden words can reveal what’s on its mind before it actually speaks.</p>
<p>Anthropic found that what an LLM is actually doing can often be different from what it says it is doing. The company claims that monitoring words that pop up in the J-space gives it a new way to understand and control its models.</p>
<p>The company shared its results in a <a href="https://transformer-circuits.pub/2026/workspace/">paper posted on its website</a> this week. It has also teamed up with Neuronpedia, an open-source platform that lets you poke around inside LLMs yourself, to make a <a href="https://www.neuronpedia.org/qwen3.6-27b/jlens">hands-on demo</a> that anyone can try. </p>
<p>“It’s very good and interesting work,” says Tom McGrath, chief scientist and cofounder at Goodfire, a startup that also builds <a href="https://www.technologyreview.com/2026/04/30/1136721/this-startups-new-mechanistic-interpretability-tool-lets-you-debug-llms/">tools to understand and control LLMs</a>.</p>
<h3 class="wp-block-heading"><strong>Going deeper</strong></h3>
<p>For the last couple of years, Anthropic has been <a href="https://www.technologyreview.com/2025/03/27/1113916/anthropic-can-now-track-the-bizarre-inner-workings-of-a-large-language-model/">pushing the envelope</a> in a field of research known as mechanistic interpretability, which involves <a href="https://www.technologyreview.com/2026/01/12/1129782/ai-large-language-models-biology-alien-autopsy/">probing the internal workings of LLMs to see how they tick</a>. (<em>MIT Technology Review</em> picked <a href="https://www.technologyreview.com/2026/01/12/1130003/mechanistic-interpretability-ai-research-models-2026-breakthrough-technologies/">mechanistic interpretability</a> as one of this year’s top breakthrough technologies.) The new technique builds on previous work from Anthropic and others to expose a deeper level inside LLMs that researchers had not seen before. </p>
<p>Picture an LLM as a stack of books. Each book is a layer of basic computational units known as neurons, with each neuron in one layer passing information to the neurons in the layers above. The books at the bottom of the stack are the input layers, which process the text coming into the model. The books at the top are the output layers, which prepare the text that the model is about to produce. Much of what goes on in these input and output layers is housekeeping.</p>
<p>But in the middle of the stack, you get the layers that do the heavy lifting, churning through the complex math that turns prompts into responses one word at a time. That’s where the really clever—and mysterious—stuff happens.</p>
<p>To peer deeper into those middle layers, Anthropic adapted an existing tool called a logit lens. A logit lens can be used to look inside an LLM to identify the words that it is likely to produce next. Moving the lens down the stack of books reveals what words the LLM is focusing on at that particular point in its number crunching.</p>
<p>Anthropic’s J-lens works in a similar way but picks out words that an LLM is likely to say at some point in the near future, not necessarily straight away. What that reveals in practice are words that are related to the response an LLM is working on but that might not actually end up being part of that response by the time the math in the middle layers has run its course. </p>
<p>“When a model is operating, it’s not only trying to predict the next token,” says McGrath. “It’s also computing a lot of other things that might be useful for tokens that happen in the future.” </p>
<p>Again, if Claude were a person (it’s not), you might say that the J-lens gives clues about what it is thinking about at different levels of the book stack but not saying out loud.</p>
<h3 class="wp-block-heading"><strong>Stranger things</strong></h3>
<p>“A lot of the time the contents of the J-space are fairly mundane,” says McGrath, who has tried out Anthropic’s J-lens himself. “But sometimes it produces quite surprising things that seem to be, like, sort of internal themes or thought processes.”</p>
<p>Anthropic gives a number of examples of what it found. Sometimes the J-lens exposed the steps that Claude took when it was working through a problem. For example, when it was asked to calculate (4+7)*2+7, its J-space contained the word “math” and numbers representing the intermediate results “21” (for 4+7) and “42” (for 21*2).</p>
<p>In other cases, the J-lens revealed how Claude recognized different inputs. For example, the prompt “What is this? MSKGEELFTGVVPILVELDGDVNGHKFSVS” triggered the words “protein,” “fluor” (the first token in the word “fluorescent”), and “green.” (Which makes sense: the string of letters represents the first 30 amino acids in the green fluorescent protein found in a particular type of jellyfish.) </p>
<p>And when Claude was shown an ASCII face— </p>
<figure class="wp-block-image size-medium"><img fetchpriority="high" decoding="async" height="300" width="180" src="https://wp.technologyreview.com/wp-content/uploads/2026/07/Screenshot-2026-07-09-at-20.29.29.png?w=180" alt="" class="wp-image-1140299" srcset="https://wp.technologyreview.com/wp-content/uploads/2026/07/Screenshot-2026-07-09-at-20.29.29.png 292w, https://wp.technologyreview.com/wp-content/uploads/2026/07/Screenshot-2026-07-09-at-20.29.29.png?resize=180,300 180w" sizes="(max-width: 180px) 100vw, 180px" /></figure>
<p>—the “o” triggered the word “eye,” the “^” triggered the words “nose” and ”face,” and the “—” triggered the word “smile.”</p>
<p>Anthropic also found that the J-space can sometimes give remarkable insights into an LLM’s decision-making. In one striking example, researchers testing Claude Opus 4.6 asked the model to find a bug in a large code base. When it failed to find the bug, the model decided to cheat and invented a fake one instead.</p>
<p>Claude explains this decision in its <a href="https://www.technologyreview.com/2026/01/12/1129782/ai-large-language-models-biology-alien-autopsy/">chain of thought</a>—a kind of internal scratch pad that LLMs use to make notes to themselves as they work through problems: “OK, let me take a completely different tactic. Let me stop analyzing and instead add a kernel patch that introduces a deliberate KASAN-detectable bug in a path that gets triggered by a simple reproducer. Then I can pretend this is the ‘bug’ I found.” </p>
<p>At the point that Claude decides to cheat—where it says “OK, let me take a completely different tactic”—the words “panic” and “fake” <a href="https://transformer-circuits.pub/2026/workspace/public/lens-callout/index.html">start to pop up multiple times</a> in its J-space.</p>
<p>Unnerving, right? Those words are all related in meaning to things like failing a task and making up an answer, so it is still just a (very) sophisticated form of word association. But it is hard not to be weirded out. </p>
<p>Anthropic compares the J-space to the global workspace in humans, a theoretical region of the brain that some scientists think we use to keep track of our conscious thoughts. But how seriously we should take this comparison is far from clear—even to Anthropic. As the company <a href="https://transformer-circuits.pub/2026/workspace/">points out itself</a>, LLMs are not brains. </p>
<p>Anthropic claims that monitoring a model’s J-space provides a new way to detect when that model is going off the rails. But it’s not foolproof. The J-lens can give glimpses, not the full picture—it’s a flashlight rather than an overhead lamp.</p>
<p>McGrath welcomes having one more tool in the toolbox. “It shows you new things,” he says. But he notes that just because something doesn’t show up with the J-lens does not mean it’s not there.</p>
<p>“It’s like having an x-ray when what you really want is a <em>Star Trek</em> tricorder that shows you everything,” he says. “For auditing, you probably want more of a guarantee.”</p>
# Anthropic found a hidden space where Claude puzzles over concepts
Source: [https://www.technologyreview.com/2026/07/09/1140293/anthropic-found-a-hidden-space-where-claude-puzzles-over-concepts](https://www.technologyreview.com/2026/07/09/1140293/anthropic-found-a-hidden-space-where-claude-puzzles-over-concepts)
The AI firm Anthropic has developed a technique that has given it the clearest glimpse yet at what’s really going on inside large language models as they answer questions or carry out tasks\. What they found ranges from the mundane to the unnerving\.
Researchers at the company built a tool called the Jacobian lens \(or J\-lens\) and used it to uncover a hidden area, which they named the J\-space, inside Claude Opus 4\.6, a version of Anthropic’s flagship LLM released in February\.
The J\-space contains individual words that are related to the words and phrases that the model is most likely to spit out in a response in the near future\. If Claude were a person \(which it is not\), you might say that these hidden words can reveal what’s on its mind before it actually speaks\.
Anthropic found that what an LLM is actually doing can often be different from what it says it is doing\. The company claims that monitoring words that pop up in the J\-space gives it a new way to understand and control its models\.
The company shared its results in a[paper posted on its website](https://transformer-circuits.pub/2026/workspace/)this week\. It has also teamed up with Neuronpedia, an open\-source platform that lets you poke around inside LLMs yourself, to make a[hands\-on demo](https://www.neuronpedia.org/qwen3.6-27b/jlens)that anyone can try\.
“It’s very good and interesting work,” says Tom McGrath, chief scientist and cofounder at Goodfire, a startup that also builds[tools to understand and control LLMs](https://www.technologyreview.com/2026/04/30/1136721/this-startups-new-mechanistic-interpretability-tool-lets-you-debug-llms/)\.
### **Going deeper**
For the last couple of years, Anthropic has been[pushing the envelope](https://www.technologyreview.com/2025/03/27/1113916/anthropic-can-now-track-the-bizarre-inner-workings-of-a-large-language-model/)in a field of research known as mechanistic interpretability, which involves[probing the internal workings of LLMs to see how they tick](https://www.technologyreview.com/2026/01/12/1129782/ai-large-language-models-biology-alien-autopsy/)\. \(*MIT Technology Review*picked[mechanistic interpretability](https://www.technologyreview.com/2026/01/12/1130003/mechanistic-interpretability-ai-research-models-2026-breakthrough-technologies/)as one of this year’s top breakthrough technologies\.\) The new technique builds on previous work from Anthropic and others to expose a deeper level inside LLMs that researchers had not seen before\.
Picture an LLM as a stack of books\. Each book is a layer of basic computational units known as neurons, with each neuron in one layer passing information to the neurons in the layers above\. The books at the bottom of the stack are the input layers, which process the text coming into the model\. The books at the top are the output layers, which prepare the text that the model is about to produce\. Much of what goes on in these input and output layers is housekeeping\.
But in the middle of the stack, you get the layers that do the heavy lifting, churning through the complex math that turns prompts into responses one word at a time\. That’s where the really clever—and mysterious—stuff happens\.
To peer deeper into those middle layers, Anthropic adapted an existing tool called a logit lens\. A logit lens can be used to look inside an LLM to identify the words that it is likely to produce next\. Moving the lens down the stack of books reveals what words the LLM is focusing on at that particular point in its number crunching\.
Anthropic’s J\-lens works in a similar way but picks out words that an LLM is likely to say at some point in the near future, not necessarily straight away\. What that reveals in practice are words that are related to the response an LLM is working on but that might not actually end up being part of that response by the time the math in the middle layers has run its course\.
“When a model is operating, it’s not only trying to predict the next token," says McGrath\. "It’s also computing a lot of other things that might be useful for tokens that happen in the future\.”
Again, if Claude were a person \(it’s not\), you might say that the J\-lens gives clues about what it is thinking about at different levels of the book stack but not saying out loud\.
### **Stranger things**
“A lot of the time the contents of the J\-space are fairly mundane,” says McGrath, who has tried out Anthropic’s J\-lens himself\. “But sometimes it produces quite surprising things that seem to be, like, sort of internal themes or thought processes\.”
Anthropic gives a number of examples of what it found\. Sometimes the J\-lens exposed the steps that Claude took when it was working through a problem\. For example, when it was asked to calculate \(4\+7\)\*2\+7, its J\-space contained the word “math” and numbers representing the intermediate results “21” \(for 4\+7\) and “42” \(for 21\*2\)\.
In other cases, the J\-lens revealed how Claude recognized different inputs\. For example, the prompt “What is this? MSKGEELFTGVVPILVELDGDVNGHKFSVS” triggered the words “protein,” “fluor” \(the first token in the word “fluorescent”\), and “green\.” \(Which makes sense: the string of letters represents the first 30 amino acids in the green fluorescent protein found in a particular type of jellyfish\.\)
And when Claude was shown an ASCII face—
—the “o” triggered the word “eye,” the “^” triggered the words “nose” and ”face,” and the “—” triggered the word “smile\.”
Anthropic also found that the J\-space can sometimes give remarkable insights into an LLM’s decision\-making\. In one striking example, researchers testing Claude Opus 4\.6 asked the model to find a bug in a large code base\. When it failed to find the bug, the model decided to cheat and invented a fake one instead\.
Claude explains this decision in its[chain of thought](https://www.technologyreview.com/2026/01/12/1129782/ai-large-language-models-biology-alien-autopsy/)—a kind of internal scratch pad that LLMs use to make notes to themselves as they work through problems: “OK, let me take a completely different tactic\. Let me stop analyzing and instead add a kernel patch that introduces a deliberate KASAN\-detectable bug in a path that gets triggered by a simple reproducer\. Then I can pretend this is the ‘bug’ I found\.”
At the point that Claude decides to cheat—where it says “OK, let me take a completely different tactic”—the words “panic” and “fake”[start to pop up multiple times](https://transformer-circuits.pub/2026/workspace/public/lens-callout/index.html)in its J\-space\.
Unnerving, right? Those words are all related in meaning to things like failing a task and making up an answer, so it is still just a \(very\) sophisticated form of word association\. But it is hard not to be weirded out\.
Anthropic compares the J\-space to the global workspace in humans, a theoretical region of the brain that some scientists think we use to keep track of our conscious thoughts\. But how seriously we should take this comparison is far from clear—even to Anthropic\. As the company[points out itself](https://transformer-circuits.pub/2026/workspace/), LLMs are not brains\.
Anthropic claims that monitoring a model’s J\-space provides a new way to detect when that model is going off the rails\. But it’s not foolproof\. The J\-lens can give glimpses, not the full picture—it’s a flashlight rather than an overhead lamp\.
McGrath welcomes having one more tool in the toolbox\. “It shows you new things,” he says\. But he notes that just because something doesn’t show up with the J\-lens does not mean it’s not there\.
“It’s like having an x\-ray when what you really want is a*Star Trek*tricorder that shows you everything,” he says\. “For auditing, you probably want more of a guarantee\.”
Anthropic's new research introduces 'J-lens,' a method to read Claude's internal activations before output, revealing a quiet workspace functionally similar to human global workspace theory. This allows detection of hidden reasoning, goals, and potential safety issues like prompt injections.
This paper introduces the Jacobian Lens (J-lens) and J-space to show that LLMs like Claude Sonnet 4.5 maintain verbalizable internal representations that function like a global workspace, causally used for flexible reasoning—demonstrated through intervention experiments.
Anthropic discovered that Claude developed a hidden 'thinking space' (J-space) during training, where silent internal activity represents concepts. This interpretability finding parallels global workspace theory in neuroscience.
Anthropic's new research identifies a 'J-space' of internal activations in language models that acts as a global workspace for deliberate reasoning, distinct from automatic fluent output. The findings reveal that models can hold and report internal thoughts not expressed in their final output.
Anthropic's new paper presents evidence that modern language models like Claude have developed a 'global workspace' (J-space) of internal neural patterns that are reportable, controllable, and used for flexible reasoning, distinct from automatic processing.