espnet2.enh.layers.tcndenseunet.FreqWiseBlock
espnet2.enh.layers.tcndenseunet.FreqWiseBlock
class espnet2.enh.layers.tcndenseunet.FreqWiseBlock(in_channels, num_freqs, out_channels, activation=<class 'torch.nn.modules.activation.ELU'>)
Bases: Module
FreqWiseBlock, see iNeuBe paper.
Block that applies pointwise 2D convolution over STFT-like image tensor on frequency axis. The input is assumed to be [batch, image_channels, frames, freq].
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.