One-stage Prompt-based Continual Learning
Youngeun Kim, Yuhang Li, Priyadarshini Panda
TL;DR
This work tackles the heavy computational burden of Prompt-based Continual Learning (PCL) by introducing OS-Prompt, a one-stage PCL that uses intermediate layer token embeddings as prompt queries to eliminate a separate query ViT stage, achieving about a $50\%$ reduction in GFLOPs with a marginal accuracy drop of $<1\%$. To counteract the reduced representational power of using early-layer queries, the authors add a Query-Pool Regularization (QR) loss that aligns the prompt-query relationships with a reference final-layer query, improving performance without adding inference cost. A strengthened variant, OS-Prompt++, incorporates QR loss during training to boost the prompt pool’s representational power. Experiments on CIFAR-100, ImageNet-R, and DomainNet show competitive final accuracy and outperformance over the previous state-of-the-art by roughly $1.4\%$ at similar costs, indicating practical efficiency gains for rehearsal-free continual learning on resource-limited devices.
Abstract
Prompt-based Continual Learning (PCL) has gained considerable attention as a promising continual learning solution as it achieves state-of-the-art performance while preventing privacy violation and memory overhead issues. Nonetheless, existing PCL approaches face significant computational burdens because of two Vision Transformer (ViT) feed-forward stages; one is for the query ViT that generates a prompt query to select prompts inside a prompt pool; the other one is a backbone ViT that mixes information between selected prompts and image tokens. To address this, we introduce a one-stage PCL framework by directly using the intermediate layer's token embedding as a prompt query. This design removes the need for an additional feed-forward stage for query ViT, resulting in ~50% computational cost reduction for both training and inference with marginal accuracy drop < 1%. We further introduce a Query-Pool Regularization (QR) loss that regulates the relationship between the prompt query and the prompt pool to improve representation power. The QR loss is only applied during training time, so there is no computational overhead at inference from the QR loss. With the QR loss, our approach maintains ~ 50% computational cost reduction during inference as well as outperforms the prior two-stage PCL methods by ~1.4% on public class-incremental continual learning benchmarks including CIFAR-100, ImageNet-R, and DomainNet.
