Fixed stub for AdamW (#34299)

Summary:
Fixes [https://github.com/pytorch/pytorch/issues/33757](https://github.com/pytorch/pytorch/issues/33757)
Pull Request resolved: https://github.com/pytorch/pytorch/pull/34299

Differential Revision: D20337844

Pulled By: ezyang

fbshipit-source-id: 54bf174a09b8db9bf6e0c3c717730dd7c795d76b
This commit is contained in:
prajjwal1 2020-03-09 08:43:07 -07:00 committed by Facebook Github Bot
parent 739d4609c3
commit b1bd950a4d

View file

@ -3,7 +3,7 @@ from .adadelta import Adadelta
from .adagrad import Adagrad
from .adam import Adam as Adam
from .adamax import Adamax
from .adamw import AdamW
from .adamw import AdamW as AdamW
from .asgd import ASGD
from .lbfgs import LBFGS
from .optimizer import Optimizer