mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-10-21 23:02:07 +00:00
* Added CPU Adam * finished the cpu adam * updated the license * delete useless parameters, removed resnet * modified the method off cpu adam unittest * deleted some useless codes * removed useless codes Co-authored-by: ver217 <lhx0217@gmail.com> Co-authored-by: Frank Lee <somerlee.9@gmail.com> Co-authored-by: jiaruifang <fangjiarui123@gmail.com>
12 lines
336 B
Python
12 lines
336 B
Python
from .colossalai_optimizer import ColossalaiOptimizer
|
|
from .fused_adam import FusedAdam
|
|
from .fused_lamb import FusedLAMB
|
|
from .fused_sgd import FusedSGD
|
|
from .lamb import Lamb
|
|
from .lars import Lars
|
|
from .cpu_adam import CPUAdam
|
|
|
|
__all__ = [
|
|
'ColossalaiOptimizer', 'FusedLAMB', 'FusedAdam', 'FusedSGD', 'Lamb', 'Lars', 'CPUAdam'
|
|
]
|