Updaters/Optimizers
Special algorithms for gradient descent.
What are updaters?
Usage
ComputationGraphConfiguration conf = new NeuralNetConfiguration.Builder()
.updater(new Adam(0.01))
// add your layers and hyperparameters below
.build();Available updaters
NadamUpdater
public void applyUpdater(INDArray gradient, int iteration, int epoch)NesterovsUpdater
RmsPropUpdater
AdaGradUpdater
AdaMaxUpdater
NoOpUpdater
AdamUpdater
AdaDeltaUpdater
SgdUpdater
GradientUpdater
AMSGradUpdater
Last updated
Was this helpful?