The filter shape is of the following dimensions:
[filterHeight, filterWidth, depth]
.
The strides of the sliding window for each dimension of the
input tensor: [strideHeight, strideWidth]
.
If strides
is a single number,
then strideHeight == strideWidth
.
The type of padding algorithm.
same
and stride 1: output will be of same size as input,
regardless of filter size.valid
: output will be smaller than input if filter is larger
than 1*1x1.The data format of the input and output data. Defaults to 'NHWC'.
The dilation rates: [dilationHeight, dilationWidth]
.
Defaults to [1, 1]
. If dilations
is a single number, then
dilationHeight == dilationWidth
.
Generated using TypeDoc
Input tensor shape is of the following dimensions:
[batch, height, width, inChannels]
.