tf.compat.v1.nn.conv2d_transpose

View source on GitHub

The transpose of conv2d.

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

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

Args:

Returns:

A Tensor with the same type as value.

Raises: