Package org.deeplearning4j.nn.params
Class DeconvolutionParamInitializer
- java.lang.Object
-
- org.deeplearning4j.nn.params.ConvolutionParamInitializer
-
- org.deeplearning4j.nn.params.DeconvolutionParamInitializer
-
- All Implemented Interfaces:
ParamInitializer
public class DeconvolutionParamInitializer extends ConvolutionParamInitializer
-
-
Field Summary
-
Fields inherited from class org.deeplearning4j.nn.params.ConvolutionParamInitializer
BIAS_KEY, WEIGHT_KEY
-
-
Constructor Summary
Constructors Constructor Description DeconvolutionParamInitializer()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected INDArraycreateWeightMatrix(NeuralNetConfiguration conf, INDArray weightView, boolean initializeParams)Map<String,INDArray>getGradientsFromFlattened(NeuralNetConfiguration conf, INDArray gradientView)Return a map of gradients (in their standard non-flattened representation), taken from the flattened (row vector) gradientView array.static DeconvolutionParamInitializergetInstance()-
Methods inherited from class org.deeplearning4j.nn.params.ConvolutionParamInitializer
biasKeys, createBias, init, isBiasParam, isWeightParam, numParams, numParams, paramKeys, weightKeys
-
-
-
-
Method Detail
-
getInstance
public static DeconvolutionParamInitializer getInstance()
-
createWeightMatrix
protected INDArray createWeightMatrix(NeuralNetConfiguration conf, INDArray weightView, boolean initializeParams)
- Overrides:
createWeightMatrixin classConvolutionParamInitializer
-
getGradientsFromFlattened
public Map<String,INDArray> getGradientsFromFlattened(NeuralNetConfiguration conf, INDArray gradientView)
Description copied from interface:ParamInitializerReturn a map of gradients (in their standard non-flattened representation), taken from the flattened (row vector) gradientView array. The idea is that operates in exactly the same way as the paramsView does in#init(Map, NeuralNetConfiguration, INDArray); thus the position in the view (and, the array orders) must match those of the parameters- Specified by:
getGradientsFromFlattenedin interfaceParamInitializer- Overrides:
getGradientsFromFlattenedin classConvolutionParamInitializer- Parameters:
conf- ConfigurationgradientView- The flattened gradients array, as a view of the larger array- Returns:
- A map containing an array by parameter type, that is a view of the full network gradients array
-
-