espnet2.gan_codec.shared.encoder.seanet.ConvLayerNorm
Less than 1 minute
espnet2.gan_codec.shared.encoder.seanet.ConvLayerNorm
class espnet2.gan_codec.shared.encoder.seanet.ConvLayerNorm(normalized_shape: int | List[int] | Size, **kwargs)
Bases: LayerNorm
Convolution-friendly LayerNorm that moves channels to last dimensions before running the normalization and moves them back to original position right after.
Initializes internal Module state, shared by both nn.Module and ScriptModule.
forward(x)
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.