Learn Before
  • Strided Convolution

Concept

Strided Convolution Example

The picture shows a two-dimensional cross-correlation operation with a stride of 3 vertically and 2 horizontally. The shaded portions are the output elements as well as the input and kernel tensor elements used for the output computation: 0×0+0×1+1×2+2×3=8 , 0×0+6×1+0×2+0×3=6 .

We can see that when the second element of the first column is outputted, the convolution window slides down three rows. The convolution window slides two columns to the right when the second element of the first row is outputted. When the convolution window continues to slide two columns to the right on the input, there is no output because the input element cannot fill the window (unless we add another column of padding).

Image 0

0

1

Updated 2020-12-07

Tags

Data Science

Related
  • Strided Convolution Example

  • Advantages of Strided Convolution

  • Output Size of Strided and Padded Convolution

  • The downsides of the standard convolution method