CVLGDec 11, 2021

You Only Need End-to-End Training for Long-Tailed Recognition

arXiv:2112.05958v42 citations
Originality Incremental advance
AI Analysis

This addresses the challenge of imbalanced data in classification for computer vision, offering an incremental improvement over existing decoupled methods.

The paper tackles the problem of poor generalization in long-tailed recognition by identifying channel-correlated features as a key issue in end-to-end training, and proposes Channel Whitening, B3RS, and BET modules to decorrelate features and balance training, achieving better performance than decoupled training on benchmarks like CIFAR-LT and ImageNet-LT.

The generalization gap on the long-tailed data sets is largely owing to most categories only occupying a few training samples. Decoupled training achieves better performance by training backbone and classifier separately. What causes the poorer performance of end-to-end model training (e.g., logits margin-based methods)? In this work, we identify a key factor that affects the learning of the classifier: the channel-correlated features with low entropy before inputting into the classifier. From the perspective of information theory, we analyze why cross-entropy loss tends to produce highly correlated features on the imbalanced data. In addition, we theoretically analyze and prove its impacts on the gradients of classifier weights, the condition number of Hessian, and logits margin-based approach. Therefore, we firstly propose to use Channel Whitening to decorrelate ("scatter") the classifier's inputs for decoupling the weight update and reshaping the skewed decision boundary, which achieves satisfactory results combined with logits margin-based method. However, when the number of minor classes are large, batch imbalance and more participation in training cause over-fitting of the major classes. We also propose two novel modules, Block-based Relatively Balanced Batch Sampler (B3RS) and Batch Embedded Training (BET) to solve the above problems, which makes the end-to-end training achieve even better performance than decoupled training. Experimental results on the long-tailed classification benchmarks, CIFAR-LT and ImageNet-LT, demonstrate the effectiveness of our method.

Foundations

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

Your Notes