espnet2.asr.state_spaces.residual.Affine
Less than 1 minute
espnet2.asr.state_spaces.residual.Affine
class espnet2.asr.state_spaces.residual.Affine(*args, scalar=True, gamma=0.0, **kwargs)
Bases: Residual
Residual connection with learnable scalar multipliers on the main branch.
scalar: Single scalar multiplier, or one per dimension scale, power: Initialize to scale * layer_num**(-power)
Initializes internal Module state, shared by both nn.Module and ScriptModule.
forward(x, y, transposed)
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.