AICurious Logo

What is: Layer Normalization?

SourceLayer Normalization
Year2000
Data SourceCC BY-SA - https://paperswithcode.com

Unlike batch normalization, Layer Normalization directly estimates the normalization statistics from the summed inputs to the neurons within a hidden layer so the normalization does not introduce any new dependencies between training cases. It works well for RNNs and improves both the training time and the generalization performance of several existing RNN models. More recently, it has been used with Transformer models.

We compute the layer normalization statistics over all the hidden units in the same layer as follows:

μl=1HH_i=1a_il\mu^{l} = \frac{1}{H}\sum^{H}\_{i=1}a\_{i}^{l}

σl=1HH_i=1(a_ilμl)2\sigma^{l} = \sqrt{\frac{1}{H}\sum^{H}\_{i=1}\left(a\_{i}^{l}-\mu^{l}\right)^{2}}

where HH denotes the number of hidden units in a layer. Under layer normalization, all the hidden units in a layer share the same normalization terms μ\mu and σ\sigma, but different training cases have different normalization terms. Unlike batch normalization, layer normalization does not impose any constraint on the size of the mini-batch and it can be used in the pure online regime with batch size 1.