Main Content

layernorm

Normalize data across all channels for each observation independently

Since R2021a

    Description

    The layer normalization operation normalizes the input data across all channels for each observation independently. To speed up training of recurrent and multilayer perceptron neural networks and reduce the sensitivity to network initialization, use layer normalization after the learnable operations, such as LSTM and fully connect operations.

    After normalization, the operation shifts the input by a learnable offset β and scales it by a learnable scale factor γ.

    The layernorm function applies the layer normalization operation to dlarray data. Using dlarray objects makes working with high dimensional data easier by allowing you to label the dimensions. For example, you can label which dimensions correspond to spatial, time, channel, and batch dimensions using the "S", "T", "C", and "B" labels, respectively. For unspecified and other dimensions, use the "U" label. For dlarray object functions that operate over particular dimensions, you can specify the dimension labels by formatting the dlarray object directly, or by using the DataFormat option.

    Note

    To apply layer normalization within a dlnetwork object, use layerNormalizationLayer.

    example

    Y = layernorm(X,offset,scaleFactor) applies the layer normalization operation to the input data X and transforms it using the specified offset and scale factor.

    The function normalizes over the 'S' (spatial), 'T' (time), 'C' (channel), and 'U' (unspecified) dimensions of X for each observation in the 'B' (batch) dimension, independently.

    For unformatted input data, use the 'DataFormat' option.

    Y = layernorm(X,offset,scaleFactor,'DataFormat',FMT) applies the layer normalization operation to the unformatted dlarray object X with the format specified by FMT. The output Y is an unformatted dlarray object with dimensions in the same order as X. For example, 'DataFormat','SSCB' specifies data for 2-D image input with the format 'SSCB' (spatial, spatial, channel, batch).

    To specify the format of the scale and offset, use the 'ScaleFormat' and 'OffsetFormat' options, respectively.

    Y = layernorm(___,Name,Value) specifies options using one or more name-value pair arguments in addition to the input arguments in previous syntaxes. For example, 'Epsilon',1e-4 sets the epsilon value to 1e-4.

    Examples

    collapse all

    Create a formatted dlarray object containing a batch of 128 sequences of length 100 with 10 channels. Specify the format 'CBT' (channel, batch, time).

    numChannels = 10;
    miniBatchSize = 128;
    sequenceLength = 100;
    
    X = rand(numChannels,miniBatchSize,sequenceLength);
    dlX = dlarray(X,'CBT');

    View the size and format of the input data.

    size(dlX)
    ans = 1×3
    
        10   128   100
    
    
    dims(dlX)
    ans = 
    'CBT'
    

    For per-observation channel-wise layer normalization, initialize the offset and scale with a vector of zeros and ones, respectively.

    offset = zeros(numChannels,1);
    scaleFactor = ones(numChannels,1);

    Apply the layer normalization operation using the layernorm function.

    dlY = layernorm(dlX,offset,scaleFactor);

    View the size and the format of the output dlY.

    size(dlY)
    ans = 1×3
    
        10   128   100
    
    
    dims(dlY)
    ans = 
    'CBT'
    

    To perform element-wise layer normalization, specify an offset and scale factor with the same size as a single input observation.

    Create a formatted dlarray object containing a batch of 128 224-by-224 images with 3 channels. Specify the format "SSCB" (spatial, spatial, channel, batch).

    numChannels = 3;
    miniBatchSize = 128;
    H = 224;
    W = 224;
    X = rand(H,W,numChannels,miniBatchSize);
    X = dlarray(X,"SSCB");

    View the size and format of the input data.

    size(X)
    ans = 1×4
    
       224   224     3   128
    
    
    dims(X)
    ans = 
    'SSCB'
    

    For element-wise layer normalization, initialize the offset and scale with an array of zeros and ones, respectively.

    offset = zeros(H,W,numChannels);
    scaleFactor = ones(H,W,numChannels);

    Apply the layer normalization operation using the layernorm function. Specify the offset and scale formats as "SSC" (spatial, spatial, channel) using the 'OffsetFormat' and 'ScaleFormat' options, respectively.

    Y = layernorm(X,offset,scaleFactor,'OffsetFormat',"SSC",'ScaleFormat',"SSC");

    View the size and the format of the output data.

    size(Y)
    ans = 1×4
    
       224   224     3   128
    
    
    dims(Y)
    ans = 
    'SSCB'
    

    Input Arguments

    collapse all

    Input data, specified as a formatted dlarray, an unformatted dlarray, or a numeric array.

    If X is an unformatted dlarray or a numeric array, then you must specify the format using the DataFormat option. If X is a numeric array, then either scaleFactor or offset must be a dlarray object.

    X must have a "C" (channel) dimension.

    Offset β, specified as a formatted dlarray, an unformatted dlarray, or a numeric array.

    The size and format of the offset depends on the type of transformation.

    TaskDescription
    Channel-wise transformation

    Array with one nonsingleton dimension with size matching the size of the 'C' (channel) dimension of the input X.

    For channel-wise transformation, if offset is a formatted dlarray object, then the nonsingleton dimension must have label 'C' (channel).

    Element-wise transformation

    Array with a 'C' (channel) dimension with the same size as the 'C' (channel) dimension of the input X and zero or the same number of 'S' (spatial), 'T' (time), and 'U' (unspecified) dimensions of the input X.

    Each dimension must have size 1 or have sizes matching the corresponding dimensions in the input X. For any repeated dimensions, for example, multiple 'S' (spatial) dimensions, the sizes must match the corresponding dimensions in X or must all be singleton.

    The software automatically expands any singleton dimensions to match the size of a single observation in the input X.

    For element-wise transformation, if offset is a numeric array or an unformatted dlarray, then you must specify the offset format using the 'OffsetFormat' option.

    Scale factor γ, specified as a formatted dlarray, an unformatted dlarray, or a numeric array.

    The size and format of the offset depends on the type of transformation.

    TaskDescription
    Channel-wise transformation

    Array with one nonsingleton dimension with size matching the size of the 'C' (channel) dimension of the input X.

    For channel-wise transformation, if scaleFactor is a formatted dlarray object, then the nonsingleton dimension must have label 'C' (channel).

    Element-wise transformation

    Array with a 'C' (channel) dimension with the same size as the 'C' (channel) dimension of the input X and zero or the same number of 'S' (spatial), 'T' (time), and 'U' (unspecified) dimensions of the input X.

    Each dimension must have size 1 or have sizes matching the corresponding dimensions in the input X. For any repeated dimensions, for example, multiple 'S' (spatial) dimensions, the sizes must match the corresponding dimensions in X or must all be singleton.

    The software automatically expands any singleton dimensions to match the size of a single observation in the input X.

    For element-wise transformation, if scaleFactor is a numeric array or an unformatted dlarray, then you must specify the scale format using the 'ScaleFormat' option.

    Name-Value Arguments

    Specify optional pairs of arguments as Name1=Value1,...,NameN=ValueN, where Name is the argument name and Value is the corresponding value. Name-value arguments must appear after other arguments, but the order of the pairs does not matter.

    Before R2021a, use commas to separate each name and value, and enclose Name in quotes.

    Example: 'Epsilon',1e-4 sets the variance offset value to 1e-4.

    Description of the data dimensions, specified as a character vector or string scalar.

    A data format is a string of characters, where each character describes the type of the corresponding data dimension.

    The characters are:

    • "S" — Spatial

    • "C" — Channel

    • "B" — Batch

    • "T" — Time

    • "U" — Unspecified

    For example, consider an array containing a batch of sequences where the first, second, and third dimensions correspond to channels, observations, and time steps, respectively. You can specify that this array has the format "CBT" (channel, batch, time).

    You can specify multiple dimensions labeled "S" or "U". You can use the labels "C", "B", and "T" at most once. The software ignores singleton trailing "U" dimensions after the second dimension.

    If the input data is not a formatted dlarray object, then you must specify the DataFormat option.

    For more information, see Deep Learning Data Formats.

    Data Types: char | string

    Constant to add to the mini-batch variances, specified as a positive scalar.

    The software adds this constant to the mini-batch variances before normalization to ensure numerical stability and avoid division by zero.

    Before R2023a: Epsilon must be greater than or equal to 1e-5.

    Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

    Description of the scale dimensions, specified as a character vector or string scalar.

    A data format is a string of characters, where each character describes the type of the corresponding data dimension.

    The characters are:

    • "S" — Spatial

    • "C" — Channel

    • "B" — Batch

    • "T" — Time

    • "U" — Unspecified

    For example, consider an array containing a batch of sequences where the first, second, and third dimensions correspond to channels, observations, and time steps, respectively. You can specify that this array has the format "CBT" (channel, batch, time).

    For layer normalization, the scale factor must have a "C" (channel) dimension. You can specify multiple dimensions labeled "S" or "U". You can use the label "T" (time) at most once. The scale factor must not have a "B" (batch) dimension.

    For element-wise normalization, if scaleFactor is a numeric array or an a unformatted dlarray object, then you must specify the ScaleFormat option.

    For more information, see Deep Learning Data Formats.

    Example: 'ScaleFormat',"SSCB"

    Data Types: char | string

    Description of the offset dimensions, specified as a character vector or string scalar.

    A data format is a string of characters, where each character describes the type of the corresponding data dimension.

    The characters are:

    • "S" — Spatial

    • "C" — Channel

    • "B" — Batch

    • "T" — Time

    • "U" — Unspecified

    For example, consider an array containing a batch of sequences where the first, second, and third dimensions correspond to channels, observations, and time steps, respectively. You can specify that this array has the format "CBT" (channel, batch, time).

    For layer normalization, the offset must have a "C" (channel) dimension. You can specify multiple dimensions labeled "S" or 'U'. You can use the label "T" (time) at most once. The offset must not have a "B" (batch) dimension.

    For element-wise normalization, if offset is a numeric array or an a unformatted dlarray object, then you must specify the OffsetFormat option.

    For more information, see Deep Learning Data Formats.

    Example: 'OffsetFormat',"SSCB"

    Data Types: char | string

    Since R2023a

    Dimension to normalize over, specified as one of these values:

    • "auto" — For feature, sequence, 1-D image, or spatial-temporal input, normalize over the channel dimension. Otherwise, normalize over the spatial and channel dimensions.

    • "channel-only" — Normalize over the channel dimension.

    • "spatial-channel" — Normalize over the spatial and channel dimensions.

    • "batch-excluded" — Normalize over all dimensions except for the batch dimension.

    Output Arguments

    collapse all

    Normalized data, returned as a dlarray. The output Y has the same underlying data type as the input X.

    If the input data X is a formatted dlarray, Y has the same dimension labels as X. If the input data is not a formatted dlarray, Y is an unformatted dlarray with the same dimension order as the input data.

    Algorithms

    collapse all

    Layer Normalization

    The layer normalization operation normalizes the elements xi of the input by first calculating the mean μL and variance σL2 over the spatial, time, and channel dimensions for each observation independently. Then, it calculates the normalized activations as

    xi^=xiμLσL2+ϵ,

    where ϵ is a constant that improves numerical stability when the variance is very small.

    To allow for the possibility that inputs with zero mean and unit variance are not optimal for the operations that follow layer normalization, the layer normalization operation further shifts and scales the activations using the transformation

    yi=γx^i+β,

    where the offset β and scale factor γ are learnable parameters that are updated during network training.

    Deep Learning Array Formats

    Most deep learning networks and functions operate on different dimensions of the input data in different ways.

    For example, an LSTM operation iterates over the time dimension of the input data and a batch normalization operation normalizes over the batch dimension of the input data.

    To provide input data with labeled dimensions or input data with additional layout information, you can use data formats.

    A data format is a string of characters, where each character describes the type of the corresponding data dimension.

    The characters are:

    • "S" — Spatial

    • "C" — Channel

    • "B" — Batch

    • "T" — Time

    • "U" — Unspecified

    For example, consider an array containing a batch of sequences where the first, second, and third dimensions correspond to channels, observations, and time steps, respectively. You can specify that this array has the format "CBT" (channel, batch, time).

    To create formatted input data, create a dlarray object and specify the format using the second argument.

    To provide additional layout information with unformatted data, specify the formats using the DataFormat, ScaleFormat, and OffsetFormat arguments.

    For more information, see Deep Learning Data Formats.

    References

    [1] Ba, Jimmy Lei, Jamie Ryan Kiros, and Geoffrey E. Hinton. “Layer Normalization.” Preprint, submitted July 21, 2016. https://arxiv.org/abs/1607.06450.

    Extended Capabilities

    Version History

    Introduced in R2021a

    expand all