PEMA: An Offsite-Tunable Plug-in External Memory Adaptation for Language Models
HyunJin Kim, Young Jin Kim, JinYeong Bak
TL;DR
PEMA tackles privacy-constrained fine-tuning of proprietary PLMs by introducing an offsite-tunable PEFT method that builds an external memory of PLM context representations and employs a LoRA-like bottleneck adapter. Training uses a two-phase process to preserve PLM knowledge while learning task-specific next-token predictions, and inference blends PLM and PEMA outputs with Gradual Unrolling to emphasize task-specific generation early and context-rich language modeling later. Empirical results on WMT22 EN→DE and GYAFC demonstrate strong memory and latency efficiency alongside improved translation and formality-transfer quality, outperforming several baselines and showing the value of the Gradual Unrolling and reconstruction components. The work highlights a viable path for privacy-preserving, offsite-tunable adaptation of confidential PLMs and provides actionable guidance on hyperparameters and component contributions for future research.
Abstract
Pre-trained language models (PLMs) show impressive performance in various downstream NLP tasks. However, pre-training large language models demands substantial memory and training compute. Furthermore, due to the substantial resources required, many PLM weights are confidential. Consequently, users are compelled to share their data with model owners for fine-tuning specific tasks. To overcome the limitations, we introduce Plug-in External Memory Adaptation (PEMA), a Parameter-Efficient Fine-Tuning (PEFT) method, enabling PLM fine-tuning without requiring access to all the weights. PEMA integrates with context representations from test data during inference to perform downstream tasks. It uses external memory to store PLM-generated context representations mapped with target tokens. Our method utilizes weight matrices of LoRA-like bottlenecked adapter in the PLM's final layer to enhance efficiency. Our approach also includes Gradual Unrolling, a novel interpolation strategy to improve generation quality. We validate PEMA's effectiveness through experiments on syntactic and real datasets for machine translation and style transfer. Our findings show that PEMA outperforms other PEFT approaches in memory and latency efficiency for training, and also excels in maintaining sentence meaning and generating appropriate language and styles.
