tf.nn.conv1d_transpose

View source on GitHub

The transpose of conv1d.

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

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

Args:

Returns:

A Tensor with the same type as value.

Raises: