Uses of Class
org.deeplearning4j.nn.conf.layers.Deconvolution3D.Builder
-
Packages that use Deconvolution3D.Builder Package Description org.deeplearning4j.nn.conf.layers -
-
Uses of Deconvolution3D.Builder in org.deeplearning4j.nn.conf.layers
Methods in org.deeplearning4j.nn.conf.layers that return Deconvolution3D.Builder Modifier and Type Method Description Deconvolution3D.Builder
Deconvolution3D.Builder. convolutionMode(ConvolutionMode convolutionMode)
Set the convolution mode for the Convolution layer.Deconvolution3D.Builder
Deconvolution3D.Builder. dataFormat(Convolution3D.DataFormat dataFormat)
Deconvolution3D.Builder
Deconvolution3D.Builder. kernelSize(int... kernelSize)
Size of the convolution rows/columnsDeconvolution3D.Builder
Deconvolution3D.Builder. padding(int... padding)
Deconvolution3D.Builder
Deconvolution3D.Builder. stride(int... stride)
Constructors in org.deeplearning4j.nn.conf.layers with parameters of type Deconvolution3D.Builder Constructor Description Deconvolution3D(Deconvolution3D.Builder builder)
Deconvolution3D layer nIn in the input layer is the number of channels nOut is the number of filters to be used in the net or in other words the channels The builder specifies the filter/kernel size, the stride and padding The pooling layer takes the kernel size
-