CVAILGFeb 8, 2021

Partial Is Better Than All: Revisiting Fine-tuning Strategy for Few-shot Learning

arXiv:2102.03983v1204 citations
Originality Incremental advance
AI Analysis

This work offers an incremental improvement in few-shot learning performance by refining the fine-tuning strategy for practitioners working with limited data.

This paper addresses the problem of transferring knowledge from base classes to novel classes in few-shot learning, where simply transferring all knowledge can be suboptimal. The authors propose transferring partial knowledge by selectively freezing or fine-tuning specific layers of a pre-trained model, using an evolutionary search to determine which layers to fine-tune and their respective learning rates. This method achieves state-of-the-art performance on CUB and mini-ImageNet datasets for both meta-learning and non-meta based frameworks, and also improves the conventional pre-training + fine-tuning paradigm.

The goal of few-shot learning is to learn a classifier that can recognize unseen classes from limited support data with labels. A common practice for this task is to train a model on the base set first and then transfer to novel classes through fine-tuning (Here fine-tuning procedure is defined as transferring knowledge from base to novel data, i.e. learning to transfer in few-shot scenario.) or meta-learning. However, as the base classes have no overlap to the novel set, simply transferring whole knowledge from base data is not an optimal solution since some knowledge in the base model may be biased or even harmful to the novel class. In this paper, we propose to transfer partial knowledge by freezing or fine-tuning particular layer(s) in the base model. Specifically, layers will be imposed different learning rates if they are chosen to be fine-tuned, to control the extent of preserved transferability. To determine which layers to be recast and what values of learning rates for them, we introduce an evolutionary search based method that is efficient to simultaneously locate the target layers and determine their individual learning rates. We conduct extensive experiments on CUB and mini-ImageNet to demonstrate the effectiveness of our proposed method. It achieves the state-of-the-art performance on both meta-learning and non-meta based frameworks. Furthermore, we extend our method to the conventional pre-training + fine-tuning paradigm and obtain consistent improvement.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes