Creates a new optimizer object. If there are no parameters given for that particular argument, then that argument will use default value.
RootMeanSquarePropagation.new(beta: number, epsilon: number): OptimizerObject
beta: The value that controls the exponential decay rate for the moving average of squared gradients.
epsilon: The value to ensure that the numbers are not divided by zero.
RootMeanSquarePropagation:setBeta(beta: number)
RootMeanSquarePropagation:setEpsilon(epsilon: number)
Reset optimizer’s stored values (excluding the parameters).
RootMeanSquarePropagation:reset()