tf.nn.conv3d_transpose

View source on GitHub

The transpose of conv3d.

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

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

Args:

Returns:

A Tensor with the same type as value.