The official implementation for the ACL 2024 paper SAPT: A Shared Attention Framework for Parameter-Efficient Continual Learning of Large Language Models.
- Python 3.10.12
- PyTorch 2.1.0
- Transformers 4.30.2
- CUDA 12.2
The train/dev/test data from SuperNI and Long Sequence Benchmark is placed in /CL_Benchmark
.
And the generated pseudo data points are in /generated_data
.
First run gen_script_{benchmark}_{model}.py
to obtain the training script.
For example, to implement T5 model on the SuperNI benchmark:
python gen_script_superni_t5.py
Then run the resulting script to start the training process.
To calculate metrics of Average Performance (AP), Forgetting Rate (F.Ra), Forward Transfer (FWT) and Backward Transfer (BWT):
python score.py your_result_path single_result_path
If you find our work useful for your research, please kindly cite our paper as follows:
@article{zhao2024sapt,
title={Sapt: A shared attention framework for parameter-efficient continual learning of large language models},
author={Zhao, Weixiang and Wang, Shilong and Hu, Yulin and Zhao, Yanyan and Qin, Bing and Zhang, Xuanyu and Yang, Qing and Xu, Dongliang and Che, Wanxiang},
journal={arXiv preprint arXiv:2401.08295},
year={2024}
}
The code of this repository partly relies on O-LoRA and I would like to show my sincere gratitude to authors of it.