REVIEW 4 major objections 5 minor 2 cited by
LOST: Low-rank and Sparse Pre-training for Large Language Models
T0 review · 4 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash
Pith's one-line read Low-rank weights plus a frozen sparse channel mask can match full-rank LLM pretraining.
desk verdict A credible incremental method for low-rank plus sparse LLM pre-training with solid ablations, but the headline gains over full-rank rest on inherited baselines and single-seed runs. 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 load-bearing mechanism is a one-time SVD-based co-design of the two components. The low-rank factor is initialized from the top-$r$ singular vectors, so its product approximates the original weight in Frobenius norm; the sparse residual is initialized from the remaining singular subspace, so it carries directions orthogonal to the low-rank part instead of duplicating it. Channel-wise structure, keeping whole columns rather than element-wise entries, makes the store compact because only $k$ column indices need to be saved. The activation inserted between $A$ and $B$ adds nonlinearity without adding parameters. Together this preserves both the dominant subspace and a small set of high-energy output channels, and the frozen mask means the SVD cost is paid only once, before training.
What would settle it
Train a 130M LOST model but re-run the SVD and channel selection every 5,000 steps using the current factored weights; if perplexity drops below the reported 24.05, the fixed mask is the load-bearing cost. A cheaper check is to replace the SVD-selected channel set with randomly chosen channels at initialization and compare perplexity: if random channels match, the complementary-spectrum selection is not the cause.
Extended reading notes
Core claim
LOST's central discovery is that the information lost by truncating a randomly initialized weight matrix to rank $r$ does not need to be modeled densely: it can be captured by keeping $k$ whole output channels selected from the complementary subspace. Concretely, a single SVD of the Kaiming-initialized matrix $W$ gives $W_l = AB^T$ with $A = U_r \Sigma_r^{1/2}$, $B = V_r \Sigma_r^{1/2}$, with a SiLU activation between the two factors; the residual subspace $W_{\text{comp}} = \sum_{i>r} \sigma_i u_i v_i^T$ is used to score each channel by its L2 norm, and the top $k = \lceil \rho n \rceil$ channels are kept as $W_s = W[:, I]$. The forward pass is $o = \gamma\, \sigma(xA)B^T + (1-\gamma)\, x[:,I] W_s^T$. With $\gamma=0.7$, $\rho=0.01$, and rank adjusted so the parameter count matches other low-rank baselines, LOST obtains 32.25 vs 34.06 perplexity at 60M, 24.05 vs 24.36 at 130M, 18.95 vs 18.80 at 350M, and 15.02 vs 15.56 at 1B, with estimated memory of 0.24, 0.57, 1.11, and 3.66 GB versus 0.35, 0.81, 2.21, and 8.04 GB for full-rank training.
Load-bearing premise
The sparse channel mask is fixed after initialization, so the whole method assumes that the channels that look important before training stay important all the way through.
Editorial extensions
If this is right
- With the same token budget, LOST reports lower validation perplexity than full-rank training at 60M, 130M, and 1B, and effectively matches it at 350M.
- The parameter count for a linear layer drops from $mn$ to $r(m+n) + mk$; at 1B this yields 3.66 GB estimated memory instead of 8.04 GB.
- At 7B over 40K steps, LOST reports perplexity 16.48 versus 18.09 for 8-bit Adam, and 8-bit LOST uses 50.19 GB versus 72.59 GB.
- Fine-tuning RoBERTa-base on GLUE with $r=7$ gives an average score of 86.51, above the full-size model's 86.28 in the paper's table, suggesting the decomposition transfers beyond pretraining.
- Ablations show that selecting channels from the residual singular subspace outperforms alternatives derived from the largest, smallest, or random singular values.
Reading between the lines
- Because the channel mask is frozen after initialization, the method implicitly assumes the SVD spectrum of the initial weight predicts which channels stay important through training; an adaptive re-selection schedule is a natural test, and if it helps, the fixed mask is a bottleneck rather than a feature.
- The channel-wise structure may be a stronger design choice than the paper fully exploits: whole stored columns could combine directly with hardware-friendly structured sparsity kernels at inference time, something element-wise sparse methods cannot do without conversion.
- The authors flag that models above 7B remain untested; if the one-time SVD split reproduces at 10B-plus scale, it would make from-scratch pretraining feasible on far smaller hardware, while longer training schedules would stress-test the frozen-mask assumption.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes LOST, a method for pre-training LLMs from scratch using a sum of a low-rank component and a channel-wise sparse component. The low-rank factors are initialized from the top-r singular vectors/values of the initialized full-rank weight matrix, and the sparse channels are selected, once at initialization, from the residual subspace using an L2-norm importance score; the two branches are combined at the output level with a fixed trade-off coefficient gamma. The authors evaluate LOST on LLaMA-style models from 60M to 7B parameters trained on C4, reporting perplexity, parameter counts, and memory estimates, and they also test a fine-tuning variant on GLUE. The central claim is that LOST reaches lower or comparable validation perplexity than full-rank training while using fewer parameters and less memory.
Significance. If the central claim holds, LOST would be a practical contribution: it provides a parameter- and memory-efficient way to pre-train transformer LMs without a full-rank warm-up, with a clean SVD-based initialization that is performed once. The paper includes a thorough ablation study on the complementary matrix source, channel selection criterion, initialization scheme, activation placement, sparsity level, and trade-off coefficient, and it reports experiments up to 7B parameters plus fine-tuning results on GLUE. The method is clearly described and the code is promised to be released. However, the headline performance claim rests on a comparison whose full-rank and several baseline numbers are not reproduced in the same codebase, and no seeds or error bars are given; the margins at 130M and 1B are small enough that the central claim is not yet established by the evidence presented.
major comments (4)
- [Section 4.1, Table 1] The headline comparison against full-rank training is not a matched comparison. The text states that only LORO and CoLA results are reproduced with their default scripts, while Full-Rank, LoRA, ReLoRA, GaLore, and SLTrain numbers are directly reported from [16, 20]. The claimed advantages over full-rank are 1.81 PPL at 60M, 0.31 PPL at 130M, and 0.54 PPL at 1B; at 350M LOST is actually 0.15 PPL worse than full-rank. These margins are comparable to typical cross-codebase differences in tokenizer, batch size, learning-rate schedule, and numerical format. To support the claim 'LOST achieves comparable or superior performance compared to full-rank models,' all baselines, especially full-rank, must be rerun in the same codebase and with the same training setup, or the comparison must be explicitly downgraded to a cross-paper reference.
- [Section 4.1 / Experimental setup (no seeds)] No random seeds, replicates, or error bars are reported anywhere in Section 4. The main PPL differences over full-rank are small in absolute terms (0.31 at 130M, 0.54 at 1B), and without variance estimates it is impossible to know whether LOST's advantage is statistically meaningful. The authors should run the key comparisons (at least the 60M, 130M, and 1B models) with multiple seeds and report the mean and standard deviation, or at least the best-of-three with the spread.
- [Section 4.1, Table 2 and Appendix Table 11] The 7B scaling claim is based on only 40K training steps (with LOST extended to 150K), while the paper's own Table 13 indicates a full epoch would require roughly 19.7B tokens. Moreover, in Table 11 the Full-Rank Adam baseline is run with batch size 4, whereas LOST runs with batch size 8, so the reported memory figures per GPU (49.53 GB vs 62.15 GB) are not comparable, and the full-rank run's instability after 12K steps is observed on a different batch size and a truncated schedule. A 40K-step comparison does not establish that LOST trains stably to convergence at 7B relative to full-rank. Please either extend the full-rank baseline to the same number of steps and batch size, or soften the scalability conclusion.
- [Section 3.2 / Algorithm 1, Step 2] The sparse channel mask I is selected once from the SVD of the randomly initialized weight matrix and is never updated during training. The method therefore assumes that the channels that are most important at initialization remain the channels that are most important throughout training. The ablation in Table 3 shows that the specific choice of the complementary matrix changes PPL by only about 0.1–0.2 (e.g., 32.25 vs 32.35 at 60M), which undercuts the paper's emphasis on the 'complementary co-design' as the source of the improvement. The mechanism claim (contribution 2) would be strengthened by an experiment tracking how much the selected channels drift during training and whether an adaptive mask re-selection would improve performance.
minor comments (5)
- [Section 3.1, Eq. (1)] The dimensions are inconsistent: the text defines W ∈ R^{m×n}, but Eq. (1) writes W ∈ R^{n×n} and the singular value matrix diag(σ_1,...,σ_n) ∈ R^{m×n}; please make the rectangular case explicit.
- [Table 3] The column header SVDrand_l2 appears twice; one of the entries is presumably intended to be a different variant (for example SVDrand_l1).
- [Section 2.2] The phrase 'low-rank LLM pertaining' should be 'pre-training'.
- [Section 4.1 / Table 11 caption] The caption for Table 11 says 'for 40K steps' but the table reports results at 10K, 40K, 80K, 120K, and 150K; the caption should reflect the full step range.
- [Appendix Table 12 and text] The comparison between structured and unstructured sparsity is not completely fair because the unstructured variant has to be processed separately to accommodate the activation between low-rank factors; this extra requirement is described in the text, but the memory comparison would be clearer if the activation-free structured case were also reported.
Circularity Check
No significant circularity: LOST's SVD-based low-rank/sparse construction is empirical and self-contained; only non-load-bearing self-citations.
full rationale
The central derivation is an empirical training recipe, not a quantity reconstructed from fitted inputs. SVD is applied once to the random initial weight matrix W (Eq. 1); the low-rank factors A,B and the channel mask I are fixed from the untrained spectrum, and the reported perplexities are measured after gradient-descent training of A,B,Ws. The claim that LOST 'achieves competitive or superior performance compared to full-rank models' is therefore a testable experimental outcome, not a consequence of defining the method in terms of the target metric. Baselines are mostly inherited from external papers [16,20], with LORO and CoLA reproduced locally; none of these comparisons is a self-citation chain. The authors do cite their own prior work (e.g., Q-GaLore [19], WeLore [13], ICASSP [15]), but those citations are contextual and not used to justify the core claim. The choice of gamma=0.7, sparsity=0.01, and rank 256 is tuned on C4 validation ablations; that is a standard hyperparameter-selection risk rather than a circular step, and Table 9 shows the result is robust across gamma in [0.6,0.8]. A separate technical concern is that Eq. (3) defines Ws = W[:,I] rather than Wcomp[:,I], so the sparse term is not literally the residual subspace claimed in Section 3.2; this is an implementation/claim mismatch, not circularity, and it does not make any reported number equal to an input by construction.
Assumptions & free parameters
free parameters (4)
- gamma =
0.7
- sparsity ratio rho =
0.01
- Wcomp rank =
256
- per-model low-rank rank =
not stated in text; lower than nominal r to match LORO/CoLA parameter counts
assumptions (5)
- domain assumption SVD of the randomly initialized weight matrix identifies a low-rank subspace that remains useful after gradient updates.
- domain assumption The L2 norm of residual channels from Wcomp is a valid importance score for choosing which channels to keep.
- domain assumption A fixed set of channels I selected before training continues to be the right sparse support throughout training.
- domain assumption Perplexity on C4 validation after a single epoch is a reliable proxy for LLM pretraining quality.
- domain assumption Baseline results from prior papers are comparable even though not rerun in the same harness.
Cite this review
Pith. "Pith review of LOST: Low-rank and Sparse Pre-training for Large Language Models." pith.science (2026). https://pith.science/paper/DH2MY2Z4
@misc{pith2026250802668,
author = {Pith},
title = {Pith review of: LOST: Low-rank and Sparse Pre-training for Large Language Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/DH2MY2Z4}},
note = {Machine review of arXiv:2508.02668}
}
read the original abstract
While large language models (LLMs) have achieved remarkable performance across a wide range of tasks, their massive scale incurs prohibitive computational and memory costs for pre-training from scratch. Recent studies have investigated the use of low-rank parameterization as a means of reducing model size and training cost. In this context, sparsity is often employed as a complementary technique to recover important information lost in low-rank compression by capturing salient features in the residual space. However, existing approaches typically combine low-rank and sparse components in a simplistic or ad hoc manner, often resulting in undesirable performance degradation compared to full-rank training. In this paper, we propose \textbf{LO}w-rank and \textbf{S}parse pre-\textbf{T}raining (\textbf{LOST}) for LLMs, a novel method that ingeniously integrates low-rank and sparse structures to enable effective training of LLMs from scratch under strict efficiency constraints. LOST applies singular value decomposition to weight matrices, preserving the dominant low-rank components, while allocating the remaining singular values to construct channel-wise sparse components to complement the expressiveness of low-rank training. We evaluate LOST on LLM pretraining ranging from 60M to 7B parameters. Our experiments show that LOST achieves competitive or superior performance compared to full-rank models, while significantly reducing both memory and compute overhead. Moreover, Code is available at \href{https://github.com/JiaxiLi1/LOST-Low-rank-and-Sparse-Training-for-Large-Language-Models}{LOST Repo}
Figures
Forward citations
Cited by 2 Pith papers
-
SLORR: Simple and Efficient In-Training Low-Rank Regularization
A stateless, SVD-free regularizer approximates polar factors to induce low-rank weight structure during training, enabling better post-training compression of vision models and LLMs at under 8% overhead.
-
SALAAD: Sparse And Low-Rank Adaptation via ADMM for Large Language Model Inference
SALAAD uses an ADMM-style optimizer and an adaptive controller to force LLM weights into sparse-plus-low-rank form during pretraining, so one checkpoint can be elastically deployed at many parameter budgets.
Reference graph
Works this paper leans on
-
[1]
From words to watts: Benchmarking the energy costs of large language model inference
Siddharth Samsi, Dan Zhao, Joseph McDonald, Baolin Li, Adam Michaleas, Michael Jones, William Bergeron, Jeremy Kepner, Devesh Tiwari, and Vijay Gadepally. From words to watts: Benchmarking the energy costs of large language model inference. In 2023 IEEE High Performance Extreme Computing Conference (HPEC), pages 1–9. IEEE, 2023
work page 2023
-
[2]
Lora: Low-rank adaptation of large language models
Edward J Hu, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, Weizhu Chen, et al. Lora: Low-rank adaptation of large language models. In International Conference on Learning Representations, 2021
2021
-
[3]
Adaptive budget allocation for parameter-efficient fine-tuning
Qingru Zhang, Minshuo Chen, Alexander Bukharin, Pengcheng He, Yu Cheng, Weizhu Chen, and Tuo Zhao. Adaptive budget allocation for parameter-efficient fine-tuning. In The Eleventh International Conference on Learning Representations, 2023
2023
-
[4]
Tied-lora: Enhacing parameter efficiency of lora with weight tying
Adithya Renduchintala, Tugrul Konuk, and Oleksii Kuchaiev. Tied-lora: Enhacing parameter efficiency of lora with weight tying. arXiv preprint arXiv:2311.09578, 2023
arXiv 2023
-
[5]
S-lora: Serving thousands of concurrent lora adapters
Ying Sheng, Shiyi Cao, Dacheng Li, Coleman Hooper, Nicholas Lee, Shuo Yang, Christopher Chou, Banghua Zhu, Lianmin Zheng, Kurt Keutzer, et al. S-lora: Serving thousands of concurrent lora adapters. arXiv preprint arXiv:2311.03285, 2023
arXiv 2023
-
[6]
Dora: Weight-decomposed low-rank adaptation
Shih-Yang Liu, Chien-Yi Wang, Hongxu Yin, Pavlo Molchanov, Yu-Chiang Frank Wang, Kwang-Ting Cheng, and Min-Hung Chen. Dora: Weight-decomposed low-rank adaptation. arXiv preprint arXiv:2402.09353, 2024
arXiv 2024
-
[7]
Vera: Vector-based random matrix adaptation
Dawid J Kopiczko, Tijmen Blankevoort, and Yuki M Asano. Vera: Vector-based random matrix adaptation. arXiv preprint arXiv:2310.11454, 2023
arXiv 2023
-
[8]
Qlora: Efficient finetuning of quantized llms
Tim Dettmers, Artidoro Pagnoni, Ari Holtzman, and Luke Zettlemoyer. Qlora: Efficient finetuning of quantized llms. Advances in Neural Information Processing Systems, 36, 2024
2024
Show all 46 references
-
[9]
Initialization and regular- ization of factorized neural layers
Mikhail Khodak, Neil A Tenenholtz, Lester Mackey, and Nicolo Fusi. Initialization and regular- ization of factorized neural layers. In International Conference on Learning Representations, 2021
2021
-
[10]
On the initialisation of wide low-rank feedforward neural networks
Thiziri Nait Saada and Jared Tanner. On the initialisation of wide low-rank feedforward neural networks. arXiv preprint arXiv:2301.13710, 2023
2023 arXiv
-
[11]
Exploring low rank training of deep neural networks
Siddhartha Rao Kamalakara, Acyr Locatelli, Bharat Venkitesh, Jimmy Ba, Yarin Gal, and Aidan N Gomez. Exploring low rank training of deep neural networks. arXiv preprint arXiv:2209.13569, 2022
2022 arXiv
-
[12]
Relora: High-rank training through low-rank updates
Vladislav Lialin, Sherin Muckatira, Namrata Shivagunde, and Anna Rumshisky. Relora: High-rank training through low-rank updates. In International Conference on Learning Repre- sentations, 2023
2023
-
[13]
From galore to welore: How low-rank weights non-uniformly emerge from low-rank gradients
Ajay Jaiswal, Lu Yin, Zhenyu Zhang, Shiwei Liu, Jiawei Zhao, Yuandong Tian, and Zhangyang Wang. From galore to welore: How low-rank weights non-uniformly emerge from low-rank gradients. arXiv preprint arXiv:2407.11239, 2024
2024 arXiv
-
[14]
Investigating low-rank training in transformer language models: Efficiency and scaling analysis
Xiuying Wei, Skander Moalla, Razvan Pascanu, and Caglar Gulcehre. Investigating low-rank training in transformer language models: Efficiency and scaling analysis. CoRR, 2024
2024
-
[15]
Full-rank no more: Low-rank weight training for modern speech recognition models
Adriana Fernandez-Lopez, Shiwei Liu, Lu Yin, Stavros Petridis, and Maja Pantic. Full-rank no more: Low-rank weight training for modern speech recognition models. In ICASSP 2025-2025 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), pages 1–5. I...
2025
-
[16]
Galore: Memory-efficient llm training by gradient low-rank projection
Jiawei Zhao, Zhenyu Zhang, Beidi Chen, Zhangyang Wang, Anima Anandkumar, and Yuandong Tian. Galore: Memory-efficient llm training by gradient low-rank projection. arXiv preprint arXiv:2403.03507, 2024. 10
2024 arXiv
-
[17]
Fira: Can we achieve full-rank training of llms under low-rank constraint? arXiv preprint arXiv:2410.01623, 2024
Xi Chen, Kaituo Feng, Changsheng Li, Xunhao Lai, Xiangyu Yue, Ye Yuan, and Guoren Wang. Fira: Can we achieve full-rank training of llms under low-rank constraint? arXiv preprint arXiv:2410.01623, 2024
2024
-
[18]
Apollo: Sgd-like memory, adamw-level performance
Hanqing Zhu, Zhenyu Zhang, Wenyan Cong, Xi Liu, Sem Park, Vikas Chandra, Bo Long, David Z Pan, Zhangyang Wang, and Jinwon Lee. Apollo: Sgd-like memory, adamw-level performance. arXiv preprint arXiv:2412.05270, 2024
2024 arXiv
-
[19]
Q-galore: Quantized galore with int4 projection and layer-adaptive low-rank gradients
Zhenyu Zhang, Ajay Jaiswal, Lu Yin, Shiwei Liu, Jiawei Zhao, Yuandong Tian, and Zhangyang Wang. Q-galore: Quantized galore with int4 projection and layer-adaptive low-rank gradients. arXiv preprint arXiv:2407.08296, 2024
2024 arXiv
-
[20]
SLTrain: a sparse plus low rank approach for parameter and memory efficient pretraining
Andi Han, Jiaxiang Li, Wei Huang, Mingyi Hong, Akiko Takeda, Pratik Jawanpuria, and Bamdev Mishra. SLTrain: a sparse plus low rank approach for parameter and memory efficient pretraining. In The Thirty-eighth Annual Conference on Neural Information Processing Systems, 2024
2024
-
[21]
Losparse: Structured compression 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 compression of large language models based on low-rank and sparse approximation. In International Conference on Machine Learning, pages 20336–20350. PMLR, 2023
2023
-
[22]
Dynamic low-rank sparse adaptation for large language models
Weizhong Huang, Yuxin Zhang, Xiawu Zheng, Yang Liu, Jing Lin, Yiwu Yao, and Ron- grong Ji. Dynamic low-rank sparse adaptation for large language models. arXiv preprint arXiv:2502.14816, 2025
2025 arXiv
-
[23]
Sparse low-rank adaptation of pre-trained language models
Ning Ding, Xingtai Lv, Qiaosen Wang, Yulin Chen, Bowen Zhou, Zhiyuan Liu, and Maosong Sun. Sparse low-rank adaptation of pre-trained language models. arXiv preprint arXiv:2311.11696, 2023
2023 arXiv
-
[24]
Pissa: Principal singular values and singular vectors adaptation of large language models
Fanxu Meng, Zhaohui Wang, and Muhan Zhang. Pissa: Principal singular values and singular vectors adaptation of large language models. Advances in Neural Information Processing Systems, 37:121038–121072, 2025
2025
-
[25]
Lora-xs: Low-rank adaptation with extremely small number of parameters
Klaudia Bałazy, Mohammadreza Banaei, Karl Aberer, and Jacek Tabor. Lora-xs: Low-rank adaptation with extremely small number of parameters. arXiv preprint arXiv:2405.17604, 2024
2024 arXiv
-
[26]
Nora: Nested low-rank adaptation for efficient fine-tuning large models
Cheng Lin, Lujun Li, Dezhi Li, Jie Zou, Wei Xue, and Yike Guo. Nora: Nested low-rank adaptation for efficient fine-tuning large models. arXiv preprint arXiv:2408.10280, 2024
2024 arXiv
-
[27]
Parameter efficient fine-tuning via explained variance adaptation
Fabian Paischer, Lukas Hauzenberger, Thomas Schmied, Benedikt Alkin, Marc Peter Deisenroth, and Sepp Hochreiter. Parameter efficient fine-tuning via explained variance adaptation. arXiv preprint arXiv:2410.07170, 2024
2024
-
[28]
Edora: Efficient weight-decomposed low-rank adaptation via singular value decomposition
Hamid Nasiri and Peter Garraghan. Edora: Efficient weight-decomposed low-rank adaptation via singular value decomposition. arXiv preprint arXiv:2501.12067, 2025
2025 arXiv
-
[29]
Qlora: Efficient finetuning of quantized llms
Tim Dettmers, Artidoro Pagnoni, Ari Holtzman, and Luke Zettlemoyer. Qlora: Efficient finetuning of quantized llms. Advances in neural information processing systems, 36:10088– 10115, 2023
2023
-
[30]
Qa-lora: Quantization-aware low-rank adaptation of large language models
Yuhui Xu, Lingxi Xie, Xiaotao Gu, Xin Chen, Heng Chang, Hengheng Zhang, Zhengsu Chen, Xiaopeng Zhang, and Qi Tian. Qa-lora: Quantization-aware low-rank adaptation of large language models. arXiv preprint arXiv:2309.14717, 2023
2023 arXiv
-
[31]
Longlora: Efficient fine-tuning of long-context large language models
Yukang Chen, Shengju Qian, Haotian Tang, Xin Lai, Zhijian Liu, Song Han, and Jiaya Jia. Longlora: Efficient fine-tuning of long-context large language models. arXiv preprint arXiv:2309.12307, 2023
2023 arXiv
-
[32]
Pixelated butterfly: Simple and efficient sparse training for neural network models
Beidi Chen, Tri Dao, Kaizhao Liang, Jiaming Yang, Zhao Song, Atri Rudra, and Christopher Re. Pixelated butterfly: Simple and efficient sparse training for neural network models. In International Conference on Learning Representations, 2022. 11
2022
-
[33]
Oats: Outlier-aware pruning through sparse and low rank decomposition
Stephen Zhang and Vardan Papyan. Oats: Outlier-aware pruning through sparse and low rank decomposition. arXiv preprint arXiv:2409.13652, 2024
2024 arXiv
-
[34]
Robust principal component analysis? Journal of the ACM (JACM), 58(3):1–37, 2011
Emmanuel J Candès, Xiaodong Li, Yi Ma, and John Wright. Robust principal component analysis? Journal of the ACM (JACM), 58(3):1–37, 2011
2011
-
[35]
Hassle- free: A unified framework for sparse plus low-rank matrix decomposition for llms
Mehdi Makni, Kayhan Behdin, Zheng Xu, Natalia Ponomareva, and Rahul Mazumder. Hassle- free: A unified framework for sparse plus low-rank matrix decomposition for llms. arXiv preprint arXiv:2502.00899, 2025
2025 arXiv
-
[36]
Parameter and memory efficient pretraining via low-rank riemannian optimization
Zhanfeng Mo, Long-Kai Huang, and Sinno Jialin Pan. Parameter and memory efficient pretraining via low-rank riemannian optimization. In The Thirteenth International Conference on Learning Representations, 2025
2025
-
[37]
Cola: Compute-efficient pre-training of llms via low-rank activa- tion
Ziyue Liu, Ruijie Zhang, Zhengyang Wang, Zi Yang, Paul Hovland, Bogdan Nicolae, Franck Cappello, and Zheng Zhang. Cola: Compute-efficient pre-training of llms via low-rank activa- tion. arXiv preprint arXiv:2502.10940, 2025
2025
-
[38]
Delving deep into rectifiers: Surpassing human-level performance on imagenet classification
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Delving deep into rectifiers: Surpassing human-level performance on imagenet classification. In Proceedings of the IEEE international conference on computer vision, pages 1026–1034, 2015
2015
-
[39]
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
2024 arXiv
-
[40]
Language model compression with weighted low-rank factorization
Yen-Chang Hsu, Ting Hua, Sungen Chang, Qian Lou, Yilin Shen, and Hongxia Jin. Language model compression with weighted low-rank factorization. In International Conference on Learning Representations, 2022
2022
-
[41]
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
2020
-
[42]
Llama: Open and efficient foundation language models
Hugo Touvron, Thibaut Lavril, Gautier Izacard, Xavier Martinet, Marie-Anne Lachaux, Timo- thée Lacroix, Baptiste Rozière, Naman Goyal, Eric Hambro, Faisal Azhar, et al. Llama: Open and efficient foundation language models. arXiv preprint arXiv:2302.13971, 2023
2023 arXiv
-
[43]
Root mean square layer normalization
Biao Zhang and Rico Sennrich. Root mean square layer normalization. Advances in Neural Information Processing Systems, 32, 2019
2019
-
[44]
Glu variants improve transformer
Noam Shazeer. Glu variants improve transformer. arXiv preprint arXiv:2002.05202, 2020
2002 arXiv
-
[45]
Roberta: A robustly optimized bert pretraining approach
Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke Zettlemoyer, and Veselin Stoyanov. Roberta: A robustly optimized bert pretraining approach. arXiv preprint arXiv:1907.11692, 2019
1907 arXiv
-
[46]
Glue: A multi-task benchmark and analysis platform for natural language understanding
Alex Wang, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel R Bowman. Glue: A multi-task benchmark and analysis platform for natural language understanding. arXiv preprint arXiv:1804.07461, 2018. A Appendix Additional results for scaling performance To furthe...
2018 arXiv
Reviewed August 15, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.