OpenDeltaMirror/README.md

189 lines
7.9 KiB
Markdown
Raw Normal View History

2022-02-14 21:19:03 +08:00
<div align="center">
<img src="https://s4.ax1x.com/2022/02/14/Hy7lAf.png" width="350px">
2022-06-05 20:13:27 +08:00
**An Open-Source Framework for Paramter-Efficient Tuning (Delta Tuning).**
2022-02-14 21:19:03 +08:00
------
<p align="center">
<a href="#Overview">Overview</a>
<a href="#installation">Installation</a>
2022-02-14 23:11:04 +08:00
<a href="https://opendelta.readthedocs.io/en/latest/notes/usage.html">Basic Usage</a>
2022-02-14 21:19:03 +08:00
<a href="https://opendelta.readthedocs.io/">Docs</a>
2022-02-14 23:13:20 +08:00
<a href="https://docs.google.com/spreadsheets/d/1BIVa8ocAPga-u7rBOXLYaTfaJSjI1dWfwohmLjmFDrY/edit?usp=sharing">Performance</a>
2022-02-14 21:19:03 +08:00
</p>
</div>
2022-02-14 23:13:20 +08:00
![version](https://img.shields.io/badge/version-0.0.1-blue)
2022-02-14 21:19:03 +08:00
2022-02-16 22:57:21 +08:00
2022-02-14 21:19:03 +08:00
## Overview
2022-08-23 01:21:55 +08:00
OpenDelta is a toolkit for parameter-efficient tuning methods (we dub it as *delta tuning*), by which users could flexibly assign (or add) a small amount parameters to update while keeping the most paramters frozen. By using OpenDelta, users could easily implement prefix-tuning, adapters, Lora, or any other types of delta tuning with preferred PTMs.
2022-02-14 21:19:03 +08:00
2022-10-14 23:15:38 +08:00
- Our repo is tested on Python 3.=-0 and PyTorch 1.9.0. Lower version may also be supported.
2022-02-14 23:11:04 +08:00
2022-02-15 13:51:57 +08:00
- **A demo of using Opendelta to modify the PLM (E.g., BART).**
2022-02-15 10:47:56 +08:00
![How PLM changes using Delta-tuning](docs/source/imgs/demo.gif)
2022-02-15 00:07:25 +08:00
2022-10-10 16:30:01 +08:00
## News
2022-10-14 23:53:27 +08:00
- **2022.10.14** Release v0.3.0. We make the usage of default configurations of each delta tuning methods (i.e., the position they are attached) more friendly! If a custom model has our supported models as submodules inside, the default configuration is also available. Other key changes can be seen in [Update Log](https://opendelta.readthedocs.io/en/latest/notes/update.html#version-0-3-0)
- **2022.10.10** Merge a long-developed branch v0.2.4 into the master branch. Key updates are (1) the an example unifying the delta tuning paradigm and the prompt-tuning paradigm; (2) and support for [Delta Center](https://www.openbmb.org/toolKits/deltacenter), whose webpage is still under construction. Details can be seen in [Update Log](https://opendelta.readthedocs.io/en/latest/notes/update.html#version-0-2-4)
2022-10-14 23:15:38 +08:00
- **2022.03.24** We notice several bugs in Soft Prompt Tuning and Prefix Tuning, mainly due to their need to customize attention ids, token_type_ids, we are fixing it! Currently, please use the other methods since they are stabler and better in performance.
- **2022.03.20** Add a [colab example](https://colab.research.google.com/drive/1uAhgAdc8Qr42UKYDlgUv0f7W1-gAFwGo?usp=sharing) to illustrate efficient training and space-saving multitask-serving.
- **2022.03.20** A new pip version released.
- **2022.02.16** Support [regular expression](https://opendelta.readthedocs.io/en/latest/notes/namebasedaddr.html#regexexpr) in named-based addressing.
2022-02-16 22:57:21 +08:00
2022-02-14 21:19:03 +08:00
## Installation
create a virtualenv (optional)
```shell
conda create -n opendelta_env python=3.8
conda activate opendelta_env
```
### Using Pip
2022-02-14 23:11:04 +08:00
Install OpenDelta using pip as follows:
2022-02-14 21:19:03 +08:00
```shell
pip install opendelta
```
To play with the latest features, you can also install OpenDelta from the source.
### Build from Source
```shell
git clone https://github.com/thunlp/OpenDelta.git
cd OpenDelta
```
#### Option 1: If you won't modify the code, run
```shell
python setup.py install
```
2022-02-16 22:57:21 +08:00
#### Option 2: If you want to modify the code or keep the repo updated by git clone, run
2022-02-14 21:19:03 +08:00
```shell
python setup.py develop
```
2022-10-10 16:30:01 +08:00
#### Tips
2022-10-14 23:15:38 +08:00
- If you want to use mirror for installing the packages, please change the `index_url` in [setup.cfg](setup.cfg)
2022-10-10 16:30:01 +08:00
- If you encounter network error using setup.py, please firstly install the dependencies via
2022-07-03 10:10:18 +08:00
```shell
pip install -r requirements.txt && python setup.py develop
```
2022-02-14 23:23:01 +08:00
## Must Try
The following codes and comments walk you through the key functionality of OpenDelta. It is also in [must_try.py](https://github.com/thunlp/OpenDelta/tree/main/examples/unittest/must_try.py)
2022-02-14 23:23:01 +08:00
```python
2022-10-16 21:36:21 +08:00
# use tranformers as usual.
from transformers import AutoModelForSeq2SeqLM, AutoTokenizer
2022-07-04 00:14:01 +08:00
t5 = AutoModelForSeq2SeqLM.from_pretrained("t5-large")
2022-10-16 21:36:21 +08:00
t5_tokenizer = AutoTokenizer.from_pretrained("t5-large")
2022-10-16 21:41:15 +08:00
# A running example
2022-10-16 21:36:21 +08:00
inputs_ids = t5_tokenizer.encode("Is Harry Poter wrtten by JKrowling", return_tensors="pt")
t5_tokenizer.decode(t5.generate(inputs_ids)[0])
# >>> '<pad><extra_id_0>? Is it Harry Potter?</s>'
# use existing delta models
from opendelta import AutoDeltaModel, AutoDeltaConfig
# use existing delta models from DeltaCenter
delta = AutoDeltaModel.from_finetuned("thunlp/Spelling_Correction_T5_LRAdapter_demo", backbone_model=t5)
2022-10-16 21:41:15 +08:00
# freeze the whole backbone model except the delta models.
2022-10-16 21:36:21 +08:00
delta.freeze_module()
2022-10-16 21:41:15 +08:00
# visualize the change
2022-02-14 23:23:01 +08:00
delta.log()
2022-10-16 21:36:21 +08:00
t5_tokenizer.decode(t5.generate(inputs_ids)[0])
# >>> <pad> Is Harry Potter written by JK Rowling?</s>
2022-10-16 21:41:15 +08:00
# Now save merely the delta models, not the whole backbone model, to tmp/
2022-10-16 21:36:21 +08:00
delta.save_finetuned(".tmp")
2022-10-16 21:41:15 +08:00
import os; os.listdir(".tmp")
2022-10-16 21:36:21 +08:00
# >>> The state dict size is 1.443 MB
# >>> We encourage users to push their final and public models to delta center to share them with the community!
# reload the model from local url and add it to pre-trained T5.
t5 = AutoModelForSeq2SeqLM.from_pretrained("t5-large")
delta1 = AutoDeltaModel.from_finetuned(".tmp", backbone_model=t5)
import shutil; shutil.rmtree(".tmp") # don't forget to remove the tmp files.
t5_tokenizer.decode(t5.generate(inputs_ids)[0])
# >>> <pad> Is Harry Potter written by JK Rowling?</s>
# detach the delta models, the model returns to the unmodified status.
delta1.detach()
t5_tokenizer.decode(t5.generate(inputs_ids)[0])
# >>> '<pad><extra_id_0>? Is it Harry Potter?</s>'
2022-10-16 21:41:15 +08:00
# use default configuration for cunstomized wrapped models which have PLMs inside. This is a common need for users.
2022-10-16 21:36:21 +08:00
import torch.nn as nn
class WrappedModel(nn.Module):
def __init__(self, inner_model):
super().__init__()
self.inner = inner_model
def forward(self, *args, **kwargs):
return self.inner(*args, **kwargs)
wrapped_model = WrappedModel(WrappedModel(t5))
# say we use LoRA
delta_config = AutoDeltaConfig.from_dict({"delta_type":"lora"})
delta2 = AutoDeltaModel.from_config(delta_config, backbone_model=wrapped_model)
delta2.log()
# >>> root
# -- inner
# -- inner
# ...
# ... lora_A:[8,1024], lora_B:[1024,8]
delta2.detach()
# use a not default configuration
# say we add lora to the last four layer of the decoder of t5, with lora rank=5
delta_config3 = AutoDeltaConfig.from_dict({"delta_type":"lora", "modified_modules":["[r]decoder.*((20)|(21)|(22)|(23)).*DenseReluDense\.wi"], "lora_r":5})
delta3 = AutoDeltaModel.from_config(delta_config3, backbone_model=wrapped_model)
delta3.log()
2022-02-14 23:23:01 +08:00
```
2022-02-14 21:19:03 +08:00
2022-10-16 21:36:21 +08:00
## Verified Default Configurations
2022-02-14 21:19:03 +08:00
2022-02-14 23:47:40 +08:00
- **You can try to use OpenDelta on *any* backbone models based on PyTorch.**
- However, with small chances thatThe interface of the submodules of the backbone model is not supported. Therefore we verified some commonly
2022-02-14 21:19:03 +08:00
used models that OpenDelta are sure to support.
2022-02-14 23:47:40 +08:00
- We will keep testing more and more emerging models.
2022-02-14 21:19:03 +08:00
2022-02-14 23:47:40 +08:00
- Pull requests are welcomed when you successfully apply OpenDelta on your own backbone model.
2022-02-14 21:19:03 +08:00
| | Lora | Bias<br>Tuning | Adapter<br>Houstbly | Adapter<br>Preffier | Adapter<br>Drop | Adapater<br> Low-Rank | Compactor |Prefix<br> Tuning | Prompt <br> Tuning |
| --------- | ---- | ---- | ---- | ---- | ---- | ---- | ---- | ----- | ----- |
| T5 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| GPT-2 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | |
| BART | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | |
| DistilBERT | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | |
| RoBERTa | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | |
| BERT | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| T5-3b(parallel)| ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| Deberta-v2 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | | |
| CTRL | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | | |
2022-10-10 16:30:01 +08:00
2022-10-14 23:15:38 +08:00
2022-03-24 15:41:25 +08:00