├── .idea ├── BatchRenormalization.iml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── batch_renorm.py ├── cifar10_bn_mode_0.py ├── cifar10_brn.py ├── history ├── batch_renorm_history.txt └── batchnorm_history.txt ├── plots └── batchnorm_vs_renorm.png ├── visualization.py ├── weights ├── Batch renorm Weights.h5 ├── Batchnorm Weights.h5 ├── README.md └── th-kernels-th-dim-ordering.zip ├── wrn_batchnorm.py └── wrn_renorm.py /.idea/BatchRenormalization.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/.idea/BatchRenormalization.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/README.md -------------------------------------------------------------------------------- /batch_renorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/batch_renorm.py -------------------------------------------------------------------------------- /cifar10_bn_mode_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/cifar10_bn_mode_0.py -------------------------------------------------------------------------------- /cifar10_brn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/cifar10_brn.py -------------------------------------------------------------------------------- /history/batch_renorm_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/history/batch_renorm_history.txt -------------------------------------------------------------------------------- /history/batchnorm_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/history/batchnorm_history.txt -------------------------------------------------------------------------------- /plots/batchnorm_vs_renorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/plots/batchnorm_vs_renorm.png -------------------------------------------------------------------------------- /visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/visualization.py -------------------------------------------------------------------------------- /weights/Batch renorm Weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/weights/Batch renorm Weights.h5 -------------------------------------------------------------------------------- /weights/Batchnorm Weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/weights/Batchnorm Weights.h5 -------------------------------------------------------------------------------- /weights/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/weights/README.md -------------------------------------------------------------------------------- /weights/th-kernels-th-dim-ordering.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/weights/th-kernels-th-dim-ordering.zip -------------------------------------------------------------------------------- /wrn_batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/wrn_batchnorm.py -------------------------------------------------------------------------------- /wrn_renorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/BatchRenormalization/HEAD/wrn_renorm.py --------------------------------------------------------------------------------