PyTorch implementation for Towards Compact CNNs via Collaborative Compression (CVPR2021).
In this code, you can run ResNet/DenseNet/VGGNet/GoogLeNet model on CIFAR10/ImageNet2012 dataset. The code has been tested by Python 3.6.8, Pytorch 1.7.1 and CUDA 10.0.
python compress.py --dataset cifar10 \
--net resnet56 \
--pretrained True \
--checkpoint pth/resnet56.pth \
--train_dir tmp/resnet56_CC_0.5 \
--train_batch_size 128 \
--com_ratio 0.5
or
sh compress.sh
python compress.py --dataset cifar10 \
--net densenet40 \
--pretrained True \
--checkpoint pth/densenet40.pth \
--train_dir tmp/densenet40_CC_0.5 \
--train_batch_size 128 \
--com_ratio 0.5
Setting ImageNet-2012 directory in dataset/imagenet.py
python compress.py --dataset imagenet \
--net resnet50 \
--pretrained True \
--checkpoint pth/resnet50.pth \ # download from torchvision
--train_dir tmp/resnet50_CC_0.5 \
--train_batch_size 256 \
--com_ratio 0.5