LazyConv1d¶
- 
class torch.nn.LazyConv1d(out_channels, kernel_size, stride=1, padding=0, dilation=1, groups=1, bias=True, padding_mode='zeros')[source]¶
- A - torch.nn.Conv1dmodule with lazy initialization of the- in_channelsargument of the- Conv1dthat is inferred from the- input.size(1).- Parameters
- out_channels (int) – Number of channels produced by the convolution 
- stride (int or tuple, optional) – Stride of the convolution. Default: 1 
- padding (int or tuple, optional) – Zero-padding added to both sides of the input. Default: 0 
- padding_mode (string, optional) – - 'zeros',- 'reflect',- 'replicate'or- 'circular'. Default:- 'zeros'
- dilation (int or tuple, optional) – Spacing between kernel elements. Default: 1 
- groups (int, optional) – Number of blocked connections from input channels to output channels. Default: 1 
- bias (bool, optional) – If - True, adds a learnable bias to the output. Default:- True
 
 - See also