paper-with-me

홈 › Papers

DePT: Decomposed Prompt Tuning for Parameter-Efficient Fine-tuning

2023-09-11 · Zhengxiang Shi, Aldo Lipani

Prompt tuning (PT), where a small amount of trainable soft (continuous) prompt vectors is affixed to the input of language models (LM), has shown promising results across various tasks and models for parameter-efficient fine-tuning (PEFT). PT stands out from other PEFT approaches because it maintains competitive performance with fewer trainable parameters and does not drastically scale up its parameters as the model size expands. However, PT introduces additional soft prompt tokens, leading to longer input sequences, which significantly impacts training and inference time and memory usage due to the Transformer's quadratic complexity. Particularly concerning for Large Language Models (LLMs) that face heavy daily querying. To address this issue, we propose Decomposed Prompt Tuning (DePT), which decomposes the soft prompt into a shorter soft prompt and a pair of low-rank matrices that are then optimised with two different learning rates. This allows DePT to achieve better performance while saving substantial memory and time costs compared to vanilla PT and its variants, without changing trainable parameter sizes. Through extensive experiments on 23 natural language processing (NLP) and vision-language (VL) tasks, we demonstrate that DePT outperforms state-of-the-art PEFT approaches, including the full fine-tuning baseline, in some scenarios. Additionally, we empirically show that DEPT grows more efficient as the model size increases. Our further study reveals that DePT integrates seamlessly with parameter-efficient transfer learning in the few-shot learning setting and highlights its adaptability to various model architectures and sizes.

📄 PDF Abstract BibTeX arXiv:2309.05173

Code (2)

zhengxiangshi/dept 공식 구현 pytorch
zhengxiangshi/powerfulpromptft pytorch

Tasks

Few-Shot Learningparameter-efficient fine-tuningTransfer Learning

Similar Papers 제목 키워드 기반

ADePT: Adaptive Decomposed Prompt Tuning for Parameter-Efficient Fine-tuning

2025-01-06 · Pengwei Tang, Xiaolin Hu, Yong liu

Prompt Tuning (PT) enables the adaptation of Pre-trained Large Language Models (PLMs) to downstream tasks by optimizing a small amount of soft virtual tokens, which are prepended to the input token embeddings. Recently, …

parameter-efficient fine-tuning

DeCoOp: Robust Prompt Tuning with Out-of-Distribution Detection

2024-06-01 · Zhi Zhou, Ming Yang, Jiang-Xin Shi, Lan-Zhe Guo 외

Vision-language models (VLMs), such as CLIP, have demonstrated impressive zero-shot capabilities for various downstream tasks. Their performance can be further enhanced through few-shot prompt tuning methods. However, cu…

Out-of-Distribution Detection

Decomposed Prompt Tuning via Low-Rank Reparameterization

2023-10-16 · Yao Xiao, Lu Xu, Jiaxi Li, Wei Lu 외

While prompt tuning approaches have achieved competitive performance with high efficiency, we observe that they invariably employ the same initialization process, wherein the soft prompt is either randomly initialized or…

Towards Privacy-Preserving Federated Prompt Tuning under Data Heterogeneity: A Subspace-Decomposed Expert Approach

2026-07-23 · Yuhua Wang, Xiaodong Li, Yihao Guo, Yuxiang Jia 외 arxiv

Federated prompt tuning (FPT) enables collaborative adaptation of vision--language models (VLMs) using lightweight prompts. Existing methods often address heterogeneity and privacy through a split-prompt design under loc…

FPT: Improving Prompt Tuning Efficiency via Progressive Training

2022-11-13 · Yufei Huang, Yujia Qin, Huadong Wang, Yichun Yin 외

Recently, prompt tuning (PT) has gained increasing attention as a parameter-efficient way of tuning pre-trained language models (PLMs). Despite extensively reducing the number of tunable parameters and achieving satisfyi…