CVAINov 25, 2021

Active Learning at the ImageNet Scale

arXiv:2111.12880v138 citationsHas Code
Originality Incremental advance
AI Analysis

This addresses the scalability issue of AL for industrial applications with high labeling costs, though it is incremental as it builds on existing AL and self-supervised pretraining methods.

The authors tackled the problem of active learning (AL) failing to outperform random sampling on large-scale datasets like ImageNet due to class imbalance, and proposed Balanced Selection (BASE), a simple AL algorithm that consistently beats random sampling by selecting more balanced samples.

Active learning (AL) algorithms aim to identify an optimal subset of data for annotation, such that deep neural networks (DNN) can achieve better performance when trained on this labeled subset. AL is especially impactful in industrial scale settings where data labeling costs are high and practitioners use every tool at their disposal to improve model performance. The recent success of self-supervised pretraining (SSP) highlights the importance of harnessing abundant unlabeled data to boost model performance. By combining AL with SSP, we can make use of unlabeled data while simultaneously labeling and training on particularly informative samples. In this work, we study a combination of AL and SSP on ImageNet. We find that performance on small toy datasets -- the typical benchmark setting in the literature -- is not representative of performance on ImageNet due to the class imbalanced samples selected by an active learner. Among the existing baselines we test, popular AL algorithms across a variety of small and large scale settings fail to outperform random sampling. To remedy the class-imbalance problem, we propose Balanced Selection (BASE), a simple, scalable AL algorithm that outperforms random sampling consistently by selecting more balanced samples for annotation than existing methods. Our code is available at: https://github.com/zeyademam/active_learning .

Code Implementations1 repo
Foundations

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

Your Notes