LazyConv3d#
- class torch.nn.modules.conv.LazyConv3d(out_channels, kernel_size, stride=1, padding=0, dilation=1, groups=1, bias=True, padding_mode='zeros', device=None, dtype=None)[原始碼]#
一個具有
in_channels引數的惰性初始化的torch.nn.Conv3d模組。該
Conv3d的in_channels引數是從input.size(1)推導而來的。將被惰性初始化的屬性是 weight 和 bias。有關延遲模組及其限制的更多文件,請檢視
torch.nn.modules.lazy.LazyModuleMixin。