├── .gitignore ├── L-DNQ-Poster.pdf ├── L-DNQ-oral.pdf ├── README.md ├── main.py ├── models_CIFAR10 ├── resnet.py └── resnet_layer_input.py ├── models_ImageNet ├── __init__.py ├── alexnet_bn_layer_input.py ├── alexnet_layer_input.py ├── resnet.py ├── resnet_layer_input.py └── vgg_layer_input.py ├── train_base_model.py └── utils ├── CIFAR10_utils.py ├── __init__.py ├── dataset.py ├── hessian.py ├── imagenet_utils.py ├── miscellaneous.py ├── quantization.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/.gitignore -------------------------------------------------------------------------------- /L-DNQ-Poster.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/L-DNQ-Poster.pdf -------------------------------------------------------------------------------- /L-DNQ-oral.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/L-DNQ-oral.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/main.py -------------------------------------------------------------------------------- /models_CIFAR10/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/models_CIFAR10/resnet.py -------------------------------------------------------------------------------- /models_CIFAR10/resnet_layer_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/models_CIFAR10/resnet_layer_input.py -------------------------------------------------------------------------------- /models_ImageNet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models_ImageNet/alexnet_bn_layer_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/models_ImageNet/alexnet_bn_layer_input.py -------------------------------------------------------------------------------- /models_ImageNet/alexnet_layer_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/models_ImageNet/alexnet_layer_input.py -------------------------------------------------------------------------------- /models_ImageNet/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/models_ImageNet/resnet.py -------------------------------------------------------------------------------- /models_ImageNet/resnet_layer_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/models_ImageNet/resnet_layer_input.py -------------------------------------------------------------------------------- /models_ImageNet/vgg_layer_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/models_ImageNet/vgg_layer_input.py -------------------------------------------------------------------------------- /train_base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/train_base_model.py -------------------------------------------------------------------------------- /utils/CIFAR10_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/utils/CIFAR10_utils.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/utils/dataset.py -------------------------------------------------------------------------------- /utils/hessian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/utils/hessian.py -------------------------------------------------------------------------------- /utils/imagenet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/utils/imagenet_utils.py -------------------------------------------------------------------------------- /utils/miscellaneous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/utils/miscellaneous.py -------------------------------------------------------------------------------- /utils/quantization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/utils/quantization.py -------------------------------------------------------------------------------- /utils/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/csyhhu/L-DNQ/HEAD/utils/train.py --------------------------------------------------------------------------------