tf.nn.conv1d_transpose
    
    
      
    
    
      
      Stay organized with collections
    
    
      
      Save and categorize content based on your preferences.
    
  
  
      
    
  
  
  
  
  
    
  
  
    
    
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 | 
|---|
| input | A 3-D Tensorof typefloatand shape[batch, in_width, in_channels]forNWCdata format or[batch, in_channels, in_width]forNCWdata format. | 
| filters | A 3-D Tensorwith the same type asvalueand shape[filter_width, output_channels, in_channels].filter'sin_channelsdimension must match that ofvalue. | 
| output_shape | A 1-D Tensor, containing three elements, representing the
output shape of the deconvolution op. | 
| strides | An int or list of intsthat has length1or3.  The number of
entries by which the filter is moved right at each step. | 
| padding | A string, either 'VALID'or'SAME'. The padding algorithm.
See the "returns" section oftf.nn.convolutionfor details. | 
| data_format | A string. 'NWC'and'NCW'are supported. | 
| dilations | An int or list of intsthat has length1or3which
defaults to 1. The dilation factor for each dimension of input. If set to
k > 1, there will be k-1 skipped cells between each filter element on that
dimension. Dilations in the batch and depth dimensions must be 1. | 
| name | Optional name for the returned tensor. | 
| Returns | 
|---|
| A Tensorwith the same type asvalue. | 
| Raises | 
|---|
| ValueError | If input/output depth does not match filter's shape, ifoutput_shapeis not at 3-element vector, ifpaddingis other than'VALID'or'SAME', or ifdata_formatis invalid. | 
  
  
 
  
    
    
      
       
    
    
  
  
  Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
  Last updated 2020-10-01 UTC.
  
  
  
    
      [null,null,["Last updated 2020-10-01 UTC."],[],[]]