Learning on Transformers is Provable Low-Rank and Sparse: A One-layer Analysis
Hongkang Li, Meng Wang, Shuai Zhang, Sijia Liu, Pin-Yu Chen
TL;DR
Problem: Explain why low-rank adaptation and model pruning work for Transformer learning. Approach: Theoretical analysis of a one-layer Transformer trained by SGD on a data model with $M$ orthogonal patterns, where two patterns are discriminative and labels are determined by a majority vote over label-relevant tokens. Key findings: gradient updates to $W_Q$, $W_K$, $W_V$ concentrate along the label-relevant directions, implying a low-rank structure tied to the number of label-relevant patterns; output weights $W_O$ become sparse, enabling effective pruning with bounded impact on generalization; corollaries quantify how pruning affects generalization. Numerical validation on synthetic data confirms the rank-2 effective gradient structure and predictable pruning behavior. Significance: provides a principled explanation for the practical effectiveness of LoRA and magnitude-based pruning in Transformer learning and offers guidance for efficient training.
Abstract
Efficient training and inference algorithms, such as low-rank adaption and model pruning, have shown impressive performance for learning Transformer-based large foundation models. However, due to the technical challenges of the non-convex optimization caused by the complicated architecture of Transformers, the theoretical study of why these methods can be applied to learn Transformers is mostly elusive. To the best of our knowledge, this paper shows the first theoretical analysis of the property of low-rank and sparsity of one-layer Transformers by characterizing the trained model after convergence using stochastic gradient descent. By focusing on a data model based on label-relevant and label-irrelevant patterns, we quantify that the gradient updates of trainable parameters are low-rank, which depends on the number of label-relevant patterns. We also analyze how model pruning affects the generalization while improving computation efficiency and conclude that proper magnitude-based pruning has a slight effect on the testing performance. We implement numerical experiments to support our findings.
