├── README.md ├── cal_graph_loss.py ├── cifar.py ├── data ├── __pycache__ │ ├── cifar10.cpython-37.pyc │ └── imagenet_dali.cpython-37.pyc ├── cifar10.py ├── imagenet.py ├── imagenet_dali.py └── imagenet_lighting.py ├── get_flops.py ├── imagenet.py ├── model ├── googlenet.py ├── mobilenet_v1.py ├── mobilenet_v1_flops.py ├── mobilenet_v2.py ├── mobilenet_v2_flops.py ├── resnet_cifar.py ├── resnet_imagenet.py └── vgg_cifar.py ├── test.py └── utils ├── common.py └── options.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/README.md -------------------------------------------------------------------------------- /cal_graph_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/cal_graph_loss.py -------------------------------------------------------------------------------- /cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/cifar.py -------------------------------------------------------------------------------- /data/__pycache__/cifar10.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/data/__pycache__/cifar10.cpython-37.pyc -------------------------------------------------------------------------------- /data/__pycache__/imagenet_dali.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/data/__pycache__/imagenet_dali.cpython-37.pyc -------------------------------------------------------------------------------- /data/cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/data/cifar10.py -------------------------------------------------------------------------------- /data/imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/data/imagenet.py -------------------------------------------------------------------------------- /data/imagenet_dali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/data/imagenet_dali.py -------------------------------------------------------------------------------- /data/imagenet_lighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/data/imagenet_lighting.py -------------------------------------------------------------------------------- /get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/get_flops.py -------------------------------------------------------------------------------- /imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/imagenet.py -------------------------------------------------------------------------------- /model/googlenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/model/googlenet.py -------------------------------------------------------------------------------- /model/mobilenet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/model/mobilenet_v1.py -------------------------------------------------------------------------------- /model/mobilenet_v1_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/model/mobilenet_v1_flops.py -------------------------------------------------------------------------------- /model/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/model/mobilenet_v2.py -------------------------------------------------------------------------------- /model/mobilenet_v2_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/model/mobilenet_v2_flops.py -------------------------------------------------------------------------------- /model/resnet_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/model/resnet_cifar.py -------------------------------------------------------------------------------- /model/resnet_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/model/resnet_imagenet.py -------------------------------------------------------------------------------- /model/vgg_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/model/vgg_cifar.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/test.py -------------------------------------------------------------------------------- /utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/utils/common.py -------------------------------------------------------------------------------- /utils/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmbxmu/CLR-RNF/HEAD/utils/options.py --------------------------------------------------------------------------------