C3dTransposedConvLayer Class
June 14, 2020 ยท View on GitHub
This class implements a layer that performs transposed convolution (sometimes also called deconvolution or up-convolution) on a set of three-dimensional multi-channel images. Padding is supported.
Settings
Filters size
void SetFilterHeight( int filterHeight );
void SetFilterWidth( int filterWidth );
void SetFilterDepth( int filterDepth );
void SetFilterCount( int filterCount );
Sets the filters' size and number.
Convolution stride
void SetStrideHeight( int strideHeight );
void SetStrideWidth( int strideWidth );
void SetStrideDepht( int strideDepth );
Sets the convolution stride. By default, the stride is 1.
Padding
void SetPaddingHeight( int paddingHeight );
void SetPaddingWidth( int paddingWidth );
void SetPaddingDepth( int paddingDepth );
Sets the width, height, and depth of padding that should be removed from the convolution result. For example, if SetPaddingWidth( 1 );, two rectangular sheets - one on the right and one on the left - will be cut off of the resulting image. By default these values are set to 0.
Using the free terms
void SetZeroFreeTerm(bool isZeroFreeTerm);
Specifies if the free terms should be used. If you set this value to true, the free terms vector will be set to all zeros and won't be trained. By default, this value is set to false.
Trainable parameters
Filters
CPtr<CDnnBlob> GetFilterData() const;
The filters are represented by a blob of the following dimensions:
BatchLengthis equal to1BatchWidthis equal to the inputs'ChannelsListSizeis equal to1Heightis equal toGetFilterHeight()Widthis equal toGetFilterWidth()Depthis equal toGetFilterDepth()Channelsis equal toGetFilterCount()
Free terms
CPtr<CDnnBlob> GetFreeTermData() const;
The free terms are represented by a blob of the total size equal to the number of filters used (GetFilterCount()).
Inputs
Each input accepts a blob with several images. The dimensions of all inputs should be the same:
BatchLength * BatchWidth * ListSize- the number of images in the set.Height- the images' height.Width- the images' width.Depth- the images' depth.Channels- the number of channels the image format uses.
Outputs
For each input the layer has one output. It contains a blob with the result of convolution. The output blob dimensions are:
BatchLengthis equal to the inputBatchLength.BatchWidthis equal to the inputBatchWidth.ListSizeis equal to the inputListSize.Heightcan be calculated from the inputHeightasStrideHeight * (Height - 1) + FilterHeight - 2 * PaddingHeight.Widthcan be calculated from the inputWidthasStrideWidth * (Width - 1) + FilterWidth - 2 * PaddingWidth.Depthcan be calculated from the inputDepthas
StrideDepth * (Depth - 1) + FilterDepth - 2 * PaddingDepth.Channelsis equal toGetFilterCount().