paper-with-me

Papers

Low-rank Momentum Factorization for Memory Efficient Training

2025-07-10 · Pouria Mahdavinia, Mehrdad Mahdavi arxiv

Fine-tuning large foundation models presents significant memory challenges due to stateful optimizers like AdamW, often requiring several times more GPU memory than inference. While memory-efficient methods like parameter-efficient fine-tuning (e.g., LoRA) and optimizer state compression exist, recent approaches like GaLore bridge these by using low-rank gradient projections and subspace moment accumulation. However, such methods may struggle with fixed subspaces or computationally costly offline resampling (e.g., requiring full-matrix SVDs). We propose Momentum Factorized SGD (MoFaSGD), which maintains a dynamically updated low-rank SVD representation of the first-order momentum, closely approximating its full-rank counterpart throughout training. This factorization enables a memory-efficient fine-tuning method that adaptively updates the optimization subspace at each iteration. Crucially, MoFaSGD leverages the computed low-rank momentum factors to perform efficient spectrally normalized updates, offering an alternative to subspace moment accumulation. We establish theoretical convergence guarantees for MoFaSGD, proving it achieves an optimal rate for non-convex stochastic optimization under standard assumptions. Empirically, we demonstrate MoFaSGD's effectiveness on large language model alignment benchmarks, achieving a competitive trade-off between memory reduction (comparable to LoRA) and performance compared to state-of-the-art low-rank optimization methods. Our implementation is available at https://github.com/pmahdavi/MoFaSGD.

📄 PDF Abstract BibTeX arXiv:2507.08091

Code (0)

등록된 구현이 없습니다.

Tasks

parameter-efficient fine-tuningStochastic Optimization

Similar Papers 제목 키워드 기반

SMMF: Square-Matricized Momentum Factorization for Memory-Efficient Optimization

2024-12-12 · Kwangryeol Park, Seulki Lee

We propose SMMF (Square-Matricized Momentum Factorization), a memory-efficient optimizer that reduces the memory requirement of the widely used adaptive learning rate optimizers, such as Adam, by up to 96%. SMMF enables …

Alada: Alternating Adaptation of Momentum Method for Memory-Efficient Matrix Optimization

2025-12-15 · Xiaoyu He, Yu Cai, Jin Jia, Canxi Huang 외 arxiv

This work proposes Alada, an adaptive momentum method for stochastic optimization over large-scale matrices. Alada employs a rank-one factorization approach to estimate the second moment of gradients, where factors are u…

Stochastic Optimization

MLorc: Momentum Low-rank Compression for Large Language Model Adaptation

2025-06-02 · Wei Shen, Zhang Yaxiang, Minhui Huang, Mengfan Xu 외

With increasing size of large language models (LLMs), full-parameter fine-tuning imposes substantial memory demands. To alleviate this, we propose a novel memory-efficient training paradigm called Momentum Low-rank compr…

Language ModelingLanguage ModellingLarge Language ModelLow-rank compression

Memory-Efficient Optimization with Factorized Hamiltonian Descent

2024-06-14 · Son Nguyen, Lizhang Chen, Bo Liu, Qiang Liu

Modern deep learning heavily depends on adaptive optimizers such as Adam and its variants, which are renowned for their capacity to handle model scaling and streamline hyperparameter tuning. However, these algorithms typ…

Scalable Parameter and Memory Efficient Pretraining for LLM: Recent Algorithmic Advances and Benchmarking

2025-05-28 · Athanasios Glentis, Jiaxiang Li, Qiulin Shang, Andi Han 외

Fueled by their remarkable ability to tackle diverse tasks across multiple domains, large language models (LLMs) have grown at an unprecedented rate, with some recent models containing trillions of parameters. This growt…

Benchmarking