[PyTorch] Convolution
[Conv2d] torch.nn.Conv2d(in_channels, out_channels, kernel_size, stride=1, padding=0, dilation=1, groups=1, bias=True, padding_mode='zeros') out_channels에 따라 결과 feature map의 channel 수가 결정됨. The parameters kernel_size, stride, padding, dilation can either be: a single int – in which case the same value is used for the height and width dimension a tuple of two ints – in which case, the first int i..