tf.compat.v1.nn.conv3d

View source on GitHub

Computes a 3-D convolution given 5-D input and filter tensors.

tf.compat.v1.nn.conv3d(
    input, filter=None, strides=None, padding=None, data_format='NDHWC',
    dilations=[1, 1, 1, 1, 1], name=None, filters=None
)

In signal processing, cross-correlation is a measure of similarity of two waveforms as a function of a time-lag applied to one of them. This is also known as a sliding dot product or sliding inner-product.

Our Conv3D implements a form of cross-correlation.

Args:

Returns:

A Tensor. Has the same type as input.