espnet2.gan_codec.shared.encoder.seanet_2d.SConv2d
espnet2.gan_codec.shared.encoder.seanet_2d.SConv2d
class espnet2.gan_codec.shared.encoder.seanet_2d.SConv2d(in_channels: int, out_channels: int, kernel_size: int | Tuple[int, int], stride: int | Tuple[int, int] = 1, dilation: int | Tuple[int, int] = 1, groups: int = 1, bias: bool = True, causal: bool = False, norm: str = 'none', norm_kwargs: Dict[str, Any] = {}, pad_mode: str = 'reflect')
Bases: Module
Conv1d with some builtin handling of asymmetric or causal padding and normalization. Note: causal padding only make sense on time (the last) axis. Frequency (the second last) axis are always non-causally padded.
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.