The input tensor, of rank 5 or rank 4, of shape
[batch, depth, height, width, channels]. If rank 4,
batch of 1 is assumed.
The filter, rank 5, of shape
[filterDepth, filterHeight, filterWidth, inChannels, outChannels].
inChannels must match between input and filter.
The strides of the convolution: [strideDepth, 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.Optional dataFormat: "NDHWC" | "NCDHW"Optional dilations: number | [number, number, number]The dilation rates: [dilationDepth, dilationHeight, dilationWidth] in which we sample input values across the height
and width dimensions in atrous convolution. Defaults to [1, 1, 1].
If dilations is a single number, then
dilationDepth == dilationHeight == dilationWidth. If it is greater
than 1, then all values of strides must be 1.
Generated using TypeDoc
Computes a 3D convolution over the input x.