Skip to main content

ICA Lens

ICA Lens interprets language-model activations with Independent Component Analysis. It is substantially more compute-efficient to fit than an SAE dictionary and supports base and instruction-tuned language models.

Documentation · 中文文档 · Paper · Model collection

Get started

pip install icalens

Load a published Lens and analyze text:

from icalens import ICALens

lens = ICALens.from_pretrained("sida/icalens-gpt2-small-pile10k")
result = lens.analyze("She deposited the check at the bank.", layer=6)
result

In Jupyter or Colab, the final result expression displays an interactive token-level analysis:

ICA Lens token-level analysis in Jupyter

Use signed ICA scores or switch the explorer to per-token component energy. Save the same view as a standalone HTML file with:

result.to_html("analysis.html")

The first analysis loads the language model and requested Lens layer. Later calls on the same lens reuse the model in memory. device="auto" uses CUDA when available and otherwise uses the CPU.

Analyze conversations

Instruction-tuned models accept completed conversations using the standard {role, content} format:

lens = ICALens.from_pretrained("sida/icalens-qwen3.5-2b-ultrachat-1m")
result = lens.analyze(
    [
        {"role": "user", "content": "What is the most interesting science?"},
        {"role": "assistant", "content": "Physics."},
    ],
    layer=16,
)
result

Chat templates are applied automatically, and template tokens and message turns are grouped in the interactive result.

Steering

Generate normally or clamp a signed ICA coordinate during generation:

messages = [{
    "role": "user",
    "content": "If you had to pick one, what is the most interesting science? Be brief.",
}]

baseline = lens.generate(messages, max_new_tokens=16)
steered = lens.generate(
    messages,
    layer=5,
    clamp=(188, -20.0),
    max_new_tokens=16,
)

Component labels, signs, and suitable targets must be established empirically for the exact Lens and layer. See the steering tutorial for the reproducible inspection and calibration workflow.

Fit a Lens

Run a small GPT-2/Pile-10k example with the installed CLI:

icalens fit text \
  --model openai-community/gpt2 \
  --dataset NeelNanda/pile-10k \
  --layers 6 \
  --token-budget 1000 \
  --max-iter 20 \
  --output icalens-output/gpt2-demo

Fit an instruction-tuned model from UltraChat conversations:

icalens fit chat \
  --model Qwen/Qwen3.5-2B \
  --dataset HuggingFaceH4/ultrachat_200k \
  --layers 12 \
  --token-budget 100000 \
  --output icalens-output/qwen-demo

ICA Lens includes a PyTorch FastICA implementation and does not depend on SciPy or scikit-learn. Blockwise fitting and layer-at-a-time capture support larger token collections while bounding memory use.

Profile every fitted layer

After fitting, profile the components against a representative corpus:

icalens profile \
  --lens icalens-output/gpt2-demo \
  --layers all \
  --dataset NeelNanda/pile-10k \
  --split train \
  --max-tokens 10000

Profiles add sign statistics, high-energy examples, Logit Lens tokens, and optional R-lens readouts to the existing Lens directory. They help label and inspect components without changing the fitted directions.

Publish to Hugging Face

Authenticate with hf auth login, set HF_TOKEN, or add a .env file in the current directory containing a write-enabled token:

HF_TOKEN=hf_...

Then publish the saved Lens as a Hugging Face model repository:

icalens publish \
  --lens icalens-output/gpt2-demo \
  username/icalens-gpt2-demo

The artifact records the analyzed model, activation site, fitted layers, preprocessing, component profiles, and fitting and profiling provenance. Individual layer and profile files are downloaded lazily when a published Lens is used.

Learn more

The documentation covers:

Authors

Citation

@article{liu2026icalens,
  title={ICA Lens: Interpreting Language Models Without Training Another Dictionary},
  author={Liu, Sida and Han, Feijiang},
  journal={arXiv preprint arXiv:2606.11722},
  year={2026}
}

Download files

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

Source Distribution

icalens-0.3.3.tar.gz (2.2 MB view details)

Uploaded Source

Built Distribution

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

icalens-0.3.3-py3-none-any.whl (69.6 kB view details)

Uploaded Python 3

File details

Details for the file icalens-0.3.3.tar.gz.

File metadata

  • Download URL: icalens-0.3.3.tar.gz
  • Upload date:
  • Size: 2.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for icalens-0.3.3.tar.gz
Algorithm Hash digest
SHA256 79b1006d3c0682876ffd7fd9d5d50070f23fc923cd407e3e5c151531ad4e2aff
MD5 fd4905ae9043565f8db640656d38e325
BLAKE2b-256 69435510630069a9af5a544f31a4c0aac0598dc1f4f62bc22008d8a93627e4f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for icalens-0.3.3.tar.gz:

Publisher: release.yml on liusida/icalens

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file icalens-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: icalens-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 69.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for icalens-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 1b2626aa196d752d83d096e71cf0d8c0ab11ea3e1a5be752bc7fd9462f7cfe09
MD5 b43fb262bcd701de0b18e9b58494d554
BLAKE2b-256 00817cdb5986f1867d127d7809a1b7aab7915efc30e7b32b3e820f31320f16b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for icalens-0.3.3-py3-none-any.whl:

Publisher: release.yml on liusida/icalens

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.3.6

2 files

0.3.5

2 files

0.3.4

2 files

This release

0.3.3 This release

2 files

0.3.2

2 files

0.3.1

2 files

0.3.0

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page