MCPcopy Index your code
hub / github.com/NVlabs/DoRA

github.com/NVlabs/DoRA @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
3,112 symbols 12,116 edges 295 files 565 documented · 18% updated 3mo ago★ 98220 open issues

Browse by type

Functions 2,507 Types & classes 532 Endpoints 73
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

DoRA: Weight-Decomposed Low-Rank Adaptation [ICML2024 (Oral)]

The Official PyTorch implementation of DoRA: Weight-Decomposed Low-Rank Adaptation [ICML2024 (Oral, acceptance rate: 1.5%)].

Star on GitHub

Shih-Yang Liu*, Chien-Yi Wang, Hongxu Yin, Pavlo Molchanov, Yu-Chiang Frank Wang, Kwang-Ting Cheng, Min-Hung Chen

(*Work done during the internship at NVIDIA Research)

[Paper] [Website] [NV Blog] [BibTeX]

DoRA decomposes the pre-trained weight into two components, magnitude and direction, for fine-tuning, specifically employing LoRA for directional updates to minimize the number of trainable parameters efficiently. By employing DoRA, we enhance both the learning capacity and training stability of LoRA while avoiding any additional inference overhead. DoRA consistently outperforms LoRA on fine-tuning LLaMA, LLaVA, and VL-BART on various downstream tasks, such as commonsense reasoning, visual instruction tuning, and image/video-text understanding.

For business inquiries, please visit our website and submit the form: NVIDIA Research Licensing.

💥 News 💥

  • [07.02.2024] 🔥🔥 The official NVIDIA Tech Blog of DoRA is released HERE!!
  • [06.02.2024] 🔥🔥 DoRA is selected as an Oral paper in ICML 2024!!
  • [05.24.2024] 🔥🔥 Add step-by-step instructions on how to reproduce the QDoRA/FSDP results, see /QDoRA
  • [05.02.2024] 🔥🔥 DoRA is accepted to ICML 2024!! See you in Vienna!!
  • [04.27.2024] 🔥🔥 We have added the source code and the DoRA weight for finetuning LLaMA2-7B and LLaMA3-8B on commonsense reasoning tasks!
  • [04.22.2024] 🔥🔥 Check out an awesome blog post FSDP/QDoRA from Answer.ai which shows that QDoRA significantly outperforms QLoRA and even edges out full finetuning!
  • [04.18.2024] 🔥🔥 We have released the source code and the DoRA weight for reproducing the results in our paper!
  • [03.20.2024] 🔥🔥 DoRA is now fully supported by the HuggingFace PEFT package and can now support Linear, Conv1d, and Conv2d layers, as well as linear layers quantized with bitsandbytes!

Useful Links

  • An amazing tutorial about implementing DoRA from scratch by Sebastian Raschka, see https://magazine.sebastianraschka.com/p/lora-and-dora-from-scratch
  • An amazing blog post from Answer.AI about QDoRA/FSDP which allows finetuning LLMs on consumer-level GPUs, see https://www.answer.ai/posts/2024-04-26-fsdp-qdora-llama3.html

Quick Start and some tricks regarding finetuning with DoRA

HuggingFace PEFT

DoRA is now supported by the Huggingface PEFT package. You can install the PEFT package using

pip install git+https://github.com/huggingface/peft.git -q

After PEFT is installed, you can simply set the use_dora argument of LoraConfig() to True for applying DoRA.

An example could be as follows:

from peft import LoraConfig

# Initialize DoRA configuration
config = (
    use_dora=True, ...
)

Please refer to the official documentation for more details.

HuggingFace Diffusers

You can also toy with DoRA on finetuning diffusion models. See huggingface/diffusers. Another good tutorial would be this Colab notebook from Linoy Tsaban.

In general, DoRA finetuning on diffusion models is still experimental and is likely to require different hyperparameter values to perform best compared to LoRA.

Specifically, people have noticed 2 differences to take into account in your training: 1. LoRA seem to converge faster than DoRA (so a set of parameters that may lead to overfitting when training a LoRA may be working well for a DoRA) 2. DoRA quality superior to LoRA especially in lower ranks: The difference in quality of DoRA of rank 8 and LoRA of rank 8 appears to be more significant than when training ranks of 32 or 64 for example.

Some DoRA vs. LoRA diffusion finetuning results

  • Example From Linoy Tsaban(Images generated by DoRA are on the left and LoRA on the right):

DoRA hyperparameters settings

[!NOTE] 💡 While fine-tuning with DoRA, utilizing the configuration of LoRA can already achieve better results most of the time, achieving optimal performance compared to LoRA still requires adjustments to the hyperparameters.

We suggest starting with a slightly lower learning rate than that of LoRA, and users may also experiment with varying LoRA dropout ratios.

User may also start with half of the rank of the LoRA configuration which oftentimes can already result in comparable or even superior accuracy compared to that of LoRA.

Reproducing the results in the paper

This repo contains four directories:

./commonsense_reasoning contains the code to finetune LLaMA-7B/13B using DoRA on the commonsense reasoning tasks. This directory is modified based on LLM-Adapter.

./instruction_tuning_dvora contains the code to finetune LLaMA-7B and LLaMA2-7B using DoRA and DVoRA (DoRA+VeRA) with the cleaned Alpaca instruction tuning dataset. This directory is modified based on VeRA.

./image_video_text_understanding contains the code to finetune VL-BART using DoRA for the image/video-text understanding tasks. This directory is modified based on VL-Adapter.

./visual_instruction_tuning contains the code to finetune LLaVA-1.5-7B on the visual instruction tuning tasks with DoRA. This directory is modified based on LLaVA.

DoRA vs LoRA on the commonsense reasoning tasks

Model r BoolQ PIQA SIQA HellaS WinoG ARC-e ARC-c OBQA Average
LLaMA-7B-LoRA 32 67.5 80.8 78.2 83.4 80.4 78.0 62.6 79.1 76.3
LLaMA-7B-DoRA(ours) 16 70.0 82.6 79.7 83.2 80.6 80.6 65.4 77.6 77.5
LLaMA-7B-DoRA(ours) 32 69.7 83.4 78.6 87.2 81.0 81.9 66.2 79.2 78.4
LLaMA2-7B-LoRA 32 69.8 79.9 79.5 83.6 82.6 79.8 64.7 81.0 77.6
LLaMA2-7B-DoRA(ours) 16 72.0 83.1 79.9 89.1 83.0 84.5 71.0 81.2 80.5
LLaMA2-7B-DoRA(ours) 32 71.8 83.7 76.0 89.1 82.6 83.7 68.2 82.4 79.7
LLaMA3-8B-LoRA 32 70.8 85.2 79.9 91.7 84.3 84.2 71.2 79.0 80.8
LLaMA3-8B-DoRA(ours) 16 74.5 88.8 80.3 95.5 84.7 90.1 79.1 87.2 85.0
LLaMA3-8B-DoRA(ours) 32 74.6 89.3 79.9 95.5 85.6 90.5 80.4 85.8 85.2

Star History

Star History Chart

Contact

Shih-Yang Liu: shihyangl@nvidia.com or sliuau@connect.ust.hk

Citation

If you find DoRA useful, please consider giving a star and citation:

@article{liu2024dora,
  title={DoRA: Weight-Decomposed Low-Rank Adaptation},
  author={Liu, Shih-Yang and Wang, Chien-Yi and Yin, Hongxu and Molchanov, Pavlo and Wang, Yu-Chiang Frank and Cheng, Kwang-Ting and Chen, Min-Hung},
  journal={arXiv preprint arXiv:2402.09353},
  year={2024}
}

Licenses

Copyright © 2024, NVIDIA Corporation. All rights reserved.

This work is made available under the NVIDIA Source Code License-NC. Click here to view a copy of this license.

Core symbols most depended-on inside this repo

Shape

Method 1,901
Function 606
Class 532
Route 73

Languages

Python100%
TypeScript1%

Modules by API surface

image_video_text_understanding/VL-T5/inference/modeling_frcnn.py106 symbols
image_video_text_understanding/CLIP-ViL/src/lxrt/modeling.py87 symbols
image_video_text_understanding/VL-T5/src/my_transformers/modeling_t5.py76 symbols
image_video_text_understanding/VL-T5/src/my_transformers/modeling_bart.py65 symbols
image_video_text_understanding/VL-T5/src/modeling_bart.py58 symbols
visual_instruction_tuning/peft/src/peft/tuners/lora.py56 symbols
visual_instruction_tuning/peft/src/peft/peft_model.py48 symbols
visual_instruction_tuning/peft/src/peft/tuners/dora.py44 symbols
visual_instruction_tuning/peft/tests/test_decoder_models.py43 symbols
visual_instruction_tuning/peft/tests/test_encoder_decoder_models.py42 symbols
visual_instruction_tuning/peft/src/peft/tuners/adalora.py40 symbols
image_video_text_understanding/VL-T5/src/clip/model.py40 symbols

For agents

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

⬇ download graph artifact

Ask about this repo answers extend the page