This repository contains the code for reproducing the results, and trained ImageNet models, in the following paper:
Rethinking the Value of Network Pruning
Zhuang Liu*, Mingjie Sun*, Tinghui Zhou, Gao Huang, Trevor Darrell (* equal contribution).
ICLR 2019. Also Best Paper Award at NIPS 2018 Workshop on Compact Deep Neural Networks.
This paper shows that training the small pruned model from scratch can almost always achieve comparable or higher level of accuracy than the model obtained from the typical "training, pruning and fine-tuning" procedure. Our results suggest:
- Training a large, over-parameterized model is not absolutely necessary to obtain an efficient final model.
- Learned “important” weights of the large model are typically not useful for the small pruned model.
- The pruned architecture itself, rather than a set of inherited “important” weights, is more crucial to the efficiency in the final model, which suggests that in some cases pruning can be useful as an architecture search paradigm. Our results suggest the need for more careful baseline evaluations in future research on structured pruning methods. We also compare with the "Lottery Ticket Hypothesis" (Frankle & Carbin 2019), and find that with optimal learning rate, the "winning ticket" initialization as used in Frankle & Carbin (2019) does not bring improvement over random initialization.
@inproceedings{liu2018rethinking,
title={Rethinking the Value of Network Pruning},
author={Zhuang Liu and Mingjie Sun and Tinghui Zhou and Gao Huang and Trevor Darrell},
booktitle={ICLR},
year={2019}
}
We evaluated the following seven pruning methods:
- L1-norm based channel pruning
- ThiNet
- Regression based feature reconstruction
- Network Slimming
- Sparse Structure Selection
- Non-structured weight-level pruning
- Soft filter pruning
For CIFAR, our code is based on pytorch-classification and network-slimming. For ImageNet, we use the official Pytorch ImageNet training code. The instructions and models are in each subfolder.
Our experiment environment is Python 3.6 & PyTorch 0.3.1.
sunmj15 at gmail.com
liuzhuangthu at gmail.com