Package org.nd4j.linalg.learning
Class NoOpUpdater
- java.lang.Object
-
- org.nd4j.linalg.learning.NoOpUpdater
-
- All Implemented Interfaces:
GradientUpdater<NoOp>
public class NoOpUpdater extends Object implements GradientUpdater<NoOp>
-
-
Constructor Summary
Constructors Constructor Description NoOpUpdater(NoOp config)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidapplyUpdater(INDArray gradient, int iteration, int epoch)Modify the gradient to be an update.Map<String,INDArray>getState()voidsetState(Map<String,INDArray> stateMap, boolean initialize)voidsetStateViewArray(INDArray viewArray, long[] shape, char order, boolean initialize)For the internal updater state (if any): set this to use the provided array.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.nd4j.linalg.learning.GradientUpdater
getConfig
-
-
-
-
Constructor Detail
-
NoOpUpdater
public NoOpUpdater(NoOp config)
-
-
Method Detail
-
setState
public void setState(Map<String,INDArray> stateMap, boolean initialize)
- Specified by:
setStatein interfaceGradientUpdater<NoOp>
-
getState
public Map<String,INDArray> getState()
- Specified by:
getStatein interfaceGradientUpdater<NoOp>
-
setStateViewArray
public void setStateViewArray(INDArray viewArray, long[] shape, char order, boolean initialize)
Description copied from interface:GradientUpdaterFor the internal updater state (if any): set this to use the provided array. Used during initialization, and when restoring the updater state (after serialization, for example)- Specified by:
setStateViewArrayin interfaceGradientUpdater<NoOp>- Parameters:
viewArray- Array (that is a view of a larger array) to use for the state.initialize- If true: the updater must initialize the view array. If false: no change to view array contents
-
applyUpdater
public void applyUpdater(INDArray gradient, int iteration, int epoch)
Description copied from interface:GradientUpdaterModify the gradient to be an update. Note that this is be done in-place- Specified by:
applyUpdaterin interfaceGradientUpdater<NoOp>- Parameters:
gradient- the gradient to modify
-
-