public class EmptyParamInitializer extends Object implements ParamInitializer
| Constructor and Description |
|---|
EmptyParamInitializer() |
| Modifier and Type | Method and Description |
|---|---|
Map<String,org.nd4j.linalg.api.ndarray.INDArray> |
getGradientsFromFlattened(NeuralNetConfiguration conf,
org.nd4j.linalg.api.ndarray.INDArray gradientView)
Return a map of gradients (in their standard non-flattened representation), taken from the flattened (row vector) gradientView array.
|
static EmptyParamInitializer |
getInstance() |
Map<String,org.nd4j.linalg.api.ndarray.INDArray> |
init(NeuralNetConfiguration conf,
org.nd4j.linalg.api.ndarray.INDArray paramsView,
boolean initializeParams)
Initialize the parameters
|
int |
numParams(Layer layer) |
int |
numParams(NeuralNetConfiguration conf) |
public static EmptyParamInitializer getInstance()
public int numParams(NeuralNetConfiguration conf)
numParams in interface ParamInitializerpublic int numParams(Layer layer)
numParams in interface ParamInitializerpublic Map<String,org.nd4j.linalg.api.ndarray.INDArray> init(NeuralNetConfiguration conf, org.nd4j.linalg.api.ndarray.INDArray paramsView, boolean initializeParams)
ParamInitializerinit in interface ParamInitializerconf - the configurationparamsView - 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)public Map<String,org.nd4j.linalg.api.ndarray.INDArray> getGradientsFromFlattened(NeuralNetConfiguration conf, org.nd4j.linalg.api.ndarray.INDArray gradientView)
ParamInitializer#init(Map, NeuralNetConfiguration, INDArray);
thus the position in the view (and, the array orders) must match those of the parametersgetGradientsFromFlattened in interface ParamInitializerconf - ConfigurationgradientView - The flattened gradients array, as a view of the larger arrayCopyright © 2017. All rights reserved.