LazyConvTranspose3d¶
- class torch.nn.LazyConvTranspose3d(out_channels, kernel_size, stride=1, padding=0, output_padding=0, groups=1, bias=True, dilation=1, padding_mode='zeros', device=None, dtype=None)[源代码][源代码]¶
一个
torch.nn.ConvTranspose3d
模块,其in_channels
参数是延迟初始化的。ConvTranspose3d
的in_channels
参数是从input.size(1)
推断的。将延迟初始化的属性是 weight 和 bias。有关延迟模块及其限制的进一步文档,请查阅
torch.nn.modules.lazy.LazyModuleMixin
。- 参数