espnet2.gan_codec.shared.decoder.seanet.SConvTranspose1d
espnet2.gan_codec.shared.decoder.seanet.SConvTranspose1d
class espnet2.gan_codec.shared.decoder.seanet.SConvTranspose1d(in_channels: int, out_channels: int, kernel_size: int, stride: int = 1, causal: bool = False, norm: str = 'none', trim_right_ratio: float = 1.0, norm_kwargs: Dict[str, Any] = {})
Bases: Module
ConvTranspose1d with some builtin handling of asymmetric or causal padding and normalization.
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.