A team says its "Sparse Weight Decomposition" technique — which factors a trained neural network's internal weights into two sparse matrices with a shared middle dimension, isolating which parts do which work — reaches matched accuracy on under 1%
AI interpretability research aims to answer a deceptively simple question: which parts of a trained neural network are doing which work, and why? Their method, Sparse Weight Decomposition (SWD), works straight from a model's already-trained parameters and, in their tests, reaches matched accuracy on under 1% of the data that training-based methods need.
Prior circuit-extraction tools, including the Transcoder approach and earlier sparse-representation work like VPD-Recon-CI, train a separate "sparse" network to approximate the original model. That twin network lets researchers score which internal features matter, but it costs significant data and compute to train. SWD skips the twin entirely. It factors each dense weight matrix W in the model as a product of two sparse matrices A and B that share a small middle dimension. Each shared coordinate is a rank-one "bottleneck unit" that can be independently scored, selected, and turned off to test what it was doing. Concretely, in GPT-2 Small the authors apply SWD to the model's full 48 attention and MLP weight matrices and rank the resulting units by the model's loss change when each is ablated. The top-ranked units then stand in as candidate circuit elements that a researcher can inspect, compare, and test individually.
In single-matrix reconstruction experiments, SWD reaches the same cross-entropy delta as the training-based baselines on under 1% of the data, with a fully zero-data variant reported in the paper as well. The paper also extends coverage to the Qwen2.5 family at 0.5B, 1.5B, and 3B parameters and to Qwen3.5-27B, which is the maximum scale the authors tested.
The paper also tries to isolate why the factorization works. As a control, the authors run full-rank SVD and a random orthogonal baseline they call Random-B. Both reconstruct W exactly, but they need more active connections to reach the same sufficiency and necessity scores, suggesting that what matters is not the matrix factorization itself but the sparse read/write structure SWD imposes on top of it. That is the load-bearing technical claim.
The work is a preprint, not peer-reviewed. The under-1% number is measured against specific training-based baselines at a matched cross-entropy delta, so it is a relative figure rather than an absolute data saving. And the largest model tested is 27 billion parameters; any extrapolation to 70-billion-plus frontier-scale systems is unsupported by the paper itself.
The authors have released the code on GitHub, model checkpoints on Hugging Face, and a blog and demo. The original Chinese-language writeup by QbitAI carried the announcement in August 2026.
If the result holds up under peer review and independent reproduction, the natural test is whether the same data-efficient decomposition still works on a frontier-scale model well above 27 billion parameters, where today only training-based methods have been demonstrated.