Coverage for transformer_lens/tools/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.10.1, created at 2026-07-01 15:58 +0000
« prev ^ index » next coverage.py v7.10.1, created at 2026-07-01 15:58 +0000
1"""TransformerLens tools package.
3This package contains utilities and tools for working with TransformerLens,
4including the model registry for discovering compatible HuggingFace models.
6Subpackages:
7 - analysis: High-level interpretability analyses (e.g. Direct Logit Attribution)
8 - model_registry: Tools for discovering and documenting supported models
9"""
11from . import analysis, model_registry
13__all__ = ["analysis", "model_registry"]