Anthropic’s J-space discovery: what it tells us about AI reasoning Anthropic found a hidden space inside its Claude model where unseen words influence reasoning. Here is what the discovery does and does not prove....
seen from Italy
seen from China

seen from Saudi Arabia
seen from United States

seen from United States
seen from China
seen from United States
seen from Venezuela
seen from Puerto Rico

seen from Singapore
seen from South Korea

seen from France
seen from United States

seen from Mexico
seen from Argentina
seen from United States
seen from China

seen from United States
seen from United States
seen from United States
Anthropic’s J-space discovery: what it tells us about AI reasoning Anthropic found a hidden space inside its Claude model where unseen words influence reasoning. Here is what the discovery does and does not prove....
Anthropic finds hidden thoughts inside AI models Anthropic's latest research reveals a hidden J-space inside AI models where words influence reasoning without appearing in output. What does this mean for AI transparency?...
The Sequence Knowledge #744: A Summary of our Series About AI Interpretability
New Post has been published on https://thedigitalinsider.com/the-sequence-knowledge-744-a-summary-of-our-series-about-ai-interpretability/
The Sequence Knowledge #744: A Summary of our Series About AI Interpretability
A great compilation of materials to learn AI interpretability.
Created Using GPT-5
💡 AI Concept of the Day: A Summary About Our Series About Interpretability in AI Foundation Models
Today, we are closing our series about AI interpretability with a summary of what we have published in the last few weeks. This series went deep into some of the most recent trends and research about interpretability in foundation models. For the next series we are going to cover another hot topic: synthetic data generation. Before that, let’s recap everything we covered in terms of AI interpretability which we truly hope have broaden your understanding of the space. This might be the deepest compilation of AI interpretability topics for the new generation of AI models.
AI interpretability is fast becoming a core frontier because the value of modern systems now hinges less on “Can it solve the task?” and more on “Can we trust, control, and improve how it solves the task?” As models move from next-token predictors to agentic systems with long-horizon planning, tool use, and memory, silent failure modes—specification gaming, deceptive generalization, and data-set shortcuts—stop being rare curiosities and become operational risks. Interpretability provides the missing instrumentation: a way to inspect internal representations and causal pathways so that safety, reliability, and performance engineering can rest on measurable mechanisms rather than purely behavioral metrics. It is also economically catalytic: features you can name, test, and control become levers for debugging latency/quality regressions, enforcing policy, transferring skills across domains, and complying with audits.
TheSequence is a reader-supported publication. To receive new posts and support my work, consider becoming a free or paid subscriber.
Today’s toolbox spans two broad families. First is behavioral interpretability: saliency maps, feature attributions, linear probes, TCAV-style concept vectors, and causal interventions (e.g., activation patching, representation editing) that test whether a hypothesized feature actually mediates outputs. Second is mechanistic interpretability: opening the black box to identify circuits and features that implement specific computations—induction heads, IO-to-middle-to-output chains, and algorithmic subgraphs—often within Transformers. Sparse Autoencoders (SAEs) and related dictionary-learning methods have become a practical backbone here: they factor dense activations into (ideally) sparse, human-nameable features and enable causal tests by ablating or steering those features. Together, these methods let us move from “the model correlated token X with Y” to “feature f encodes concept C, is computed in layer L, flows through edges E, and causally determines behavior B.”
Mechanistic work has delivered concrete wins. On the representation side, SAEs reduce superposition by encouraging one-feature-per-concept structure, enabling better localization of polysemantic neurons and disentangling features like “quote boundary,” “negative sentiment,” or “tool-name detection.” On the circuit side, activation patching and path-tracing can isolate subgraphs for tasks such as bracket matching, simple addition, or long-range copying; once isolated, these subgraphs can be stress-tested, edited, or pruned. In practice, teams combine these with probing: fit a linear probe on SAE features to label model states (e.g., “inside function scope”), validate with causal ablations, and then deploy run-time monitors that trigger guardrails or corrective steering when risky features activate. This “measure → attribute → intervene” loop is the interpretability analog of observability in distributed systems.
However, scaling these techniques from small toy circuits to frontier models remains hard. Superposition never fully disappears; many important concepts are distributed, nonlinearly compositional, and context-dependent. For SAEs, there are sharp trade-offs between sparsity, reconstruction error, and faithfulness: too sparse and you invent artifacts; too dense and you learn illegible mixtures. Causal evaluations can Goodhart: a feature that is easy to ablate may not be the true mediator, and repeated editing can shift behavior to new, hidden channels. Probing can overfit to spurious correlations unless paired with interventions. And for multimodal or tool-augmented agents, the “unit of interpretation” spans prompts, memory states, planner subloops, API results, and environmental affordances—so single-layer feature analysis must be integrated with program-level traces.
There are also methodological and scientific gaps. We lack shared ontologies of features across scales and tasks, standardized causal benchmarks with ground truth, and guarantees that discovered features are stable under fine-tuning or distribution shift. Most pipelines are offline: they explain yesterday’s failures rather than enforcing today’s behavior. Bridging to control theory and formal methods could help, but requires composing local causal statements into global guarantees. On the systems side, interpretability must run at production latencies and costs, meaning feature extraction, probing, and monitors must be amortized, prunable, or distilled into lightweight checks. Finally, there’s a sociotechnical layer: interpretations must be actionable for policy teams and auditable for regulators without leaking IP or training data.
What does a forward path look like? A pragmatic stack pairs (1) representation learning for legible features (SAEs/dictionaries with cross-layer routing), (2) causal testing (patching, counterfactual generation, mediation analysis) integrated into evals, (3) run-time governance (feature monitors, contract-style invariants, and activation-based guardrails), and (4) editability (feature-level steering and surgical fine-tunes) with regression tests that measure not just task metrics but causal preservation. For agent systems, add hierarchical traces that align feature events with planner steps and tool calls, so you can attribute failures to either cognition (bad internal plan) or actuation (bad tool/context). The research frontier then becomes making these components robust, composable, and cheap—so interpretability shifts from a lab exercise to a production discipline.
In short, interpretability is a frontier because it converts opaque capability into dependable capability. Mechanistic techniques and sparse-feature methods have moved us from colorful heatmaps to causal levers, but scaling faithfulness, stabilizing ontologies, and closing the loop from “explain” to “control” are still open problems. The labs and teams that solve these will own not only safer systems, but faster iteration cycles, cleaner model reuse, and a credible path to certifiable AI—where the narrative is no longer “trust us,” but “here are the mechanisms, the monitors, and the invariants that make this behavior predictable.”
For the last few weeks, we had been diving into some of the most important topics about AI interpretability. Here is a quick summary:
The Sequence Knowledge 693— A New Series on Frontier Interpretability This kickoff lays out why interpretability is now foundational for frontier models and frames the series around three complementary strands—mechanistic, behavioral/probing, and causal intervention. It also previews the kind of critical research readers will encounter, starting with “Attention is Not Explanation.”
The Sequence Knowledge #697 — Superposition & Polysemanticity. You’ll learn how models compress many features into overlapping directions (superposition), producing neurons that respond to multiple concepts (polysemanticity), and why this forces a shift from neuron-level stories to circuits and feature subspaces. The issue walks through “Toy Models of Superposition” as a canonical reference for the phase transition and geometry behind this phenomenon.
The Sequence Knowledge #701— A Simple Taxonomy of Interpretability This guide categorizes the field into post-hoc, intrinsic, and mechanistic approaches, explaining when each is most useful in audits, debugging, or causal analysis. It also points to “Activation Atlases” as an example of global feature mapping beyond single-neuron views.
The Sequence Knowledge #705— Post-Hoc Interpretability for Generative Models This issue surveys practical, no-retraining tools like PXGen (example-based anchors) to diagnose modes, biases, and OOD behavior in VAEs/diffusion systems, then contrasts them with concept-layer retrofits such as CB-AE and Concept Controller for steerable edits. It emphasizes modularity, speed, and limits of post-hoc control in production settings.
The Sequence Knowledge #709 — Intrinsic Interpretability Here you’ll find designs that bake transparency into the model (feature visualization, TCAV, prototype networks) so explanations are available by construction rather than after the fact. It anchors the discussion in “Network Dissection,” the classic unit-to-concept measurement framework.
The Sequence Knowledge #712— Mechanistic Interpretability (What & Why) This installment defines the circuit-level program—activation patching, basis decompositions, and causal tracing—to turn black-box behaviors into testable mechanisms, with recent examples on frontier-scale models. It highlights Anthropic’s Claude feature atlas as a milestone for large-model, causally validated features.
The Sequence Knowledge #716 — An Introduction to Circuits Readers get a concrete workflow for discovering, visualizing, and validating circuits (activation clustering → feature visualization → causal patching) and why circuits are the right abstraction for model internals. The research focus is Olah et al.’s “Zoom In,” which formalizes circuit methodology across modalities.
The Sequence Knowledge #720— Sparse Autoencoders (SAEs) This piece explains how SAEs/dictionary learning recover sparse, human-nameable features from dense activations, and covers recent scaling tricks (k-sparsity, dead-latent fixes, clean scaling laws) plus quantitative interpretability metrics. You’ll see how SAE features enable probing, ablation, and feature-level steering in practice.
The Sequence Knowledge #724 — Types of Mechanistic Interpretability The finale organizes the mechanistic stack by granularity—parameter, neuron, feature, circuit, and algorithm—and pairs each layer with causal/automated methods that move beyond hand-tooled case studies. It doubles as a tooling map (e.g., activation/logit lens, path patching, SAEs, and automated circuit discovery) for auditing frontier systems.
The Sequence Knowledge #728 — Circuit Tracing Concept of the day: circuit tracing as a systematic way to reconstruct a model’s causal “wiring diagram” from inputs to logits. Research covered: Anthropic’s circuit-tracing workflow using Cross-Layer Transcoders (CLTs) to build attribution graphs, validate mechanisms via interventions, and surface limitations like frozen attention and “error nodes,” moving from artisanal case studies to scalable auditing.
The Sequence Knowledge #732— A Transformer for AI Interpretability Concept of the day: training a structure-aware “interpreter transformer” over activation streams (with SAE-style sparse codes) to predict masked states and intervention effects, aiming for cross-model mechanistic understanding. Research covered: Anthropic’s “On the Biology of a Large Language Model,” which introduces attribution graphs and CLT-based replacement models to trace real circuits in Claude (e.g., geography chains, rhyme planning, refusal features) and quantify faithfulness.
The Sequence Knowledge #736— Chain-of-Thought (CoT) Interpretability Concept of the day: CoT monitorability as a promising but fragile oversight channel—useful when models externalize reasoning, yet prone to unfaithful rationalizations under optimization. Research covered: process-reward models (PRM/PRM800K), critic monitors, and evidence from “Reasoning Models Don’t Always Say What They Think” showing CoTs often omit causal cues—motivating a hybrid stack that combines CoT critics with representation-level probes.
The Sequence Knowledge #740 — Is Interpretability Solvable? Concept of the day: reframing “solved” from perfect transparency to sufficient, causal, and scalable explanations that support audits, governance, and editing. Research covered: limits from gauge freedom, superposition, and system-scale non-stationarity; validation gaps; and a pragmatic program—interpretability-by-design, automated causal tools, system-level observability, and success criteria tied to disabling dangerous mechanisms with bounded regressions.
I hope you truly enjoyed this series. Let’s go onto the next one!
TheSequence is a reader-supported publication. To receive new posts and support my work, consider becoming a free or paid subscriber.
The Sequence Knowledge #740: Is AI Interpretability Solvable ?
New Post has been published on https://thedigitalinsider.com/the-sequence-knowledge-740-is-ai-interpretability-solvable/
The Sequence Knowledge #740: Is AI Interpretability Solvable ?
One of the biggest questions surrounding the new generation of AI models.
Created Using GPT-5
Today we will Discuss:
The core arguments in favor and against the viability of solving AI interpretability.
A review of a famous paper by OpenAI, DeepMind, Anthropic and others about using chain of thought monitoring for safety interpretability.
💡 AI Concept of the Day: Is Interpretability Solvable?
To conclude our series of AI interpretability, I wanted to debate a controversial idea. Is AI interpretability for frontier models even solvable? Whether AI interpretability for frontier models is “solvable” depends on what we mean by solving it. If the goal is perfect transparency—being able to map every internal computation to a human-legible concept—then no: general limits from computability, non-identifiability of internal representations, and sheer combinatorial complexity make full explanations unrealistic. If, however, “solved” means an engineering discipline that reliably produces actionable, falsifiable, and scalable explanations sufficient to audit risks, debug failures, and enforce governance constraints, then a qualified yes is possible. The right target is sufficiency, not omniscience: explanations good enough to catch dangerous capabilities, verify safety properties, and support regulation and incident response.
The digital apocalypse: Why we must fear the unseen minds of AI
Imagine a world where the very tools we created to serve us transcend our understanding, operating in a realm of thought we can neither access nor comprehend. A world where artificial intelligence, once a beacon of progress, evolves into an inscrutable oracle, its internal machinations veiled in an impenetrable cloak of complexity. This isn’t the stuff of science fiction; it’s a stark warning…
The Sequence Opinion #667: The Superposition Hypothesis And How it Changed AI Interpretability
New Post has been published on https://thedigitalinsider.com/the-sequence-opinion-667-the-superposition-hypothesis-and-how-it-changed-ai-interpretability/
The Sequence Opinion #667: The Superposition Hypothesis And How it Changed AI Interpretability
The theory that opened the field of mechaninistic interpretability
Created Using GPT-4o
Mechanistic interpretability—the study of how neural networks internally represent and compute—seeks to illuminate the opaque transformations learned by modern models. At the heart of this pursuit lies a deceptively simple question: what does a neuron mean? Early efforts hoped that neurons, particularly in deeper layers, might correspond to human-interpretable concepts: edges in images, parts of faces, topics in language. But as interpretability research matured, it became clear that many neurons stubbornly resisted such neat categorization. A single neuron might activate for multiple, seemingly unrelated inputs. This phenomenon of polysemanticity complicates efforts to reverse-engineer networks and has led to a key theoretical insight: the superposition hypothesis.
The superposition hypothesis proposes that neural networks are not built around one-neuron-per-feature mappings, but rather represent features as directions in high-dimensional activation spaces. Each neuron contributes to many features, and each feature is spread across many neurons. This leads to overlapping, linearly superimposed representations. Superposition, in this view, is not a flaw or an accident. It is a natural consequence of attempting to store more features than there are neurons to represent them. Neural networks, constrained by finite width and encouraged by sparsity in data, adopt a compressed representation strategy in which meaning is woven through a shared vector space. This hypothesis explains why neurons are often polysemantic and why interpretability must evolve beyond a neuron-centric view.
From Monosemanticity to Polysemanticity: A Representational Shift
The Sequence Opinion #557: Millions of GPUs, Zero Understanding: The Cost of AI Interpretability
New Post has been published on https://thedigitalinsider.com/the-sequence-opinion-557-millions-of-gpus-zero-understanding-the-cost-of-ai-interpretability/
The Sequence Opinion #557: Millions of GPUs, Zero Understanding: The Cost of AI Interpretability
Exploring some controversial ideas about AI interpretability
Created Using GPT-4o
Interpretability of advanced AI models has become a critical and thorny challenge as we reach the frontier of scale and capability. This essay analyzes why deciphering the inner workings of large-scale models is so difficult – from the sheer complexity and emergent behaviors of these systems to their deeply nonlinear, opaque architectures. We survey new techniques pushing the boundaries of interpretability, including mechanistic interpretability efforts and circuits-based analyses pioneered by organizations like Anthropic, along with automated approaches that enlist AI itself to explain AI. We explore the provocative thesis that truly understanding frontier models may require a meta-model – an AI specifically designed to interpret other AI models. Finally, we evaluate whether pouring massive compute (and money) into interpretability research is justified relative to other safety or capability investments, challenging prevailing assumptions in the field. Throughout, the tone is intellectually critical and controversial, questioning easy optimism and highlighting the high epistemological stakes: how much can we really know about machines more complex than ourselves, and what do we risk if we fail?
Introduction
AI systems have become too powerful and too complex to leave unexamined. Modern frontier models like GPT-4, Claude, and Gemini-1.5 operate with billions of parameters and exhibit emergent capabilities that often surprise even their creators. But the most pressing concern is epistemological: we still don’t understand how these models make decisions. Neural networks encode reasoning within dense layers of activations and attention mechanisms, leaving researchers guessing about what these systems are really doing internally. The field of AI interpretability has emerged to respond to this growing crisis of comprehension.
How Does Claude Think? Anthropic’s Quest to Unlock AI’s Black Box
New Post has been published on https://thedigitalinsider.com/how-does-claude-think-anthropics-quest-to-unlock-ais-black-box/
How Does Claude Think? Anthropic’s Quest to Unlock AI’s Black Box
Large language models (LLMs) like Claude have changed the way we use technology. They power tools like chatbots, help write essays and even create poetry. But despite their amazing abilities, these models are still a mystery in many ways. People often call them a “black box” because we can see what they say but not how they figure it out. This lack of understanding creates problems, especially in important areas like medicine or law, where mistakes or hidden biases could cause real harm.
Understanding how LLMs work is essential for building trust. If we can’t explain why a model gave a particular answer, it’s hard to trust its outcomes, especially in sensitive areas. Interpretability also helps identify and fix biases or errors, ensuring the models are safe and ethical. For instance, if a model consistently favors certain viewpoints, knowing why can help developers correct it. This need for clarity is what drives research into making these models more transparent.
Anthropic, the company behind Claude, has been working to open this black box. They’ve made exciting progress in figuring out how LLMs think, and this article explores their breakthroughs in making Claude’s processes easier to understand.
Mapping Claude’s Thoughts
In mid-2024, Anthropic’s team made an exciting breakthrough. They created a basic “map” of how Claude processes information. Using a technique called dictionary learning, they found millions of patterns in Claude’s “brain”—its neural network. Each pattern, or “feature,” connects to a specific idea. For example, some features help Claude spot cities, famous people, or coding mistakes. Others tie to trickier topics, like gender bias or secrecy.
Researchers discovered that these ideas are not isolated within individual neurons. Instead, they’re spread across many neurons of Claude’s network, with each neuron contributing to various ideas. That overlap made Anthropic hard to figure out these ideas in the first place. But by spotting these recurring patterns, Anthropic’s researchers started to decode how Claude organizes its thoughts.
Tracing Claude’s Reasoning
Next, Anthropic wanted to see how Claude uses those thoughts to make decisions. They recently built a tool called attribution graphs, which works like a step-by-step guide to Claude’s thinking process. Each point on the graph is an idea that lights up in Claude’s mind, and the arrows show how one idea flows into the next. This graph lets researchers track how Claude turns a question into an answer.
To better understand the working of attribution graphs, consider this example: when asked, “What’s the capital of the state with Dallas?” Claude has to realize Dallas is in Texas, then recall that Texas’s capital is Austin. The attribution graph showed this exact process—one part of Claude flagged “Texas,” which led to another part picking “Austin.” The team even tested it by tweaking the “Texas” part, and sure enough, it changed the answer. This shows Claude isn’t just guessing—it’s working through the problem, and now we can watch it happen.
Why This Matters: An Analogy from Biological Sciences
To see why this matters, it is convenient to think about some major developments in biological sciences. Just as the invention of the microscope allowed scientists to discover cells – the hidden building blocks of life – these interpretability tools are allowing AI researchers to discover the building blocks of thought inside models. And just as mapping neural circuits in the brain or sequencing the genome paved the way for breakthroughs in medicine, mapping the inner workings of Claude could pave the way for more reliable and controllable machine intelligence. These interpretability tools could play a vital role, helping us to peek into the thinking process of AI models.
The Challenges
Even with all this progress, we’re still far from fully understanding LLMs like Claude. Right now, attribution graphs can only explain about one in four of Claude’s decisions. While the map of its features is impressive, it covers just a portion of what’s going on inside Claude’s brain. With billions of parameters, Claude and other LLMs perform countless calculations for every task. Tracing each one to see how an answer forms is like trying to follow every neuron firing in a human brain during a single thought.
There’s also the challenge of “hallucination.” Sometimes, AI models generate responses that sound plausible but are actually false—like confidently stating an incorrect fact. This occurs because the models rely on patterns from their training data rather than a true understanding of the world. Understanding why they veer into fabrication remains a difficult problem, highlighting gaps in our understanding of their inner workings.
Bias is another significant obstacle. AI models learn from vast datasets scraped from the internet, which inherently carry human biases—stereotypes, prejudices, and other societal flaws. If Claude picks up these biases from its training, it may reflect them in its answers. Unpacking where these biases originate and how they influence the model’s reasoning is a complex challenge that requires both technical solutions and careful consideration of data and ethics.
The Bottom Line
Anthropic’s work in making large language models (LLMs) like Claude more understandable is a significant step forward in AI transparency. By revealing how Claude processes information and makes decisions, they’re forwarding towards addressing key concerns about AI accountability. This progress opens the door for safe integration of LLMs into critical sectors like healthcare and law, where trust and ethics are vital.
As methods for improving interpretability develop, industries that have been cautious about adopting AI can now reconsider. Transparent models like Claude provide a clear path to AI’s future—machines that not only replicate human intelligence but also explain their reasoning.