transposedConv3dLayer - Transposed 3-D convolution layer - MATLAB (original) (raw)

Transposed 3-D convolution layer

Syntax

Description

A transposed 3-D convolution layer upsamples three-dimensional feature maps.

This layer is sometimes incorrectly known as a "deconvolution" or "deconv" layer. This layer performs the transpose of convolution and does not perform deconvolution.

[layer](#mw%5Fbc73c8a2-4185-4231-a472-1447d5366fa6) = transposedConv3dLayer([filterSize](#mw%5Fa98f2c1b-1b25-4c66-86dc-c0463b637a2f),[numFilters](#function%5Ftransposedconv3dlayer%5Fsep%5Fmw%5Ff6521fdd-11fa-49a2-9c6c-a0d988922b9f)) returns a 3-D transposed convolution layer and sets theFilterSize and NumFilters properties.

[layer](#mw%5Fbc73c8a2-4185-4231-a472-1447d5366fa6) = transposedConv3dLayer([filterSize](#mw%5Fa98f2c1b-1b25-4c66-86dc-c0463b637a2f),[numFilters](#function%5Ftransposedconv3dlayer%5Fsep%5Fmw%5Ff6521fdd-11fa-49a2-9c6c-a0d988922b9f),[Name,Value](#namevaluepairarguments)) returns a 3-D transposed convolutional layer and specifies additional options using one or more name-value pair arguments.

example

Examples

collapse all

Create a transposed 3-D convolutional layer with 32 filters, each with a height, width, and depth of 11. Use a stride of 4 in the horizontal and vertical directions and 2 along the depth.

layer = transposedConv3dLayer(11,32,'Stride',[4 4 2])

layer = TransposedConvolution3DLayer with properties:

        Name: ''

Hyperparameters FilterSize: [11 11 11] NumChannels: 'auto' NumFilters: 32 Stride: [4 4 2] CroppingMode: 'manual' CroppingSize: [2×3 double]

Learnable Parameters Weights: [] Bias: []

Show all properties

Input Arguments

collapse all

Height, width, and depth of the filters, specified as a positive integer or a vector of three positive integers [h w d], whereh is the height, w is the width, and d is the depth. The filter size defines the size of the local regions to which the neurons connect in the input.

If filterSize is a scalar, then the software uses the same value for all three dimensions.

Example: [5 6 7] specifies filters with a height, width, and depth of 5, 6, and 7 respectively.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Number of filters, specified as a positive integer. This number corresponds to the number of neurons in the layer that connect to the same region in the input. This parameter determines the number of channels (feature maps) in the output of the layer.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Name-Value Arguments

expand all

Specify optional pairs of arguments asName1=Value1,...,NameN=ValueN, where Name is the argument name and Value is the corresponding value. Name-value arguments must appear after other arguments, but the order of the pairs does not matter.

Before R2021a, use commas to separate each name and value, and enclose Name in quotes.

Example: transposedConv3dLayer(11,96,'Stride',4) creates a 3-D transposed convolutional layer with 96 filters of size 11 and a stride of 4.

Transposed Convolution

expand all

Step size for traversing the input in three dimensions, specified as a vector[a b c] of three positive integers, where a is the vertical step size, b is the horizontal step size, andc is the step size along the depth. When creating the layer, you can specify Stride as a scalar to use the same value for step sizes in all three directions.

Example: [2 3 1] specifies a vertical step size of 2, a horizontal step size of 3, and a step size along the depth of 1.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Output size reduction, specified as one of the following:

If you set the Cropping option to a numeric value, then the software automatically sets the CroppingMode property of the layer to 'manual'.

Example: [1 2 2]

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | char | string

Number of input channels, specified as one of the following:

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64 | char | string

Parameters and Initialization

expand all

Function to initialize the weights, specified as one of the following:

The layer only initializes the weights when the Weights property is empty.

Data Types: char | string | function_handle

Function to initialize the biases, specified as one of these values:

The layer initializes the biases only when the Bias property is empty.

The transposedConv3dLayer object stores this property as a character vector or a function handle.

Data Types: char | string | function_handle

Layer weights for the transposed convolution operation, specified as aFilterSize(1)-by-FilterSize(2)-by-FilterSize(3)-by-numFilters-by-NumChannels numeric array or [].

The layer weights are learnable parameters. You can specify the initial value of the weights directly using the Weights property of the layer. When you train a network, if the Weights property of the layer is nonempty, then the trainnet function uses the Weights property as the initial value. If the Weights property is empty, then the software uses the initializer specified by the WeightsInitializer property of the layer.

Data Types: single | double

Layer biases for the transposed convolutional operation, specified as a 1-by-1-by-1-by-numFilters numeric array or[].

The layer biases are learnable parameters. When you train a neural network, if Bias is nonempty, then the trainnet function uses the Bias property as the initial value. IfBias is empty, then software uses the initializer specified by BiasInitializer.

Data Types: single | double

Learning Rate and Regularization

expand all

Learning rate factor for the weights, specified as a nonnegative scalar.

The software multiplies this factor by the global learning rate to determine the learning rate for the weights in this layer. For example, if WeightLearnRateFactor is 2, then the learning rate for the weights in this layer is twice the current global learning rate. The software determines the global learning rate based on the settings you specify using the trainingOptions function.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Learning rate factor for the biases, specified as a nonnegative scalar.

The software multiplies this factor by the global learning rate to determine the learning rate for the biases in this layer. For example, if BiasLearnRateFactor is 2, then the learning rate for the biases in the layer is twice the current global learning rate. The software determines the global learning rate based on the settings you specify using the trainingOptions function.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

L2 regularization factor for the biases, specified as a nonnegative scalar.

The software multiplies this factor by the global L2 regularization factor to determine the L2 regularization for the biases in this layer. For example, if BiasL2Factor is 2, then the L2 regularization for the biases in this layer is twice the global L2 regularization factor. The software determines the global L2 regularization factor based on the settings you specify using the trainingOptions function.

Data Types: single | double | int8 | int16 | int32 | int64 | uint8 | uint16 | uint32 | uint64

Output Arguments

Algorithms

collapse all

A transposed 3-D convolution layer upsamples three-dimensional feature maps.

The standard convolution operation downsamples the input by applying sliding convolutional filters to the input. By flattening the input and output, you can express the convolution operation as Y=CX+B for the convolution matrix C and bias vector_B_ that can be derived from the layer weights and biases.

Similarly, the transposed convolution operation_upsamples_ the input by applying sliding convolutional filters to the input. To upsample the input instead of downsampling using sliding filters, the layer zero-pads each edge of the input with padding that has the size of the corresponding filter edge size minus 1.

By flattening the input and output, the transposed convolution operation is equivalent to Y=C⊤X+B, where C and B denote the convolution matrix and bias vector for standard convolution derived from the layer weights and biases, respectively. This operation is equivalent to the backward function of a standard convolution layer.

Layers in a layer array or layer graph pass data to subsequent layers as formatted dlarray objects. The format of a dlarray object is a string of characters in which each character describes the corresponding dimension of the data. The format consists of one or more of these characters:

For example, you can describe 2-D image data that is represented as a 4-D array, where the first two dimensions correspond to the spatial dimensions of the images, the third dimension corresponds to the channels of the images, and the fourth dimension corresponds to the batch dimension, as having the format "SSCB" (spatial, spatial, channel, batch).

You can interact with these dlarray objects in automatic differentiation workflows such as developing a custom layer, using a functionLayer object, or using the forward and predict functions withdlnetwork objects.

This table shows the supported input formats ofTransposedConvolution3DLayer objects and the corresponding output format. If the output of the layer is passed to a custom layer that does not inherit from the nnet.layer.Formattable class, or a FunctionLayer object with the Formattable property set to 0 (false), then the layer receives an unformatted dlarray object with dimensions ordered corresponding to the formats in this table.

Input Format Output Format
"SSSCB" (spatial, spatial, spatial, channel, batch) "SSSCB" (spatial, spatial, spatial, channel, batch)
"SSSC" (spatial, spatial, spatial, channel) "SSSC" (spatial, spatial, spatial, channel)

In dlnetwork objects, TransposedConvolution3DLayer objects also support these input and output format combinations.

Input Format Output Format
"SSSCBT" (spatial, spatial, spatial, channel, batch, time) "SSSCBT" (spatial, spatial, spatial, channel, batch, time)
"SSSCT" (spatial, spatial, spatial, channel, time) "SSSCT" (spatial, spatial, spatial, channel, time)

References

[1] Glorot, Xavier, and Yoshua Bengio. "Understanding the Difficulty of Training Deep Feedforward Neural Networks." In Proceedings of the Thirteenth International Conference on Artificial Intelligence and Statistics, 249–356. Sardinia, Italy: AISTATS, 2010. https://proceedings.mlr.press/v9/glorot10a/glorot10a.pdf

[2] He, Kaiming, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. "Delving Deep into Rectifiers: Surpassing Human-Level Performance on ImageNet Classification." In 2015 IEEE International Conference on Computer Vision (ICCV), 1026–34. Santiago, Chile: IEEE, 2015. https://doi.org/10.1109/ICCV.2015.123

Version History

Introduced in R2019a