CNN Interview Question
CNN Interview Question
Questions on
Convolutional
Neural Network
1. What do you mean by Convolutional Neural
Network?
C = ((n-f+2p)/s)+1
Here n = 12, f = 3, p = 0, s = 1
Therefore the size of the convoluted matrix is 10 X 10.
8. Explain the terms “Valid Padding” and
“Same Padding” in CNN.
Valid Padding: This type is used when there is no
requirement for Padding. The output matrix after
convolution will have the dimension of (n – f + 1) X (n – f
+ 1).
Hence we have,
n+2p-f+1 = n
p = (f-1)/2
Filter size
Stride
Max or average pooling