Summary

This paper introduces “transcoders” - a novel approach for analyzing neural network circuits in large language models (LLMs). The key innovation is that transcoders enable interpretable analysis of MLP (Multi-Layer Perceptron) layers while cleanly separating input-dependent and input-invariant behaviors. Key Points:

  1. Problem & Motivation: Circuit analysis in LLMs aims to find interpretable subgraphs corresponding to specific behaviors. However, analyzing MLP layers is challenging because features are typically dense combinations of many neurons. Previous approaches using sparse autoencoders (SAEs) struggle to disentangle local and global behaviors.

  2. Transcoder Architecture:

[See Figure 1 in the original paper]

Transcoders approximate a dense MLP layer with a wider, sparsely-activating MLP layer. The architecture includes encoder and decoder components that learn to faithfully replicate the original MLP’s behavior while maintaining interpretability.

  1. Key Advantages: - Cleanly separates input-dependent and input-invariant terms - Enables analysis of general model behavior across all inputs - Maintains or exceeds performance compared to SAEs - Provides interpretable features

  2. Empirical Validation:

[See Figure 3 in the original paper]

The researchers evaluated transcoders against SAEs on models ranging from 120M to 1.4B parameters. The results show transcoders perform comparably or better than SAEs in terms of: - Sparsity - Faithfulness to original model - Human interpretability of features

  1. Case Study - Greater Than Circuit:
Figure 4: For the three MLP10 transcoder features with the highest activation variance over the “greater-than” dataset, and for every possible YY token, we plot the DLA (the extent to which the feature boosts the output probability of YY) and the de-embedding score (an input-invariant measurement of how much YY causes the feature to fire).
Figure 4: For the three MLP10 transcoder features with the highest activation variance over the “greater-than” dataset, and for every possible YY token, we plot the DLA (the extent to which the feature boosts the output probability of YY) and the de-embedding score (an input-invariant measurement of how much YY causes the feature to fire).

Figure 4

Figure 5: Left:Performance according to the probability difference metric when all but the top \ $k\ $ features or neurons in MLP10 are zero-ablated.Right:The DLA and de-embedding score for tc10[5315], which contributed negatively to the transcoder’s performance.
Figure 5: Left:Performance according to the probability difference metric when all but the top \ $k\ $ features or neurons in MLP10 are zero-ablated.Right:The DLA and de-embedding score for tc10[5315], which contributed negatively to the transcoder’s performance.

Figure 5 The researchers demonstrated the practical utility of transcoders by analyzing how GPT-2 determines if one year is greater than another. The analysis revealed: - Clear patterns in how the model processes numerical comparisons - Sparse, interpretable features that encode year relationships - Superior interpretability compared to neuron-level analysis

  1. Blind Case Studies: The team conducted multiple blind case studies to validate their approach, successfully reverse-engineering various model behaviors without prior knowledge of the underlying patterns. Strengths: - Novel theoretical framework combining interpretability with practical utility - Comprehensive empirical validation - Clear separation of input-dependent and input-invariant behaviors - Scalable to larger models Limitations: - Still approximates original model computation - Doesn’t fully address attention pattern computation - Limited systematic analysis of case studies Figure 1 makes the best thumbnail as it clearly illustrates the architectural difference between SAEs, transcoders, and traditional MLPs, providing an immediate visual understanding of the paper’s core contribution. The work represents a significant advance in mechanistic interpretability, providing a new tool for understanding how large language models process information while maintaining the benefits of existing approaches like SAEs.