public class NesterovsUpdater extends Object implements GradientUpdater<Nesterovs>
| Constructor and Description |
|---|
NesterovsUpdater(Nesterovs config) |
| Modifier and Type | Method and Description |
|---|---|
void |
applyUpdater(INDArray gradient,
int iteration,
int epoch)
Get the nesterov 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 V_STATE
public NesterovsUpdater(Nesterovs config)
public void setState(@NonNull
@NonNull Map<String,INDArray> stateMap,
boolean initialize)
setState in interface GradientUpdater<Nesterovs>public Map<String,INDArray> getState()
getState in interface GradientUpdater<Nesterovs>public void setStateViewArray(INDArray viewArray, long[] gradientShape, char gradientOrder, boolean initialize)
GradientUpdatersetStateViewArray in interface GradientUpdater<Nesterovs>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)
applyUpdater in interface GradientUpdater<Nesterovs>gradient - the gradient to get the update foriteration - Copyright © 2021. All rights reserved.