Position-aware Automatic Circuit Discovery
Tal Haklay, Hadas Orgad, David Bau, Aaron Mueller, Yonatan Belinkov
TL;DR
This work addresses the inadequacy of position-agnostic circuit discovery by introducing PEAP, a method that assigns edge importance per token position and accounts for cross-position attention edges. It also introduces dataset schemas to handle variable-length inputs, enabling the construction of abstract circuits that can be faithfully mapped back to concrete computation graphs across examples. The authors develop an automated, LLM-driven pipeline for generating and applying schemas, including saliency-informed prompting and multiple validation checks, achieving faithfulness comparable to manually designed schemas across several tasks and models. Empirically, position-aware circuits require smaller sizes to achieve similar or better faithfulness than non-positional circuits, highlighting improved interpretability and scalability for mechanistic analysis of transformers. Overall, the approach advances interpretable model analysis by capturing position-specific mechanisms and enabling automated, real-world circuit discovery.
Abstract
A widely used strategy to discover and understand language model mechanisms is circuit analysis. A circuit is a minimal subgraph of a model's computation graph that executes a specific task. We identify a gap in existing circuit discovery methods: they assume circuits are position-invariant, treating model components as equally relevant across input positions. This limits their ability to capture cross-positional interactions or mechanisms that vary across positions. To address this gap, we propose two improvements to incorporate positionality into circuits, even on tasks containing variable-length examples. First, we extend edge attribution patching, a gradient-based method for circuit discovery, to differentiate between token positions. Second, we introduce the concept of a dataset schema, which defines token spans with similar semantics across examples, enabling position-aware circuit discovery in datasets with variable length examples. We additionally develop an automated pipeline for schema generation and application using large language models. Our approach enables fully automated discovery of position-sensitive circuits, yielding better trade-offs between circuit size and faithfulness compared to prior work.
