├── .gitignore ├── LICENSE.md ├── README.md ├── cifar.py ├── docker └── pytorch.Dockerfile └── resnet.py /.gitignore: -------------------------------------------------------------------------------- 1 | saved_models 2 | data 3 | __pycache__ -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/PyTorch-Static-Quantization/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/PyTorch-Static-Quantization/HEAD/README.md -------------------------------------------------------------------------------- /cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/PyTorch-Static-Quantization/HEAD/cifar.py -------------------------------------------------------------------------------- /docker/pytorch.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/PyTorch-Static-Quantization/HEAD/docker/pytorch.Dockerfile -------------------------------------------------------------------------------- /resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leimao/PyTorch-Static-Quantization/HEAD/resnet.py --------------------------------------------------------------------------------