Added batch normalization layer with test and examples
authorDmytro Mishkin <ducha.aiki@gmail.com>
Wed, 25 Feb 2015 15:00:22 +0000 (17:00 +0200)
committerCarl Doersch <cdoersch@cs.cmu.edu>
Wed, 21 Oct 2015 04:04:08 +0000 (21:04 -0700)
commit2f05b03371e5936a478c7ad2946d0cd7c013920c
treeef569944b7bebf611e6e68df17146bd91e0bcd96
parent8c8e832e71985ba89dcb7c8a60697322c54b5f5b
Added batch normalization layer with test and examples
examples/cifar10/cifar10_full_sigmoid_solver.prototxt [new file with mode: 0644]
examples/cifar10/cifar10_full_sigmoid_solver_bn.prototxt [new file with mode: 0644]
examples/cifar10/cifar10_full_sigmoid_train_test.prototxt [new file with mode: 0644]
examples/cifar10/cifar10_full_sigmoid_train_test_bn.prototxt [new file with mode: 0644]
examples/cifar10/train_full_sigmoid.sh [new file with mode: 0755]
examples/cifar10/train_full_sigmoid_bn.sh [new file with mode: 0755]
include/caffe/common_layers.hpp
src/caffe/layers/batch_norm_layer.cpp [new file with mode: 0644]
src/caffe/layers/batch_norm_layer.cu [new file with mode: 0644]
src/caffe/test/test_batch_norm_layer.cpp [new file with mode: 0644]