public class RmsPropUpdater extends Object implements GradientUpdater<RmsProp>
| Constructor and Description |
|---|
RmsPropUpdater(RmsProp config) |
| Modifier and Type | Method and Description |
|---|---|
void |
applyUpdater(INDArray gradient,
int iteration,
int epoch)
Modify the gradient to be an update.
|
Map<String,INDArray> |
getState() |
void |
setState(@NonNull Map<String,INDArray> stateMap,
boolean initialize) |
void |
setStateViewArray(INDArray viewArray,
long[] gradientShape,
char gradientOrder,
boolean initialize)
For the internal updater state (if any): set this to use the provided array.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetConfigpublic static final String G_STATE
public RmsPropUpdater(RmsProp config)
public void setState(@NonNull
@NonNull Map<String,INDArray> stateMap,
boolean initialize)
setState in interface GradientUpdater<RmsProp>public Map<String,INDArray> getState()
getState in interface GradientUpdater<RmsProp>public void setStateViewArray(INDArray viewArray, long[] gradientShape, char gradientOrder, boolean initialize)
GradientUpdatersetStateViewArray in interface GradientUpdater<RmsProp>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 contentspublic void applyUpdater(INDArray gradient, int iteration, int epoch)
GradientUpdaterapplyUpdater in interface GradientUpdater<RmsProp>gradient - the gradient to modifyCopyright © 2021. All rights reserved.