espnet2.enh.layers.complexnn.ComplexConvTranspose2d
Less than 1 minute
espnet2.enh.layers.complexnn.ComplexConvTranspose2d
class espnet2.enh.layers.complexnn.ComplexConvTranspose2d(in_channels, out_channels, kernel_size=(1, 1), stride=(1, 1), padding=(0, 0), output_padding=(0, 0), causal=False, complex_axis=1, groups=1)
Bases: Module
ComplexConvTranspose2d.
in_channels: real+imag out_channels: real+imag
forward(inputs)
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.