yunjey / pytorch-tutorial

PyTorch Tutorial for Deep Learning Researchers
MIT License
29.94k stars 8.1k forks source link

BN should be used after ReLU #212

Closed yunlingz closed 4 years ago

yunlingz commented 4 years ago

https://github.com/yunjey/pytorch-tutorial/blob/master/tutorials/02-intermediate/convolutional_neural_network/main.py#L41-L42

nn.ReLU(),
nn.BatchNorm2d(...),

BN should be used after ReLU. Features might be truncated by non-linearity like ReLU, so BN is used to normalize the distribution of features.