1.

Which of the following defines the convolution layer with a 3 input channel, four out channels and a 3 x 3 filter?

Answer»

Which of the following DEFINES the convolution layer with a 3 input channel, four out CHANNELS and a 3 x 3 FILTER?
Please CHOOSE the correct option from below LIST
(1)nn.Conv2d(3, 4, kernel_size=(3, 3))
(2)nn.Conv2d(3, 3, kernel_size=(3, 4))
(3)nn.Conv2d(3, 4, kernel_size=(3, 4))
(4)nn.Conv2d(4, 3, kernel_size=(4, 3))

Answer:-(2)nn.Conv2d(3, 3, kernel_size=(3, 4))



Discussion

No Comment Found