├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── count.py ├── eval.py ├── main.py ├── models ├── __init__.py ├── depthwiseresnet.py ├── resnet.py └── shiftresnet.py ├── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/README.md -------------------------------------------------------------------------------- /count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/count.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/eval.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/depthwiseresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/models/depthwiseresnet.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/shiftresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/models/shiftresnet.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvinwan/shiftresnet-cifar/HEAD/utils.py --------------------------------------------------------------------------------