├── .gitignore ├── LICENSE ├── README.md ├── eval.sh ├── figure ├── pic1_schemes.png ├── pic2_results.png └── pic3_results.png ├── fold_batch_norm.py ├── main.py ├── paper ├── 2949-supp.pdf └── 2949.pdf └── quant ├── __init__.py ├── pwlq.py ├── quant_acts.py ├── quant_weis.py └── uniform.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/README.md -------------------------------------------------------------------------------- /eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/eval.sh -------------------------------------------------------------------------------- /figure/pic1_schemes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/figure/pic1_schemes.png -------------------------------------------------------------------------------- /figure/pic2_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/figure/pic2_results.png -------------------------------------------------------------------------------- /figure/pic3_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/figure/pic3_results.png -------------------------------------------------------------------------------- /fold_batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/fold_batch_norm.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/main.py -------------------------------------------------------------------------------- /paper/2949-supp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/paper/2949-supp.pdf -------------------------------------------------------------------------------- /paper/2949.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/paper/2949.pdf -------------------------------------------------------------------------------- /quant/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/quant/__init__.py -------------------------------------------------------------------------------- /quant/pwlq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/quant/pwlq.py -------------------------------------------------------------------------------- /quant/quant_acts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/quant/quant_acts.py -------------------------------------------------------------------------------- /quant/quant_weis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/quant/quant_weis.py -------------------------------------------------------------------------------- /quant/uniform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jun-fang/PWLQ/HEAD/quant/uniform.py --------------------------------------------------------------------------------