allennlp.modules.layer_norm

class allennlp.modules.layer_norm.LayerNorm(dimension: int, eps: float = 1e-06)[source]

Bases: torch.nn.modules.module.Module

An implementation of Layer Normalization .

Layer Normalization stabilises the training of deep neural networks by normalising the outputs of neurons from a particular layer. It computes:

output = (gamma * (tensor - mean) / (std + eps)) + beta

Parameters
dimensionint, required.

The dimension of the layer output to normalize.

epsfloat, optional, (default = 1e-6)

An epsilon to prevent dividing by zero in the case the layer has zero variance.

Returns
The normalized layer output.
forward(self, tensor: torch.Tensor)[source]

Defines the computation performed at every call.

Should be overridden by all subclasses.

Note

Although the recipe for forward pass needs to be defined within this function, one should call the Module instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.