Package org.deeplearning4j.nn.params
Class BatchNormalizationParamInitializer
- java.lang.Object
-
- org.deeplearning4j.nn.params.BatchNormalizationParamInitializer
-
- All Implemented Interfaces:
ParamInitializer
public class BatchNormalizationParamInitializer extends Object implements ParamInitializer
-
-
Field Summary
Fields Modifier and Type Field Description static String
BETA
static String
GAMMA
static String
GLOBAL_LOG_STD
static String
GLOBAL_MEAN
static String
GLOBAL_VAR
-
Constructor Summary
Constructors Constructor Description BatchNormalizationParamInitializer()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
biasKeys(Layer layer)
Bias parameter keys given the layer configurationMap<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 BatchNormalizationParamInitializer
getInstance()
Map<String,INDArray>
init(NeuralNetConfiguration conf, INDArray paramView, boolean initializeParams)
Initialize the parametersboolean
isBiasParam(Layer layer, String key)
Is the specified parameter a bias?boolean
isWeightParam(Layer layer, String key)
Is the specified parameter a weight?long
numParams(Layer l)
long
numParams(NeuralNetConfiguration conf)
List<String>
paramKeys(Layer layer)
Get a list of all parameter keys given the layer configurationList<String>
weightKeys(Layer layer)
Weight parameter keys given the layer configuration
-
-
-
Field Detail
-
GAMMA
public static final String GAMMA
- See Also:
- Constant Field Values
-
BETA
public static final String BETA
- See Also:
- Constant Field Values
-
GLOBAL_MEAN
public static final String GLOBAL_MEAN
- See Also:
- Constant Field Values
-
GLOBAL_VAR
public static final String GLOBAL_VAR
- See Also:
- Constant Field Values
-
GLOBAL_LOG_STD
public static final String GLOBAL_LOG_STD
- See Also:
- Constant Field Values
-
-
Method Detail
-
getInstance
public static BatchNormalizationParamInitializer getInstance()
-
numParams
public long numParams(NeuralNetConfiguration conf)
- Specified by:
numParams
in interfaceParamInitializer
-
numParams
public long numParams(Layer l)
- Specified by:
numParams
in interfaceParamInitializer
-
paramKeys
public List<String> paramKeys(Layer layer)
Description copied from interface:ParamInitializer
Get a list of all parameter keys given the layer configuration- Specified by:
paramKeys
in interfaceParamInitializer
- Parameters:
layer
- Layer- Returns:
- All parameter keys
-
weightKeys
public List<String> weightKeys(Layer layer)
Description copied from interface:ParamInitializer
Weight parameter keys given the layer configuration- Specified by:
weightKeys
in interfaceParamInitializer
- Parameters:
layer
- Layer- Returns:
- Weight parameter keys
-
biasKeys
public List<String> biasKeys(Layer layer)
Description copied from interface:ParamInitializer
Bias parameter keys given the layer configuration- Specified by:
biasKeys
in interfaceParamInitializer
- Parameters:
layer
- Layer- Returns:
- Bias parameter keys
-
isWeightParam
public boolean isWeightParam(Layer layer, String key)
Description copied from interface:ParamInitializer
Is the specified parameter a weight?- Specified by:
isWeightParam
in interfaceParamInitializer
- Parameters:
layer
- Layerkey
- Key to check- Returns:
- True if parameter is a weight
-
isBiasParam
public boolean isBiasParam(Layer layer, String key)
Description copied from interface:ParamInitializer
Is the specified parameter a bias?- Specified by:
isBiasParam
in interfaceParamInitializer
- Parameters:
layer
- Layerkey
- Key to check- Returns:
- True if parameter is a bias
-
init
public Map<String,INDArray> init(NeuralNetConfiguration conf, INDArray paramView, boolean initializeParams)
Description copied from interface:ParamInitializer
Initialize the parameters- Specified by:
init
in interfaceParamInitializer
- Parameters:
conf
- the configurationparamView
- a view of the full network (backprop) parametersinitializeParams
- if true: initialize the parameters according to the configuration. If false: don't modify the values in the paramsView array (but do select out the appropriate subset, reshape etc as required)- Returns:
- Map of parameters keyed by type (view of the 'paramsView' array)
-
getGradientsFromFlattened
public Map<String,INDArray> getGradientsFromFlattened(NeuralNetConfiguration conf, INDArray gradientView)
Description copied from interface:ParamInitializer
Return 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:
getGradientsFromFlattened
in interfaceParamInitializer
- 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
-
-