SOTAVerified

Instance Credibility Inference for Few-Shot Learning

2020-03-26CVPR 2020Code Available1· sign in to hype

Yikai Wang, Chengming Xu, Chen Liu, Li Zhang, Yanwei Fu

Code Available — Be the first to reproduce this paper.

Reproduce

Code

Abstract

Few-shot learning (FSL) aims to recognize new objects with extremely limited training data for each category. Previous efforts are made by either leveraging meta-learning paradigm or novel principles in data augmentation to alleviate this extremely data-scarce problem. In contrast, this paper presents a simple statistical approach, dubbed Instance Credibility Inference (ICI) to exploit the distribution support of unlabeled instances for few-shot learning. Specifically, we first train a linear classifier with the labeled few-shot examples and use it to infer the pseudo-labels for the unlabeled data. To measure the credibility of each pseudo-labeled instance, we then propose to solve another linear regression hypothesis by increasing the sparsity of the incidental parameters and rank the pseudo-labeled instances with their sparsity degree. We select the most trustworthy pseudo-labeled instances alongside the labeled examples to re-train the linear classifier. This process is iterated until all the unlabeled samples are included in the expanded training set, i.e. the pseudo-label is converged for unlabeled data pool. Extensive experiments under two few-shot settings show that our simple approach can establish new state-of-the-arts on four widely used few-shot learning benchmark datasets including miniImageNet, tieredImageNet, CIFAR-FS, and CUB. Our code is available at: https://github.com/Yikai-Wang/ICI-FSL

Tasks

Benchmark Results

DatasetModelMetricClaimedVerifiedStatus
CIFAR-FS 5-way (1-shot)ICIAccuracy76.51Unverified
CIFAR-FS 5-way (5-shot)ICIAccuracy84.32Unverified
CUB 200 5-way 1-shotICIAccuracy89.58Unverified
CUB 200 5-way 5-shotICIAccuracy92.48Unverified
Dirichlet Mini-Imagenet (5-way, 1-shot)LR-ICI1:1 Accuracy58.7Unverified
Dirichlet Mini-Imagenet (5-way, 5-shot)LR-ICI1:1 Accuracy73.5Unverified
Dirichlet Tiered-Imagenet (5-way, 1-shot)LR+ICI1:1 Accuracy74.6Unverified
Dirichlet Tiered-Imagenet (5-way, 5-shot)LR+ICI1:1 Accuracy85.1Unverified
Mini-Imagenet 5-way (1-shot)ICIAccuracy69.66Unverified
Mini-Imagenet 5-way (5-shot)ICIAccuracy80.11Unverified
Tiered ImageNet 5-way (1-shot)ICIAccuracy84.01Unverified
Tiered ImageNet 5-way (5-shot)ICIAccuracy89Unverified

Reproductions