Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift
Sergey Ioffe, Christian Szegedy

TL;DR
Batch Normalization is a technique that normalizes layer inputs during training, significantly speeding up deep neural network training, improving accuracy, and reducing the need for careful initialization and regularization.
Contribution
The paper introduces Batch Normalization, a novel method that integrates normalization into the network architecture to accelerate training and improve performance.
Findings
Achieves same accuracy with 14 times fewer training steps.
Enables higher learning rates and less careful initialization.
Sets new state-of-the-art on ImageNet classification.
Abstract
Training Deep Neural Networks is complicated by the fact that the distribution of each layer's inputs changes during training, as the parameters of the previous layers change. This slows down the training by requiring lower learning rates and careful parameter initialization, and makes it notoriously hard to train models with saturating nonlinearities. We refer to this phenomenon as internal covariate shift, and address the problem by normalizing layer inputs. Our method draws its strength from making normalization a part of the model architecture and performing the normalization for each training mini-batch. Batch Normalization allows us to use much higher learning rates and be less careful about initialization. It also acts as a regularizer, in some cases eliminating the need for Dropout. Applied to a state-of-the-art image classification model, Batch Normalization achieves the same…
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Code & Models
Videos
Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift· youtube
Taxonomy
TopicsNeural Networks and Applications · Domain Adaptation and Few-Shot Learning · Machine Learning and ELM
MethodsConvolution · Auxiliary Classifier · 1x1 Convolution · *Communicated@Fast*How Do I Communicate to Expedia? · Dropout · Dense Connections · Max Pooling · Softmax · Random Horizontal Flip · Random Resized Crop
