adam | R Documentation |
ADAM stochastic process update
adam(k, grad, m, v, beta1 = 0.9, beta2 = 0.999, epsilon = 1e-08)
k |
The gradient descent iteration |
grad |
A list of gradient vectors |
m |
A list of momentums |
v |
A list of velocities |
beta1 |
The decay rate for the momentum |
beta2 |
The decay rate for the velocity |
epsilon |
A small amount to prevent a divide-by-zero error |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.