├── .gitignore ├── LICENSE ├── README.md ├── cifar.py ├── cifar_bn.py ├── images └── switchnorm.png ├── switchnorm.py ├── test_switchnorm.py ├── visualize_switch_weights.py └── weights ├── Baseline-BatchNorm-CIFAR10.h5 └── Baseline-CIFAR10.h5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/keras-switchnorm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/keras-switchnorm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/keras-switchnorm/HEAD/README.md -------------------------------------------------------------------------------- /cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/keras-switchnorm/HEAD/cifar.py -------------------------------------------------------------------------------- /cifar_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/keras-switchnorm/HEAD/cifar_bn.py -------------------------------------------------------------------------------- /images/switchnorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/keras-switchnorm/HEAD/images/switchnorm.png -------------------------------------------------------------------------------- /switchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/keras-switchnorm/HEAD/switchnorm.py -------------------------------------------------------------------------------- /test_switchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/keras-switchnorm/HEAD/test_switchnorm.py -------------------------------------------------------------------------------- /visualize_switch_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/keras-switchnorm/HEAD/visualize_switch_weights.py -------------------------------------------------------------------------------- /weights/Baseline-BatchNorm-CIFAR10.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/keras-switchnorm/HEAD/weights/Baseline-BatchNorm-CIFAR10.h5 -------------------------------------------------------------------------------- /weights/Baseline-CIFAR10.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/keras-switchnorm/HEAD/weights/Baseline-CIFAR10.h5 --------------------------------------------------------------------------------