tf.compat.v1.nn.conv3d_transpose

View source on GitHub

The transpose of conv3d.

tf.compat.v1.nn.conv3d_transpose(
    value, filter=None, output_shape=None, strides=None, padding='SAME',
    data_format='NDHWC', name=None, input=None, filters=None, dilations=None
)

This operation is sometimes called "deconvolution" after Deconvolutional Networks, but is really the transpose (gradient) of conv3d rather than an actual deconvolution.

Args:

Returns:

A Tensor with the same type as value.

Raises: