├── .gitignore ├── LICENSE ├── README.md ├── finetune_cifar.py ├── finetune_imagenet.py ├── framework.png ├── functions ├── __init__.py ├── admm.py ├── dataloader.py └── utils.py ├── inference_cifar.py ├── inference_imagenet_resnet34.py ├── inference_imagenet_resnet50.py ├── models ├── ResNet_CIFAR.py ├── ResNet_ImageNet.py ├── __init__.py └── modules.py ├── scripts ├── finetune_cifar_resnet110.sh ├── finetune_cifar_resnet20.sh ├── finetune_cifar_resnet32.sh ├── finetune_cifar_resnet56.sh ├── finetune_imagenet_resnet34.sh ├── finetune_imagenet_resnet50.sh ├── inference_cifar_resnet110.sh ├── inference_cifar_resnet20.sh ├── inference_cifar_resnet32.sh ├── inference_cifar_resnet56.sh ├── inference_imagenet_resnet34.sh ├── inference_imagenet_resnet50.sh ├── train_cifar_fcf_resnet110.sh ├── train_cifar_fcf_resnet20.sh ├── train_cifar_fcf_resnet32.sh ├── train_cifar_fcf_resnet56.sh ├── train_imagenet_fcf_resnet34.sh └── train_imagenet_fcf_resnet50.sh ├── train_cifar_fcf.py └── train_imagenet_fcf.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/README.md -------------------------------------------------------------------------------- /finetune_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/finetune_cifar.py -------------------------------------------------------------------------------- /finetune_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/finetune_imagenet.py -------------------------------------------------------------------------------- /framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/framework.png -------------------------------------------------------------------------------- /functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/functions/__init__.py -------------------------------------------------------------------------------- /functions/admm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/functions/admm.py -------------------------------------------------------------------------------- /functions/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/functions/dataloader.py -------------------------------------------------------------------------------- /functions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/functions/utils.py -------------------------------------------------------------------------------- /inference_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/inference_cifar.py -------------------------------------------------------------------------------- /inference_imagenet_resnet34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/inference_imagenet_resnet34.py -------------------------------------------------------------------------------- /inference_imagenet_resnet50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/inference_imagenet_resnet50.py -------------------------------------------------------------------------------- /models/ResNet_CIFAR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/models/ResNet_CIFAR.py -------------------------------------------------------------------------------- /models/ResNet_ImageNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/models/ResNet_ImageNet.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/models/modules.py -------------------------------------------------------------------------------- /scripts/finetune_cifar_resnet110.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/finetune_cifar_resnet110.sh -------------------------------------------------------------------------------- /scripts/finetune_cifar_resnet20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/finetune_cifar_resnet20.sh -------------------------------------------------------------------------------- /scripts/finetune_cifar_resnet32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/finetune_cifar_resnet32.sh -------------------------------------------------------------------------------- /scripts/finetune_cifar_resnet56.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/finetune_cifar_resnet56.sh -------------------------------------------------------------------------------- /scripts/finetune_imagenet_resnet34.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/finetune_imagenet_resnet34.sh -------------------------------------------------------------------------------- /scripts/finetune_imagenet_resnet50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/finetune_imagenet_resnet50.sh -------------------------------------------------------------------------------- /scripts/inference_cifar_resnet110.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/inference_cifar_resnet110.sh -------------------------------------------------------------------------------- /scripts/inference_cifar_resnet20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/inference_cifar_resnet20.sh -------------------------------------------------------------------------------- /scripts/inference_cifar_resnet32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/inference_cifar_resnet32.sh -------------------------------------------------------------------------------- /scripts/inference_cifar_resnet56.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/inference_cifar_resnet56.sh -------------------------------------------------------------------------------- /scripts/inference_imagenet_resnet34.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/inference_imagenet_resnet34.sh -------------------------------------------------------------------------------- /scripts/inference_imagenet_resnet50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/inference_imagenet_resnet50.sh -------------------------------------------------------------------------------- /scripts/train_cifar_fcf_resnet110.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/train_cifar_fcf_resnet110.sh -------------------------------------------------------------------------------- /scripts/train_cifar_fcf_resnet20.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/train_cifar_fcf_resnet20.sh -------------------------------------------------------------------------------- /scripts/train_cifar_fcf_resnet32.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/train_cifar_fcf_resnet32.sh -------------------------------------------------------------------------------- /scripts/train_cifar_fcf_resnet56.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/train_cifar_fcf_resnet56.sh -------------------------------------------------------------------------------- /scripts/train_imagenet_fcf_resnet34.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/train_imagenet_fcf_resnet34.sh -------------------------------------------------------------------------------- /scripts/train_imagenet_fcf_resnet50.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/scripts/train_imagenet_fcf_resnet50.sh -------------------------------------------------------------------------------- /train_cifar_fcf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/train_cifar_fcf.py -------------------------------------------------------------------------------- /train_imagenet_fcf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wubaoyuan/CNN-FCF-CVPR-2019/HEAD/train_imagenet_fcf.py --------------------------------------------------------------------------------