├── .gitignore ├── LICENSE ├── README.md ├── ban ├── config.py ├── models │ ├── lenet.py │ ├── mlp.py │ └── resnet.py └── updater.py ├── common └── logger.py ├── images └── resnet50_cifar10.png ├── infer.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nocotan/born_again_neuralnet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nocotan/born_again_neuralnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nocotan/born_again_neuralnet/HEAD/README.md -------------------------------------------------------------------------------- /ban/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nocotan/born_again_neuralnet/HEAD/ban/config.py -------------------------------------------------------------------------------- /ban/models/lenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nocotan/born_again_neuralnet/HEAD/ban/models/lenet.py -------------------------------------------------------------------------------- /ban/models/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nocotan/born_again_neuralnet/HEAD/ban/models/mlp.py -------------------------------------------------------------------------------- /ban/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nocotan/born_again_neuralnet/HEAD/ban/models/resnet.py -------------------------------------------------------------------------------- /ban/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nocotan/born_again_neuralnet/HEAD/ban/updater.py -------------------------------------------------------------------------------- /common/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nocotan/born_again_neuralnet/HEAD/common/logger.py -------------------------------------------------------------------------------- /images/resnet50_cifar10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nocotan/born_again_neuralnet/HEAD/images/resnet50_cifar10.png -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nocotan/born_again_neuralnet/HEAD/infer.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nocotan/born_again_neuralnet/HEAD/train.py --------------------------------------------------------------------------------