alexgkendall / caffe-segnet

Implementation of SegNet: A Deep Convolutional Encoder-Decoder Architecture for Semantic Pixel-Wise Labelling
http://mi.eng.cam.ac.uk/projects/segnet/
Other
1.08k stars 452 forks source link

Does the bn_layer contain scale and shift? #108

Closed githubfragments closed 7 years ago

githubfragments commented 7 years ago

The official caffe version's batch_norm_layer has not contain scale and shift, and need to add additional scale layer to complete batch normalization. Does this bn_layer contain scale and shift?

TimoSaemann commented 7 years ago

Yes it does.

yifaliu commented 7 years ago

@TimoSaemann does it mean BN layer in segNet is the same as 'batch normalization + scale layer' in official caffe version?

TimoSaemann commented 7 years ago

https://github.com/alexgkendall/caffe-segnet/issues/109

githubfragments commented 7 years ago

Good, thank you @TimoSaemann