MCPcopy Index your code
hub / github.com/OpenLMLab/LOMO

github.com/OpenLMLab/LOMO @v0.1.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v0.1.1 ↗ · + Follow
159 symbols 619 edges 21 files 55 documented · 35%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

English | 中文

This is the implementation for Full Parameter Fine-Tuning for Large Language Models with Limited Resources and AdaLomo: Low-memory Optimization with Adaptive Learning Rate.

News

  • LOMO and AdaLomo were integrated in transformers and accelerate.
  • PyPI package lomo-optim was released.
  • LOMO and AdaLomo were integrated in CoLLiE library, which supports Collaborative Training of Large Language Models in an Efficient Way.

Usage

You can install lomo-optim from PyPI using pip.

pip install lomo-optim

Then, import Lomo or AdaLomo.

from lomo_optim import Lomo
from lomo_optim import AdaLomo

The usage of Lomo and AdaLomo is similar but not the same as PyTorch's optimizers (example). We recommend to use AdaLomo without gradnorm to get better performance and higher throughput.

LOMO: LOw-Memory Optimization

In this work, we propose a new optimizer, LOw-Memory Optimization (LOMO), which fuses the gradient computation and the parameter update in one step to reduce memory usage. Our approach enables the full parameter fine-tuning of a 7B model on a single RTX 3090, or a 65B model on a single machine with 8×RTX 3090, each with 24GB memory.

LOMO

Implementation

Hook function Our implementation relies on injecting hook functions into PyTorch's backward pass. As depicted in the figure, we register a customized hook function for each parameter. When the gradient of a parameter is computed (prior to writing it to the .grad attribute), its corresponding hook function is invoked. For more information about hook functions and the backward pass of the autograd graph, please refer to PyTorch's documentation. In summary, during the backward pass, we go through a tensor and its grad_fn, write the gradient into the .grad attribute, and then pass to the next tensor.

Our customized hook function scans all the parameters, updating a parameter if its .grad attribute is not empty, and then clears and frees the .grad attribute. Since the hook function for a parameter is called before its .grad attribute is set, the .grad attribute of the last parameter in the autograd graph is not ready when the last hook function is invoked. Therefore, we perform an additional scan to update the last parameter.

The code for LOMO is in lomo folder.

AdaLomo: Low-memory Optimization with Adaptive Learning Rate

In this work, we examined the distinctions between the LOMO and Adam optimization techniques and introduce AdaLomo, which provides an adaptive learning rate for each parameter and utilizes grouped update normalization while maintaining memory efficiency. AdaLomo achieves results comparable to AdamW in both instruction-tuning and further pre-training with less memory footprint.

AdaLomo

The code for AdaLomo is in adalomo folder.

Citation

@article{lv2023full,
  title={Full Parameter Fine-tuning for Large Language Models with Limited Resources},
  author={Lv, Kai and Yang, Yuqing and Liu, Tengxiao and Gao, Qinghui and Guo, Qipeng and Qiu, Xipeng},
  journal={arXiv preprint arXiv:2306.09782},
  year={2023}
}
@article{lv2023adalomo,
  title={AdaLomo: Low-memory Optimization with Adaptive Learning Rate},
  author={Lv, Kai and Yan, Hang and Guo, Qipeng and Lv, Haijun and Qiu, Xipeng},
  journal={arXiv preprint arXiv:2310.10195},
  year={2023}
}

Core symbols most depended-on inside this repo

print
called by 46
lomo/log/print.py
_add_rank_info
called by 11
lomo/log/logger.py
log
called by 7
lomo/src/utils.py
set_summary
called by 6
lomo/src/utils.py
eval
called by 6
lomo/src/lomo_trainer.py
eval
called by 6
lomo/src/lomo_lora_trainer.py
update
called by 5
adalomo/further-pretraining/evaluate.py
info
called by 4
lomo/log/logger.py

Shape

Method 111
Class 26
Function 22

Languages

Python100%

Modules by API surface

lomo/log/logger.py24 symbols
lomo/src/utils.py20 symbols
lomo/src/prompts.py14 symbols
lomo/src/lomo_lora_trainer.py14 symbols
lomo_optim/lomo.py12 symbols
lomo/src/lomo_trainer.py12 symbols
lomo/src/mydatasets.py11 symbols
lomo_optim/adalomo.py9 symbols
lomo/log/handler.py9 symbols
adalomo/further-pretraining/evaluate.py9 symbols
lomo/src/lomo.py7 symbols
lomo/src/arguments.py3 symbols

For agents

$ claude mcp add LOMO \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page