tf.nn.atrous_conv2d_transpose

View source on GitHub

The transpose of atrous_conv2d.

tf.nn.atrous_conv2d_transpose(
    value, filters, output_shape, rate, padding, name=None
)

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

Args:

Returns:

A Tensor with the same type as value.

Raises: