mlx.nn.Conv3d#
- class Conv3d(in_channels: int, out_channels: int, kernel_size: int | tuple, stride: int | tuple = 1, padding: int | tuple = 0, dilation: int | tuple = 1, bias: bool = True)#
在多通道输入图像上应用三维卷积。
通道预计位于最后,即输入形状应为
NDHWC,其中:N是批量维度D是输入图像深度H是输入图像高度W是输入图像宽度C是输入通道数
- 参数:
方法