espnet2.enh.layers.tcndenseunet.Conv2DActNorm
Less than 1 minute
espnet2.enh.layers.tcndenseunet.Conv2DActNorm
class espnet2.enh.layers.tcndenseunet.Conv2DActNorm(in_channels, out_channels, ksz=(3, 3), stride=(1, 2), padding=(1, 0), upsample=False, activation=<class 'torch.nn.modules.activation.ELU'>)
Bases: Module
Basic Conv2D + activation + instance norm building block.
Initializes internal Module state, shared by both nn.Module and ScriptModule.
forward(inp)
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.