#005 CNN Strided Convolution
Strided convolution A strided convolution is another basic building block of convolution that is used in Convolutional Neural Networks. Let’s say we want to convolve this \(7 \times 7 \) image with this \(3 \times 3 \) filter, except, that instead of doing it the usual way, we’re going to do it with a stride of \(2 \). Convolutions with a stride of two This means that we take the element-wise product as usual in…
Read more