paper-with-me

Papers

Variance Is Not Importance: Structural Analysis of Transformer Compressibility Across Model Scales

2026-04-22 · Samuel Salfati arxiv

We present a systematic empirical study of transformer compression through over 40 experiments on GPT-2 (124M parameters) and Mistral 7B (7.24B parameters). Our analysis covers spectral compression, block-level function replacement, rotation-based quantization, activation geometry, and adaptive early exit. We identify five structural properties relevant to compression. (1) Variance is not importance: high-variance activation directions are approximately 96 percent uncorrelated with predictive directions (measured via CCA), and projecting onto these subspaces preserves over 90 percent of variance while degrading perplexity. (2) Block linearity is conditional: transformer blocks are approximately linear (R^2 ~ 0.95 on GPT-2, 0.93 on Mistral block 31) only under the correct upstream distribution; modifying earlier blocks induces distribution shift that degrades downstream approximations. (3) The reconstruction wall: approaches that factor weights into quantized components amplify errors through cross-terms, making direct quantization strictly superior. (4) Linearity increases with depth: Mistral 7B exhibits a progression from R^2 = 0.17 (block 0) to R^2 = 0.93 (block 31), indicating a division between nonlinear feature construction and linear refinement. (5) Approximately 30 percent of tokens are computationally easy, confirmed via exit heads and KL divergence sensitivity. We demonstrate that single-block linear replacement achieves 34x compression with a 1.71 perplexity increase on the final block of Mistral 7B, while multi-block replacement fails due to residual error accumulation and distribution shift. These findings suggest fundamental limits to static post-training compression and motivate adaptive, per-token computation as a more effective direction.

📄 PDF Abstract BibTeX arXiv:2604.20682

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

Understanding Transformers for Time Series: Rank Structure, Flow-of-ranks, and Compressibility

2025-10-02 · Annan Yu, Danielle C. Maddix, Boran Han, Xiyuan Zhang 외 arxiv

Transformers are widely used across data modalities, and yet the principles distilled from text models often transfer imperfectly to models trained to other modalities. In this paper, we analyze Transformers through the …

How Powerful are Decoder-Only Transformer Neural Models?

2023-05-26 · Jesse Roberts

In this article we prove that the general transformer neural model undergirding modern large language models (LLMs) is Turing complete under reasonable assumptions. This is the first work to directly address the Turing c…

Decoder

Higher-Order Equilibrium Tracking for EM-Compressible Online Estimation

2026-05-09 · ZhiMing Li, Yue Song arxiv

We study online estimation in latent-variable models by recasting the problem as tracking a moving empirical equilibrium. Standard online EM and stochastic approximation analyses primarily study convergence toward the po…

Compressible Softmax-Attended Language under Incompressible Attention

2026-04-06 · Wonsuk Lee arxiv

Softmax attention defines an interaction through $d_h$ head dimensions, but not all dimensions carry equal weight once real text passes through. We decompose the attention logit field into a learned component and a gener…

KV-CoRE: Benchmarking Data-Dependent Low-Rank Compressibility of KV-Caches in LLMs

2026-02-05 · Jian Chen, Zhuoran Wang, Jiayu Qin, Ming Li 외 arxiv

Large language models rely on kv-caches to avoid redundant computation during autoregressive decoding, but as context length grows, reading and writing the cache can quickly saturate GPU memory bandwidth. Recent work has…