tf.nn.atrous_conv2d_transpose
    
    
      
    
    
      
      Stay organized with collections
    
    
      
      Save and categorize content based on your preferences.
    
  
  
      
    
  
  
  
  
  
    
  
  
    
    
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
(Zeiler et al., 2010), but is really the transpose (gradient) of
atrous_conv2d rather than an actual deconvolution.
| Args | 
|---|
| value | A 4-D Tensorof typefloat. It needs to be in the defaultNHWCformat. Its shape is[batch, in_height, in_width, in_channels]. | 
| filters | A 4-D Tensorwith the same type asvalueand shape[filter_height, filter_width, out_channels, in_channels].filters'in_channelsdimension must match that ofvalue. Atrous convolution is
equivalent to standard convolution with upsampled filters with effective
heightfilter_height + (filter_height - 1) * (rate - 1)and effective
widthfilter_width + (filter_width - 1) * (rate - 1), produced by
insertingrate - 1zeros along consecutive elements across thefilters' spatial dimensions. | 
| output_shape | A 1-D Tensorof shape representing the output shape of the
deconvolution op, of form[batch, out_height, out_width, out_channels]. | 
| rate | A positive int32. The stride with which we sample input values across
the heightandwidthdimensions. Equivalently, the rate by which we
upsample the filter values by inserting zeros across theheightandwidthdimensions. In the literature, the same parameter is sometimes
calledinput strideordilation. | 
| padding | A string, either 'VALID'or'SAME'. The padding algorithm. See
here
for more information. | 
| name | Optional name for the returned tensor. | 
| Returns | 
|---|
| A Tensorwith the same type asvalue. | 
| Raises | 
|---|
| ValueError | If input/output depth does not match filters' shape, or if
padding is other than'VALID'or'SAME', or if therateis less
than one, or if the output_shape is not a tensor with 4 elements. | 
  
  
 
  
    
    
      
       
    
    
  
  
  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. Some content is licensed under the numpy license.
  Last updated 2024-04-26 UTC.
  
  
  
    
      [null,null,["Last updated 2024-04-26 UTC."],[],[]]