Conv3DTranspose
3D convolution transpose layer.
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.
This layer expects input data of size (N, D, H, W, C)
where
N - batch size
D - depth
H - height
W - width
C - number of channels
Note: providing explicit output padding is currently not supported. Dilation values greater than 1 are not supported on cpu.
Since
0.4
Parameters
dimensionality of the output space (i.e. the number of filters in the convolution)
activation function
initializer for the kernel
initializer for the bias
regularizer for the kernel
regularizer for the bias
regularizer function applied to the output of the layer
type of padding to use
a flag that specifies if the bias should be used
custom layer name
Constructors
Functions
Extend this function to define variables in layer.
Computes output shape, based on inputShape and Layer type.
Computes output shape, based on input shapes of inbound layers.