Slimmable Networks for Contrastive Self-supervised Learning
Shuai Zhao, Linchao Zhu, Xiaohan Wang, Yi Yang
TL;DR
SlimCLR introduces slimmable networks to self-supervised pretraining, enabling the extraction of multiple small models from one training run without large teacher models. The core challenge is interference among weight-sharing sub-networks, manifesting as gradient magnitude imbalance and gradient direction divergence; the paper mitigates this with slow start, online distillation, and loss reweighting, plus a switchable linear probe for linear evaluation. Empirical results on ImageNet with MoCov2 and MoCov3 show that sub-networks achieve substantial gains over isolated small models, while the full model may trade a bit of accuracy for overall efficiency. The work demonstrates practical benefits for deploying adaptable, computation-aware representations across devices and tasks, including transfer to COCO without extra teacher models. The approach provides a non-distillation, one-shot pathway to scalable, small-model self-supervised learning with strong transfer capabilities.
Abstract
Self-supervised learning makes significant progress in pre-training large models, but struggles with small models. Mainstream solutions to this problem rely mainly on knowledge distillation, which involves a two-stage procedure: first training a large teacher model and then distilling it to improve the generalization ability of smaller ones. In this work, we introduce another one-stage solution to obtain pre-trained small models without the need for extra teachers, namely, slimmable networks for contrastive self-supervised learning (SlimCLR). A slimmable network consists of a full network and several weight-sharing sub-networks, which can be pre-trained once to obtain various networks, including small ones with low computation costs. However, interference between weight-sharing networks leads to severe performance degradation in self-supervised cases, as evidenced by gradient magnitude imbalance and gradient direction divergence. The former indicates that a small proportion of parameters produce dominant gradients during backpropagation, while the main parameters may not be fully optimized. The latter shows that the gradient direction is disordered, and the optimization process is unstable. To address these issues, we introduce three techniques to make the main parameters produce dominant gradients and sub-networks have consistent outputs. These techniques include slow start training of sub-networks, online distillation, and loss re-weighting according to model sizes. Furthermore, theoretical results are presented to demonstrate that a single slimmable linear layer is sub-optimal during linear evaluation. Thus a switchable linear probe layer is applied during linear evaluation. We instantiate SlimCLR with typical contrastive learning frameworks and achieve better performance than previous arts with fewer parameters and FLOPs. The code is at https://github.com/mzhaoshuai/SlimCLR.
