Skip to main content

An implementation of transformers tailored for mechanistic interpretability.

Project description

TransformerLens

Pypi Pypi Total Downloads PyPI - License Release CD Tests CD Docs CD

A Library for Mechanistic Interpretability of Generative Language Models. Maintained by Bryce Meyer and Jonah Larson; created by Neel Nanda

Read the Docs Here

This is a library for doing mechanistic interpretability of GPT-2 Style language models. The goal of mechanistic interpretability is to take a trained model and reverse engineer the algorithms the model learned during training from its weights.

TransformerLens lets you load in 9,000+ open source language models across 50+ architecture families, and exposes the internal activations of the model to you. You can cache any internal activation in the model, and add in functions to edit, remove or replace these activations as the model runs.

Quick Start

Install

pip install transformer_lens

Python 3.8 or 3.9

pip install 'transformer_lens~=2.0'

Use

from transformer_lens.model_bridge import TransformerBridge

# Load a model (eg GPT-2 Small)
bridge = TransformerBridge.boot_transformers("gpt2", device="cpu")

# Run the model and get logits and activations
logits, activations = bridge.run_with_cache("Hello World")

Gated models (Llama, Mistral, Gemma, ...) require HF_TOKEN in your environment. See Environment Variables for the full list.

TransformerBridge is the recommended 3.0 path and supports 9,000+ models across 50+ architecture families (see supported_models.json for the full inventory). By default it preserves raw HuggingFace weights – logits and activations match HF, not legacy HookedTransformer (which folds LayerNorm and centers weights by default). Call bridge.enable_compatibility_mode() after booting for HookedTransformer-equivalent numerics. The legacy HookedTransformer.from_pretrained API is still available but deprecated — see the Migrating to TransformerLens 3 guide.

Key Tutorials

Gallery

Research done involving TransformerLens:

User contributed examples of the library being used in action:

Check out our demos folder for more examples of TransformerLens in practice

Getting Started in Mechanistic Interpretability

Mechanistic interpretability is a very young and small field, and there are a lot of open problems. This means there's both a lot of low-hanging fruit, and that the bar for entry is low - if you would like to help, please try working on one! The standard answer to "why has no one done this yet" is just that there aren't enough people! Key resources:

Support & Community

Contributing Guide

If you have issues, questions, feature requests or bug reports, please search the issues to check if it's already been answered, and if not please raise an issue!

You're also welcome to join the open source mech interp community on Slack. Please use issues for concrete discussions about the package, and Slack for higher bandwidth discussions about eg supporting important new use cases, or if you want to make substantial contributions to the library and want a maintainer's opinion. We'd also love for you to come and share your projects on the Slack!

:exclamation: HookedSAETransformer Removed

Hooked SAE has been removed from TransformerLens in version 2.0. The functionality is being moved to SAELens. For more information on this release, please see the accompanying announcement for details on what's new, and the future of TransformerLens.

Mamba / SSM support (experimental)

TransformerLens includes bridge adapters for Mamba-1 (state-spaces/mamba-*-hf) and Mamba-2 (AntonV/mamba2-130m-hf, state-spaces/mamba2-*, etc.). The adapters cover:

  • Forward pass (bit-for-bit HF equivalent)
  • Hook-based introspection of projection activations (in_proj, conv1d, x_proj, dt_proj, out_proj for Mamba-1; in_proj, conv1d, inner_norm, out_proj for Mamba-2)
  • Stateful generation with cache-aware decode steps
  • The compute_effective_attention utility (in transformer_lens.model_bridge.supported_architectures.mamba2) that materializes Mamba-2's SSD-derived attention matrix for comparison with transformer attention patterns

Verification lives in the integration tests at tests/integration/model_bridge/test_mamba_adapter.py and tests/integration/model_bridge/test_mamba2_adapter.py (81 tests total), and the verify_models benchmark suite now covers the SSM and hybrid families. Mamba-1, Mamba-2, gated-delta-net (Qwen3.5 / Qwen3-Next), NemotronH, and GraniteMoeHybrid all declare applicable_phases = [1, 2, 3, 4], so their forward parity (P1, vs raw HF), hook/cache coverage (P2/P3, which skip the HookedTransformer comparison SSMs lack), and generation quality (P4) are benchmarked like any transformer.

Credits

This library was created by Neel Nanda and is maintained by Bryce Meyer.

The core features of TransformerLens were heavily inspired by the interface to Anthropic's excellent Garcon tool. Credit to Nelson Elhage and Chris Olah for building Garcon and showing the value of good infrastructure for enabling exploratory research!

Creator's Note (Neel Nanda)

I (Neel Nanda) used to work for the Anthropic interpretability team, and I wrote this library because after I left and tried doing independent research, I got extremely frustrated by the state of open source tooling. There's a lot of excellent infrastructure like HuggingFace and DeepSpeed to use or train models, but very little to dig into their internals and reverse engineer how they work. This library tries to solve that, and to make it easy to get into the field even if you don't work at an industry org with real infrastructure! One of the great things about mechanistic interpretability is that you don't need large models or tons of compute. There are lots of important open problems that can be solved with a small model in a Colab notebook!

Citation

Please cite this library as:

@misc{nanda2022transformerlens,
    title = {TransformerLens},
    author = {Neel Nanda and Joseph Bloom},
    year = {2022},
    howpublished = {\url{https://github.com/TransformerLensOrg/TransformerLens}},
}

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

transformer_lens-4.0.0b1.tar.gz (10.2 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

transformer_lens-4.0.0b1-py3-none-any.whl (1.3 MB view details)

Uploaded Python 3

File details

Details for the file transformer_lens-4.0.0b1.tar.gz.

File metadata

  • Download URL: transformer_lens-4.0.0b1.tar.gz
  • Upload date:
  • Size: 10.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for transformer_lens-4.0.0b1.tar.gz
Algorithm Hash digest
SHA256 d2ebef8dfcc365fc2967f21f41a35674287c192dd8aa886540fd322eba6fe32c
MD5 f6eb78aad093959fde6ba20ee5d0e364
BLAKE2b-256 378c8a2454294a0d964f03a3cbad5b183900176588abeb9318d16ac13a9d6935

See more details on using hashes here.

File details

Details for the file transformer_lens-4.0.0b1-py3-none-any.whl.

File metadata

File hashes

Hashes for transformer_lens-4.0.0b1-py3-none-any.whl
Algorithm Hash digest
SHA256 1efac29f38f0c9769d0fb85c05e0ecc07fb858e141c9613b48bad981d7465742
MD5 9e2b3cc960ff1b3716b01622a7ae3eb8
BLAKE2b-256 78c5ed28201cb770837f4866e6f4fc4747158a3cfc41ee294e1af6ac3a765557

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page