LazyConv1d#
- classtorch.nn.modules.conv.LazyConv1d(out_channels,kernel_size,stride=1,padding=0,dilation=1,groups=1,bias=True,padding_mode='zeros',device=None,dtype=None)[source]#
A
torch.nn.Conv1dmodule with lazy initialization of thein_channelsargument.The
in_channelsargument of theConv1dis inferred from theinput.size(1).The attributes that will be lazily initialized areweight andbias.Check the
torch.nn.modules.lazy.LazyModuleMixinfor further documentationon lazy modules and their limitations.- Parameters
out_channels (int) – Number of channels produced by the convolution
stride (int ortuple,optional) – Stride of the convolution. Default: 1
padding (int ortuple,optional) – Zero-padding added to both sides ofthe input. Default: 0
dilation (int ortuple,optional) – Spacing between kernelelements. Default: 1
groups (int,optional) – Number of blocked connections from inputchannels to output channels. Default: 1
bias (bool,optional) – If
True, adds a learnable bias to theoutput. Default:Truepadding_mode (str,optional) –
'zeros','reflect','replicate'or'circular'. Default:'zeros'