2021-10-06 02:16:20 +00:00
|
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
#
|
|
|
|
# This source code is licensed under the MIT license found in the
|
|
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
from .adam import Adam, Adam8bit, Adam32bit
|
2021-11-29 05:18:11 +00:00
|
|
|
from .adamw import AdamW, AdamW8bit, AdamW32bit
|
2021-10-06 02:16:20 +00:00
|
|
|
from .sgd import SGD, SGD8bit, SGD32bit
|
|
|
|
from .lars import LARS, LARS8bit, LARS32bit, PytorchLARS
|
|
|
|
from .lamb import LAMB, LAMB8bit, LAMB32bit
|
|
|
|
from .rmsprop import RMSprop, RMSprop8bit, RMSprop32bit
|
2021-11-10 23:10:02 +00:00
|
|
|
from .adagrad import Adagrad, Adagrad8bit, Adagrad32bit
|
2021-10-06 02:16:20 +00:00
|
|
|
from .optimizer import GlobalOptimManager
|