Now we will apply a strided convolution to our previously described padded example and calculate the convolution where p = 1, s = 2
Previously when we used strides = 1, our slided window moved by 1 position, with strides = s it moves by s positions (you need to calculate s^2 elements less. But in...