Quiz on the Basics of CNNs
Test your knowledge of the basics of CNNs.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
Suppose that we have an image with the dimensions 224x224x3, and we apply the following convolution: torch.nn.Conv2d(3, 32, 5, stride=1, padding=0)
. What should be the output feature map dimensions?
A.
220x220x3
B.
224x224x3
C.
220x220x32
D.
196x196x32
1 / 5
...