Implements stochastic gradient descent (optionally with momentum). Nesterov momentum is based on the formula from On the importance of initialization and momentum in deep learning.
The implementation of SGD with Momentum-Nesterov subtly differs from Sutskever et. al. and implementations in some other frameworks.
Considering the specific case of Momentum, the update can be written as
vt+1pt+1=μ∗vt+gt+1,=pt−\mboxlr∗vt+1,
where p, g, v and μ denote the parameters, gradient, velocity, and momentum respectively.
This is in contrast to Sutskever et. al. and other frameworks which employ an update of the form
vt+1pt+1=μ∗vt+\mboxlr∗gt+1,=pt−vt+1.
The Nesterov version is analogously modified.
Warning
If you need to move a model to GPU via $cuda(), please do so before constructing optimizers for it. Parameters of a model after $cuda()
will be different objects from those before the call. In general, you should make sure that the objects pointed to by model parameters subject to optimization remain the same over the whole lifecycle of optimizer creation and usage.
Examples
if(torch_is_installed()){## Not run:optimizer <- optim_sgd(model$parameters(), lr =0.1, momentum =0.9)optimizer$zero_grad()loss_fn(model(input), target)$backward()optimizer$step()## End(Not run)}