You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to write our own SGD implementation from Pytorch. This issue is to keep all the resources for writing optimizers in one place in PyTorch.
We want to create a BaseOptimiser, which would have general commands in the future and can be inherited for every optimizer. For e.g. instead of momentum, we wish to enable Nesterov acceleration, enabling nesterov=True.
Introduction
We need to write our own SGD implementation from Pytorch. This issue is to keep all the resources for writing optimizers in one place in PyTorch.
We want to create a
BaseOptimiser
, which would have general commands in the future and can be inherited for every optimizer. For e.g. instead of momentum, we wish to enable Nesterov acceleration, enablingnesterov=True
.Resources
The text was updated successfully, but these errors were encountered: