The input tensor, of rank 4 or rank 3, of shape
[batch, height, width, inChannels]. If rank 3, batch of 1 is
assumed.
The filter, rank 4, of shape
[filterHeight, filterWidth, inDepth, outDepth].
The strides of the convolution: [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 1x1.OptionaldataFormat: "NHWC" | "NCHW"Optionaldilations: number | [number, number]The dilation rates: [dilationHeight, dilationWidth]
in which we sample input values across the height and width dimensions
in atrous convolution. Defaults to [1, 1]. If dilations is a single
number, then dilationHeight == dilationWidth. If it is greater than
1, then all values of strides must be 1.
OptionaldimRoundingMode: "floor" | "round" | "ceil"A string from: 'ceil', 'round', 'floor'. If none is provided, it will default to truncate.
Computes a 2D convolution over the input x.