tf.nn.conv2d_transpose

View source on GitHub

The transpose of conv2d.

tf.nn.conv2d_transpose(
    input, filters, output_shape, strides, padding='SAME', data_format='NHWC',
    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 input.

Raises: