Papers › ICA Lens: Interpreting Language Models Without Training Another Dictionary

ICA Lens: Interpreting Language Models Without Training Another Dictionary

10 Jun 2026arXiv:2606.11722added by Syntology

Sida Liu, Feijiang Han

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Finding interpretable directions in language-model representations is critical for understanding and controlling model behavior. Sparse autoencoders (SAEs) have become the standard tool for this purpose, but using them as the default first lens often requires training, storing, and evaluating large overcomplete dictionaries. This bottleneck limits rapid exploration and raises a fundamental question: how much interpretable structure is already visible from activation geometry before training another neural dictionary? Our intuition is simple: many interpretable directions are selective on tokens, and these directions should look less Gaussian than random directions. We therefore revisit independent component analysis (ICA), a classical method for finding non-Gaussian directions, as a compact lens for language-model interpretability. We find that ICA has been underestimated for LLM interpretability, because prior uses often relied on off-the-shelf ICA implementations that are brittle on LLM activations and lacked systematic tools for inspecting and evaluating the recovered directions. To bridge these gaps, we introduce ICALens, the first practical workflow for stable, efficient, and auditable ICA analysis of LLM representations. It combines an optimized GPU-parallel FastICA pipeline with LLM-specific stability recipes and better fitting diagnostics, enabling efficient and reliable layer-wise analysis. Across GPT-2 Small, Gemma 2 2B, and Qwen 3.5 2B Base, ICALens efficiently recovers compact, human-interpretable directions without per-layer gradient-based dictionary training. On SAEBench, ICA is competitive with public SAEs in sparse probing and outperforms them in targeted probe perturbation under small-to-medium budgets. These results suggest that ICA should not be viewed as a weak baseline, but as an efficient and complementary first lens for exploring language-model representations.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2606.11722")

Code

Syntology Ran 10 of 14 code samples harvested from 2 repositories linked to this paper; 4 have no recorded run. Of those that ran: 5 ran · our draft was wrong; 1 ran · fixture could not drive it; 4 ran with no contract checked.

By repository: found in paper text by Syntology: 14 samples from 2 repositories, 10 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

HoagyC/sparse_coding found in paper text by Syntology report
RichieHakim/FastICA_torch found in paper text by Syntology report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

14 samples harvested; 10 ran; 0 honoured the contract we drafted; 4 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

5ran · our draft was wrong
1ran · fixture could not drive it
4ran
4unverified

Licence: 5 of the 14 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 2 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

_cube RichieHakim/FastICA_torch/src/fastica_torch/fastica.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · 6ae5a9e86f856412 · report
_exp RichieHakim/FastICA_torch/src/fastica_torch/fastica.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · df11ffb8948b5774 · report
_gs_decorrelation RichieHakim/FastICA_torch/src/fastica_torch/fastica.py found in paper text by Syntology ran · fixture could not drive it fingerprinted MIT (permissive) · 439dda90e547b553 · report
_logcosh RichieHakim/FastICA_torch/src/fastica_torch/fastica.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · 2bc279ef6c6d18f0 · report
_randomized_svd RichieHakim/FastICA_torch/src/fastica_torch/fastica.py found in paper text by Syntology ran · our draft was wrong MIT (permissive) · ea4394c1dda5bbc2 · report
_sym_decorrelation RichieHakim/FastICA_torch/src/fastica_torch/fastica.py found in paper text by Syntology ran · our draft was wrong fingerprinted MIT (permissive) · cc3e2c246336c4f5 · report
ablate_feature_intervention HoagyC/sparse_coding/standard_metrics.py found in paper text by Syntology ran no licence file found · pointer only · 5551196e92fa7236 · report
collect_lite HoagyC/sparse_coding/cluster_runs.py found in paper text by Syntology ran no licence file found · pointer only · 03016136842a1f30 · report
filter_learned_dicts HoagyC/sparse_coding/big_sweep.py found in paper text by Syntology ran no licence file found · pointer only · 99158f9a6ffb0e31 · report
get_model_tensor_name HoagyC/sparse_coding/standard_metrics.py found in paper text by Syntology ran no licence file found · pointer only · 200b3f8d8c27361c · report
FastICA RichieHakim/FastICA_torch/src/fastica_torch/fastica.py found in paper text by Syntology unverified MIT (permissive) · d5319e0518b651b7 · report
_ica_def RichieHakim/FastICA_torch/src/fastica_torch/fastica.py found in paper text by Syntology unverified MIT (permissive) · e6f50a37b27984e2 · report
_ica_par RichieHakim/FastICA_torch/src/fastica_torch/fastica.py found in paper text by Syntology unverified MIT (permissive) · 997dbe88f51b206d · report
calc_expected_interference HoagyC/sparse_coding/big_sweep.py found in paper text by Syntology unverified no licence file found · pointer only · 4d866dd8ed7f5121 · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2606.11722, was issued in June 2026, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections