AIAny
AI Infra2023
Icon for item

LLM Transparency Tool

Traces how Transformer LLMs route information from input to output, attributing each block's effect to individual attention heads and feed-forward neurons. Click any edge to see what a head promotes or suppresses in vocabulary space.

Introduction

Most interpretability tools tell you which neurons fire; this one shows you where the information actually went. It treats a single forward pass as a graph — tokens flowing through attention heads and feed-forward blocks — and lets you prune that graph down to just the edges that carried signal from prompt to prediction, then click any edge to interrogate what that one head or neuron contributed.

What Sets It Apart
  • Built on TransformerLens, it loads real open models (the GPT-2 and Llama families, among others) rather than toy networks — what you inspect is the architecture people actually run.
  • The contribution graph is thresholded and interactive: raise the threshold and a dense model collapses to the handful of heads that mattered for a given output, so "the model did X" becomes "these three heads did X."
  • Any component is queryable. Project a token's representation onto the vocabulary at any layer and read off which tokens a head or FFN block promotes versus suppresses — turning attention weights into human-readable hypotheses.
Who It's For

A strong fit if you do mechanistic-interpretability research or need to localize a specific behavior to specific heads; the click-to-drill visual workflow is faster than wiring up hooks by hand, and a hosted demo lets you try it before installing anything. Look elsewhere if you want production monitoring or to analyze closed API models — it runs locally on TransformerLens-supported models, and the repository was archived in February 2026, so treat it as a stable research artifact rather than actively maintained software.

Information

  • Websitegithub.com
  • OrganizationsMeta AI
  • Authorsfacebookresearch, Igor Tufanov, Karen Hambardzumyan, Javier Ferrando, Elena Voita
  • Published date2023/12/21

Categories

More Items

GitHub
AI Infra2025

Measures generative AI inference performance with token-level metrics (TTFT, inter-token latency), latency, and throughput under realistic traffic patterns. Provides a multiprocess engine, real-time TUI dashboard, extensible plugins, and integrations for telemetry and result uploads, aimed at inference benchmarking and capacity planning.

GitHub
AI Train2019

Train and experiment with multi-billion to trillion-parameter transformer models on large GPU clusters using GPU-optimized building blocks and reference training scripts; offers advanced parallelism and mixed-precision support for research teams and ML engineers.

GitHub

Indexes full text of visited web pages and local files on a self‑hosted server so you can search your personal knowledge from a web UI, terminal, CLI, or an AI assistant. Runs without mandatory telemetry, offers a browser extension for automatic capture, and supports optional semantic search via a configurable embeddings endpoint.