ConvTranspose
abstract class ConvTranspose(dimensions: Int, name: String) : AbstractConv
Content copied to clipboard
A base class for defining transposed convolution layers (sometimes called deconvolution) of different dimensions.
This is an operation going in the opposite direction of a normal convolution: it transforms a tensor shaped like an output of some convolution into tensor that has the shape of the input.
Parameters
name
custom layer name
Constructors
ConvTranspose
Link copied to clipboard
Functions
Properties
dimensions
Link copied to clipboard
hasActivation
Link copied to clipboard
inboundLayers
Link copied to clipboard
outboundLayers
Link copied to clipboard
outputShape
Link copied to clipboard
paramCount
Link copied to clipboard
parentModel
Link copied to clipboard
Inheritors
Conv1DTranspose
Link copied to clipboard
Conv2DTranspose
Link copied to clipboard
Conv3DTranspose
Link copied to clipboard