Skip to content

Adam Class

This class is responsible for the Adam optimizer.

Adam .new(number decayConstant1 = 0.9, number decayConstant2 = 0.999, number epsilon = 10^-7) Creates and returns the Adam optimizer with the given decay constants and epsilon.

Inherited from Optimizer:

Only unchanged and unmodified functions are listed below.

void :SetNetwork(NeuralNetwork network) Sets the optimizer's network to !network!.