REVIEW 2 major objections 5 minor 51 references
LatentLLM: Attention-Aware Joint Tensor Compression
T0 review · 2 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read A pretrained transformer can be compressed into a latent-attention model in one shot with little accuracy loss.
desk verdict A clean mathematical core with a useful junction-matrix trick, but the headline claim for joint attention-aware compression is not yet isolated from the block-identity effect. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the joint tensor (Tucker/HOSVD) decomposition of the per-head Gram products $G_i = C^{1/2}W_{q,i}^{\top}W_{k,i}C^{1/2}$ into shared latent planes $A_q, A_k$ and a core $H_i = A_qG_iA_k^{\top}$, where $C$ is the calibration covariance of input activations. The objective being minimized is the squared error of the pre-softmax attention map $\sum_i \|M_i - \hat{M}_i\|^2$; the alternating right-singular-vector updates in Algorithm 1 are what carry the joint QK compression. Two supporting mechanisms complete the argument: the square-root covariance pre-conditioner $P = C^{1/2}$, claimed optimal for activation-aware SVD among the variants in Table 1, and the junction matrix choice $J = V_1$, which turns the compression matrix into block-identity form and removes $r^2$ parameters from every factorized layer.
What would settle it
Compress only the query/key pairs of a model whose attention has near-hard softmax (most softmax weights near zero), then compare end-to-end perplexity against a model with diffuse attention at the same rank; if low attention-map error coincides with a large perplexity jump, the proxy is not faithful and the claimed advantage does not generalize.
Extended reading notes
Core claim
The central discovery is that the conversion from multi-head attention to latent attention can be posed as a joint tensor decomposition whose objective is the squared error of the pre-softmax attention maps summed over heads, not the usual per-weight approximation error. The paper derives an alternating SVD (a high-order SVD or Tucker decomposition) that factorizes query and key projections into shared compression matrices $A_q, A_k$ and per-head decompression matrices, and it applies the same global-loss idea—with auxiliary variables for the nonlinearity—to the MLP up/down projections. A separate structural finding is that the junction matrix $J$ left unspecified by truncated SVD can be chosen so that one factor becomes block-identity, saving $r^2$ parameters and FLOPs per layer and ensuring low-rank compression always shrinks the model. With these mechanisms, the reported OPT experiments from 125M to 13B parameters show LatentLLM outperforming local activation-aware SVD baselines at every compression level, and the LLaVa experiments show modest degradation in multi-modal reasoning down to 50% of the original size.
Load-bearing premise
The load-bearing premise is that minimizing the summed squared error of the raw, pre-softmax attention maps faithfully proxies end-to-end model quality; this premise ignores the softmax nonlinearity and the value/output pathway, and the paper itself reports that the analogous joint value-output compression failed for exactly that reason.
Editorial extensions
If this is right
- At 10–20% size reduction, compressed OPT models match or slightly beat the uncompressed model's perplexity on WikiText-2 (e.g., 14.5 vs 14.6 for OPT-1.3B at 10%), so near-lossless, training-free compression is achievable in this regime.
- Because the junction matrix is chosen to produce a block-identity factor, every compressed layer has strictly fewer parameters and FLOPs than the original whenever the latent rank is below the matrix dimension; reported OPT-6.7B FLOPs fall roughly linearly with compression ratio.
- On the 7B vision-language model, ScienceQA accuracy drops from 70.0% uncompressed to 65.8% at 10% compression and 52.3% at 50%, so the method preserves a large share of multi-modal reasoning ability without fine-tuning.
- The same joint-decomposition recipe extends to grouped query attention and to most positional encodings, and the authors state it can be applied to pruning and quantization as well.
Reading between the lines
- Editorial inference: the unweighted head-summed attention-map loss is the method's main lever; a weighted loss (by head importance, softmax temperature, or downstream-layer sensitivity) would likely improve results at high compression, though the paper does not test this.
- Editorial inference: the block-identity junction-matrix trick is independent of the joint tensor decomposition and could be dropped into any low-rank compression or adapter pipeline to turn parameter-neutral decompositions into parameter-saving ones.
- Editorial inference: because the paper's own Remark 11 says joint value-output compression was not effective, the biggest gains are likely where query-key geometry dominates; models whose behavior is driven by the value/output pathway may see less benefit.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes LatentLLM, a training-free method for converting pretrained multi-head attention (MHA) transformers into a reduced-dimension MLA-like form. It derives (i) a root-covariance preconditioner for activation-aware SVD, (ii) a block-identity junction matrix that reduces parameter count and FLOPs without changing the local SVD loss, and (iii) a joint tensor (Tucker/HOSVD) decomposition of query/key and up/down projections that minimizes a pre-softmax attention-map error and a decoupled MLP loss. Experiments on OPT models report perplexity improvements over plain-SVD and ASVD baselines at 10–40% size reduction, with some perplexity values below the uncompressed model, and LLaVA-7B ScienceQA accuracy that degrades less than the baselines at 10–50% compression.
Significance. The analytic derivations of the root-covariance preconditioner and the block-identity junction matrix are a useful contribution; the parameter-count argument in Sec. 3.3 is correct and generally applicable. If the empirical gains are really attributable to the joint attention-aware objective, the method would be a valuable zero-shot LLM/LMM compression technique. However, the current experiments do not isolate that mechanism from the other two ingredients, so the paper's central claim is not yet established. The internal Remark 11 also indicates that the attention-map proxy can be unreliable, which raises the stakes for the missing ablation. The consistent improvements over the local ASVD baselines are encouraging, but they are confounded with the block-identity rank savings.
major comments (2)
- [§5, Tables 2 and 4; §3.3] The central claim that the joint attention-aware QK decomposition improves over existing compression methods is not isolated in the reported experiments. Every LatentLLM result combines the joint objective of Eq. (11) with the root-covariance preconditioner (Sec. 3.2) and the block-identity junction matrix (Sec. 3.3). At fixed nominal compression, the block-identity form (Eq. 9) removes r^2 parameters per square layer with no change in the local SVD loss, so LatentLLM can operate at a larger average rank than a local ASVD baseline with the same parameter count. No experiment compares local ASVD with root covariance plus block identity at matched per-layer parameter counts against LatentLLM; without such an ablation, the gains in Tables 2 and 4 could be due entirely to rank allocation. Please add this matched ablation and report the per-layer ranks used by each method.
- [§4.1, Eq. (11), Remark 11] The objective in Eq. (11) minimizes the squared error of the pre-softmax attention map summed over heads, ignoring the softmax nonlinearity and the value/output pathway. The paper itself reports in Remark 11 that the analogous joint VO compression was not effective over split V/O compression because the loss does not deal with the nonlinear attention map, showing that this proxy is fragile. Since the joint QK objective is the paper's central technical novelty, the experiments should include evidence that reducing Eq. (11) actually tracks end-to-end perplexity (e.g., compare the selected QK decomposition against a local QK SVD chosen to match the same attention-map loss, or report a sweep over the alternating-SVD iterations with end-to-end perplexity). Without that, the attention-aware mechanism remains a hypothesis rather than a demonstrated cause of the reported gains.
minor comments (5)
- [Abstract] The abstract contains 'LLMs/LLMs' in the sentence about computationally/memory-efficient models; this should be 'LLMs/LMMs'.
- [§5, Tables 2 and 4] The table captions do not state whether the ASVD baselines use the block-identity junction matrix. This should be stated explicitly, since the block-identity transform is one of the proposed ingredients and its use, or non-use, in the baselines directly affects the interpretation of the comparisons.
- [§5, Experiments setup] The values of the damping factor λ, the per-layer ranks (r_q, r_k, r_o, r_v, r_u, r_d), and the calibration sequence length are not reported, despite these being free parameters of the method. The paper states only the numbers of alternating iterations (4 for UD, 8 for QK). Please provide the full configuration, ideally with a sensitivity analysis over λ and rank allocation.
- [Algorithm 1] The notation 'RightSingular_r' is used without defining the orientation of the returned matrix; in the surrounding equations A_q and A_k appear sometimes as r×d and sometimes as d×r. Please align the notation so that the algorithm is unambiguous.
- [§3.2, Remark 3] The normalization C = (XX^T + λI)/l is introduced without specifying whether l is the sequence length, the number of calibration tokens, or the number of calibration samples. Clarifying this would improve reproducibility.
Circularity Check
No significant circularity: LatentLLM's derivations are self-contained and its evaluations use held-out benchmarks.
full rationale
LatentLLM's central contribution is a training-free low-rank conversion of MHA to an MLA-like form. The derivation chain is self-contained: the joint QK objective in Eq. (11) minimizes the squared error of the pre-softmax attention map over calibration activations, which is a well-defined proxy optimization rather than a fitted surrogate for downstream perplexity. The HOSVD/Tucker solution in Algorithm 1 follows from the algebra of the stated loss, and the junction-matrix construction in Sec. 3.3 is an exact reparameterization (Eq. 9) that saves parameters without changing the local SVD error; it may make baselines unfair at matched compression ratios, but it is not circular. The paper does not fit a parameter to the test metric and then rename it a prediction; perplexity and ScienceQA accuracy are measured on held-out sets (WT2, PTB, C4 validation, and the ScienceQA test split). SparseLLM, the main external framework adopted for the MLP loss, is an independent citation whose method is explicitly reused, not a self-citation invoked as an unverified authority. No uniqueness theorem or ansatz is smuggled in via self-citation; the papers cited for global compression (SparseLLM, Q-VLM) are external. The only mild concerns are benchmarking rather than circularity: calibration is on C4 and one of the evaluation sets is C4 validation, and hyperparameters such as lambda, ranks, and iteration counts are not reported with a separate validation split. These affect attribution of the improvement, not the logical dependence of the claimed result on its inputs. Therefore no circular step can be exhibited, and the paper should receive a non-circular verdict.
Assumptions & free parameters
free parameters (5)
- damping factor lambda =
not reported
- per-layer ranks (r_q, r_k, r_o, r_v) =
not reported
- alternating SVD iterations N =
4 for UD, 8 for QK
- MLP decoupled-loss weights alpha, beta, gamma =
not reported
- calibration set size and sequence length =
64 samples of 2048 tokens
assumptions (5)
- domain assumption The activation covariance C estimated from 64 calibration samples transfers to the test distribution.
- domain assumption Minimizing the pre-softmax attention-map error (Eq. 11) is a valid proxy for compression quality.
- ad hoc to paper The alternating HOSVD procedure converges to an adequate solution in a few iterations.
- standard math SVD low-rank approximation under the weighted loss is globally optimal.
- domain assumption The SparseLLM decoupled MLP loss yields an effective low-rank approximation.
Cite this review
Pith. "Pith review of LatentLLM: Attention-Aware Joint Tensor Compression." pith.science (2026). https://pith.science/paper/W77LJ2OT
@misc{pith2026250518413,
author = {Pith},
title = {Pith review of: LatentLLM: Attention-Aware Joint Tensor Compression},
year = {2026},
howpublished = {\url{https://pith.science/paper/W77LJ2OT}},
note = {Machine review of arXiv:2505.18413}
}
read the original abstract
Modern foundation models such as large language models (LLMs) and large multi-modal models (LMMs) require a massive amount of computational and memory resources. We propose a new framework to convert such LLMs/LMMs into a reduced-dimension latent structure. Our method extends a local activation-aware tensor decomposition to a global attention-aware joint tensor de-composition. Our framework can significantly improve the model accuracy over the existing model compression methods when reducing the latent dimension to realize computationally/memory-efficient LLMs/LLMs. We show the benefit on several benchmark including multi-modal reasoning tasks.
Figures
Figures from the paper (13 more)
Reference graph
Works this paper leans on
-
[1]
Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ah- mad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. GPT-4 technical report. arXiv preprint arXiv:2303.08774 ,
-
[2]
Beyond efficiency: A systematic survey of resource-efficient large language models
Guangji Bai, Zheng Chai, Chen Ling, Shiyu Wang, Jiay- ing Lu, Nan Zhang, Tingwei Shi, Ziyang Yu, Mengdan Zhu, Yifei Zhang, et al. Beyond efficiency: A systematic survey of resource-efficient large language models. arXiv preprint arXiv:2401.00625, 2024. 1
arXiv 2024
-
[3]
SparseLLM: Towards global pruning of pre-trained language models
Guangji Bai, Yijiang Li, Chen Ling, Kibaek Kim, and Liang Zhao. SparseLLM: Towards global pruning of pre-trained language models. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024. 1, 2, 4, 5, 7, 31, 33
work page 2024
-
[4]
Sparks of artificial general intelligence: Early experiments with GPT-4
S ´ebastien Bubeck, Varun Chandrasekaran, Ronen Eldan, Jo- hannes Gehrke, Eric Horvitz, Ece Kamar, Peter Lee, Yin Tat Lee, Yuanzhi Li, Scott Lundberg, et al. Sparks of artificial general intelligence: Early experiments with GPT-4. arXiv preprint arXiv:2303.12712, 2023. 1
arXiv 2023
-
[5]
Palu: Compressing KV-cache with low-rank projection
Chi-Chih Chang, Wei-Cheng Lin, Chien-Yu Lin, Chong-Yan Chen, Yu-Fang Hu, Pei-Shuo Wang, Ning-Chi Huang, Luis Ceze, Mohamed S Abdelfattah, and Kai-Chiang Wu. Palu: Compressing KV-cache with low-rank projection. arXiv preprint arXiv:2407.21118, 2024. 1, 2, 3
arXiv 2024
-
[6]
Transformer-XL: Attentive language models beyond a fixed-length context
Zihang Dai, Zhilin Yang, Yiming Yang, Jaime Carbonell, Quoc V Le, and Ruslan Salakhutdinov. Transformer-XL: Attentive language models beyond a fixed-length context. arXiv preprint arXiv:1901.02860, 2019. 26
arXiv 1901
-
[7]
DeepSeek-AI, Daya Guo, Dejian Yang, Haowei Zhang, Junxiao Song, Ruoyu Zhang, Runxin Xu, Qihao Zhu, Shi- rong Ma, Peiyi Wang, Xiao Bi, Xiaokang Zhang, Xingkai Yu, Yu Wu, Z. F. Wu, Zhibin Gou, Zhihong Shao, Zhuoshu Li, Ziyi Gao, Aixin Liu, Bing Xue, Bingxuan Wang, Bochao Wu, Bei Feng, Chengda Lu, Chenggang Zhao, Chengqi Deng, Chenyu Zhang, Chong Ruan, Damai...
work page 2025
-
[8]
Exploiting linear structure within convolutional networks for efficient evaluation
Emily L Denton, Wojciech Zaremba, Joan Bruna, Yann Le- Cun, and Rob Fergus. Exploiting linear structure within convolutional networks for efficient evaluation. Advances in neural information processing systems, 27, 2014. 2, 3
work page 2014
Show all 51 references
-
[9]
The case for 4-bit pre- cision: k-bit inference scaling laws
Tim Dettmers and Luke Zettlemoyer. The case for 4-bit pre- cision: k-bit inference scaling laws. In International Confer- ence on Machine Learning, pages 7750–7774. PMLR, 2023. 7
2023
-
[10]
SparseGPT: Massive lan- guage models can be accurately pruned in one-shot
Elias Frantar and Dan Alistarh. SparseGPT: Massive lan- guage models can be accurately pruned in one-shot. In In- ternational Conference on Machine Learning, pages 10323– 10337. PMLR, 2023. 1, 3, 7, 14, 33
2023
-
[11]
GPTQ: Accurate post-training quantization for generative pre-trained transformers
Elias Frantar, Saleh Ashkboos, Torsten Hoefler, and Dan Alistarh. GPTQ: Accurate post-training quantization for generative pre-trained transformers. arXiv preprint arXiv:2210.17323, 2022. 1, 3, 7, 14
2022 arXiv
-
[12]
Optimal brain surgeon and general network pruning
Babak Hassibi, David G Stork, and Gregory J Wolff. Optimal brain surgeon and general network pruning. InIEEE interna- tional conference on neural networks, pages 293–299. IEEE,
-
[13]
Distilling step-by-step! outperforming larger language models with less training data and smaller model sizes
Cheng-Yu Hsieh, Chun-Liang Li, Chih-Kuan Yeh, Hootan Nakhost, Yasuhisa Fujii, Alexander Ratner, Ranjay Krishna, Chen-Yu Lee, and Tomas Pfister. Distilling step-by-step! outperforming larger language models with less training data and smaller model sizes. arXiv preprint arXiv:2...
-
[14]
PC-LoRA: Low-rank adaptation for progressive model compression with knowledge distilla- tion
Injoon Hwang, Haewon Park, Youngwan Lee, Jooyoung Yang, and SunJae Maeng. PC-LoRA: Low-rank adaptation for progressive model compression with knowledge distilla- tion. arXiv preprint arXiv:2406.09117, 2024. 1
2024 arXiv
-
[15]
Mixtral of experts
Albert Q Jiang, Alexandre Sablayrolles, Antoine Roux, Arthur Mensch, Blanche Savary, Chris Bamford, Deven- dra Singh Chaplot, Diego de las Casas, Emma Bou Hanna, Florian Bressand, et al. Mixtral of experts. arXiv preprint arXiv:2401.04088, 2024. 1
2024 arXiv
-
[16]
GPT-4 passes the bar exam
Daniel Martin Katz, Michael James Bommarito, Shang Gao, and Pablo Arredondo. GPT-4 passes the bar exam. Philo- sophical Transactions of the Royal Society A , 382(2270): 20230254, 2024. 1
2024
-
[17]
BERT: Pre-training of deep bidirectional trans- formers for language understanding
Jacob Devlin Ming-Wei Chang Kenton and Lee Kristina Toutanova. BERT: Pre-training of deep bidirectional trans- formers for language understanding. In Proceedings of naacL-HLT, page 2. Minneapolis, Minnesota, 2019. 26
2019
-
[18]
Optimal brain damage
Yann LeCun, John Denker, and Sara Solla. Optimal brain damage. Advances in neural information processing systems, 2, 1989. 1
1989
-
[19]
A well-conditioned esti- mator for large-dimensional covariance matrices
Olivier Ledoit and Michael Wolf. A well-conditioned esti- mator for large-dimensional covariance matrices. Journal of multivariate analysis, 88(2):365–411, 2004. 2
2004
-
[20]
LoSparse: Structured com- pression of large language models based on low-rank and sparse approximation
Yixiao Li, Yifan Yu, Qingru Zhang, Chen Liang, Pengcheng He, Weizhu Chen, and Tuo Zhao. LoSparse: Structured com- pression of large language models based on low-rank and sparse approximation. In International Conference on Ma- chine Learning, pages 20336–20350. PMLR, 2023. 2
2023
-
[21]
Beyond linear approximations: A novel pruning approach for attention matrix
Yingyu Liang, Jiangxuan Long, Zhenmei Shi, Zhao Song, and Yufa Zhou. Beyond linear approximations: A novel pruning approach for attention matrix. arXiv preprint arXiv:2410.11261, 2024. 4
2024 arXiv
-
[22]
MoE-LlaVa: Mixture of experts for large vision-language models
Bin Lin, Zhenyu Tang, Yang Ye, Jiaxi Cui, Bin Zhu, Peng Jin, Junwu Zhang, Munan Ning, and Li Yuan. MoE-LlaVa: Mixture of experts for large vision-language models. arXiv preprint arXiv:2401.15947, 2024. 1
2024 arXiv
-
[23]
AWQ: Activation-aware weight quantization for on-device LLM compression and accelera- tion
Ji Lin, Jiaming Tang, Haotian Tang, Shang Yang, Wei-Ming Chen, Wei-Chen Wang, Guangxuan Xiao, Xingyu Dang, Chuang Gan, and Song Han. AWQ: Activation-aware weight quantization for on-device LLM compression and accelera- tion. Proceedings of Machine Learning and Systems , 6:87– ...
2024
-
[24]
DeepSeek-v3 technical report
Aixin Liu, Bei Feng, Bing Xue, Bingxuan Wang, Bochao Wu, Chengda Lu, Chenggang Zhao, Chengqi Deng, Chenyu Zhang, Chong Ruan, et al. DeepSeek-v3 technical report. arXiv preprint arXiv:2412.19437, 2024. 1, 2, 3, 13
2024 arXiv
-
[25]
Visual instruction tuning, 2023
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning, 2023. 1, 7
2023
-
[26]
Learn to explain: Multimodal reasoning via thought chains for science question answering
Pan Lu, Swaroop Mishra, Tony Xia, Liang Qiu, Kai-Wei Chang, Song-Chun Zhu, Oyvind Tafjord, Peter Clark, and Ashwin Kalyan. Learn to explain: Multimodal reasoning via thought chains for science question answering. In The 36th Conference on Neural Information Processing Systems ...
2022
-
[27]
The penn treebank: Annotating pred- icate argument structure
Mitch Marcus, Grace Kim, Mary Ann Marcinkiewicz, Robert MacIntyre, Ann Bies, Mark Ferguson, Karen Katz, and Britta Schasberger. The penn treebank: Annotating pred- icate argument structure. In Human Language Technology: Proceedings of a Workshop held at Plainsboro, New Jersey,...
1994
-
[28]
Pointer sentinel mixture models
Stephen Merity, Caiming Xiong, James Bradbury, and Richard Socher. Pointer sentinel mixture models. arXiv preprint arXiv:1609.07843, 2016. 7 11
2016 arXiv
-
[29]
PyTorch: An imperative style, high-performance deep learning li- brary
Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zem- ing Lin, Natalia Gimelshein, Luca Antiga, et al. PyTorch: An imperative style, high-performance deep learning li- brary. Advances in neural information processing systems ...
2019
-
[30]
Improving language understanding by gener- ative pre-training
Alec Radford. Improving language understanding by gener- ative pre-training. Preprint, 2018. 26
2018
-
[31]
Exploring the limits of transfer learning with a unified text-to-text transformer
Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J Liu. Exploring the limits of transfer learning with a unified text-to-text transformer. Journal of machine learning research, 21(140):1–67, 2020. 7
2020
-
[32]
Compressing large language models using low rank and low precision decomposition
Rajarshi Saha, Naomi Sagan, Varun Srivastava, Andrea Goldsmith, and Mert Pilanci. Compressing large language models using low rank and low precision decomposition. Advances in Neural Information Processing Systems , 37: 88981–89018, 2024. 1, 2
2024
-
[33]
Low-rank matrix factorization for deep neural network training with high- dimensional output targets
Tara N Sainath, Brian Kingsbury, Vikas Sindhwani, Ebru Arisoy, and Bhuvana Ramabhadran. Low-rank matrix factorization for deep neural network training with high- dimensional output targets. In 2013 IEEE international con- ference on acoustics, speech and signal processing , pa...
2013
-
[34]
Eigen attention: Attention in low- rank space for KV cache compression
Utkarsh Saxena, Gobinda Saha, Sakshi Choudhary, and Kaushik Roy. Eigen attention: Attention in low- rank space for KV cache compression. arXiv preprint arXiv:2408.05646, 2024. 1, 2
2024 arXiv
-
[35]
Low-rank lottery tick- ets: finding efficient low-rank neural networks via matrix differential equations
Steffen Schotth ¨ofer, Emanuele Zangrando, Jonas Kusch, Gi- anluca Ceruti, and Francesco Tudisco. Low-rank lottery tick- ets: finding efficient low-rank neural networks via matrix differential equations. Advances in Neural Information Pro- cessing Systems, 35:20051–20063, 2022. 1
2022
-
[36]
Green AI
Roy Schwartz, Jesse Dodge, Noah A Smith, and Oren Et- zioni. Green AI. Communications of the ACM , 63(12):54– 63, 2020. 1
2020
-
[37]
RoFormer: Enhanced transformer with rotary position embedding
Jianlin Su, Murtadha Ahmed, Yu Lu, Shengfeng Pan, Wen Bo, and Yunfeng Liu. RoFormer: Enhanced transformer with rotary position embedding. Neurocomputing, 568:127063,
-
[38]
A simple and effective pruning approach for large language models
Mingjie Sun, Zhuang Liu, Anna Bair, and J Zico Kolter. A simple and effective pruning approach for large language models. arXiv preprint arXiv:2306.11695, 2023. 1, 3, 7, 14, 33
2023 arXiv
-
[39]
Llama 2: Open foundation and fine-tuned chat models.arXiv preprint arXiv:2307.09288, 2023
Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. Llama 2: Open foundation and fine-tuned chat models.arXiv preprint arXiv:2307.09288, 2023. 1
2023 arXiv
-
[40]
Q-VLM: Post-training quanti- zation for large vision-language models
Changyuan Wang, Ziwei Wang, Xiuwei Xu, Yansong Tang, Jie Zhou, and Jiwen Lu. Q-VLM: Post-training quanti- zation for large vision-language models. arXiv preprint arXiv:2410.08119, 2024. 1, 2
2024 arXiv
-
[41]
SVD-LLM: Truncation-aware singular value decomposition for large language model compression
Xin Wang, Yu Zheng, Zhongwei Wan, and Mi Zhang. SVD-LLM: Truncation-aware singular value decomposition for large language model compression. arXiv preprint arXiv:2403.07378, 2024. 2
2024 arXiv
-
[42]
Emergent abilities of large language models
Jason Wei, Yi Tay, Rishi Bommasani, Colin Raffel, Barret Zoph, Sebastian Borgeaud, Dani Yogatama, Maarten Bosma, Denny Zhou, Donald Metzler, et al. Emergent abilities of large language models. arXiv preprint arXiv:2206.07682 ,
-
[43]
Huggingface’s transformers: State-of-the-art natu- ral language processing
T Wolf. Huggingface’s transformers: State-of-the-art natu- ral language processing. arXiv preprint arXiv:1910.03771,
1910 arXiv
-
[44]
A survey on model com- pression and acceleration for pretrained language models
Canwen Xu and Julian McAuley. A survey on model com- pression and acceleration for pretrained language models. In Proceedings of the AAAI Conference on Artificial Intel- ligence, pages 10566–10575, 2023. 1
2023
-
[45]
CorDA: Context-oriented decomposition adaptation of large language models
Yibo Yang, Xiaojie Li, Zhongzhu Zhou, Shuaiwen Leon Song, Jianlong Wu, Liqiang Nie, and Bernard Ghanem. CorDA: Context-oriented decomposition adaptation of large language models. arXiv preprint arXiv:2406.05223 , 2024. 3, 14
2024 arXiv
-
[46]
ZeroQuant: Ef- ficient and affordable post-training quantization for large- scale transformers
Zhewei Yao, Reza Yazdani Aminabadi, Minjia Zhang, Xi- aoxia Wu, Conglong Li, and Yuxiong He. ZeroQuant: Ef- ficient and affordable post-training quantization for large- scale transformers. Advances in Neural Information Process- ing Systems, 35:27168–27183, 2022. 7
2022
-
[47]
ASVD: Activation-aware singular value decomposition for compressing large language models
Zhihang Yuan, Yuzhang Shang, Yue Song, Qiang Wu, Yan Yan, and Guangyu Sun. ASVD: Activation-aware singular value decomposition for compressing large language models. arXiv preprint arXiv:2312.05821, 2023. 1, 2, 3, 14
2023 arXiv
-
[48]
LLM inference unveiled: Survey and roofline model insights
Zhihang Yuan, Yuzhang Shang, Yang Zhou, Zhen Dong, Zhe Zhou, Chenhao Xue, Bingzhe Wu, Zhikai Li, Qingyi Gu, Yong Jae Lee, et al. LLM inference unveiled: Survey and roofline model insights. arXiv preprint arXiv:2402.16363 ,
-
[49]
OPT: Open pre-trained trans- former language models
Susan Zhang, Stephen Roller, Naman Goyal, Mikel Artetxe, Moya Chen, Shuohui Chen, Christopher Dewan, Mona Diab, Xian Li, Xi Victoria Lin, et al. OPT: Open pre-trained trans- former language models. arXiv preprint arXiv:2205.01068,
-
[50]
C 1 2 O µ⊤C −1 2 (1 − µ⊤C +µ) 1 2 #
Xunyu Zhu, Jian Li, Yong Liu, Can Ma, and Weiping Wang. A survey on model compression for large language models. Transactions of the Association for Computational Linguis- tics, 12:1556–1577, 2024. 1 12 A. Weight-Aware Compression A.1. Plain SVD Given a pretrained weight matri...
2024
-
[51]
(193) Plugging into the loss gives: L = X i ∥Wo,iWv,i(X − µ1⊤) − ˆWo,i ˆWv,i(X − µ1⊤)∥2 (194) = X i ∥ Wo,iWv,i| {z } Gi∈Rd×d C 1 2 0 − Bo Ao,iBv,i| {z } Hi∈Rro ×rv AvC 1 2 0 ∥2
(192) Thus the KKT condition gives: ˆbo,i = bo,i + Wo,i(Wv,iµ + bv,i) − ˆWo,i( ˆWv,iµ + ˆbv,i). (193) Plugging into the loss gives: L = X i ∥Wo,iWv,i(X − µ1⊤) − ˆWo,i ˆWv,i(X − µ1⊤)∥2 (194) = X i ∥ Wo,iWv,i| {z } Gi∈Rd×d C 1 2 0 − Bo Ao,iBv,i| {z } Hi∈Rro ×rv AvC 1 2 0 ∥2. (19...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.