File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 33from .adafactor import Adafactor
44from .adahessian import Adahessian
55from .lookahead import Lookahead
6+ from .madgrad import MADGRAD
67from .nadam import Nadam
78from .nvnovograd import NvNovoGrad
89from .radam import RAdam
Original file line number Diff line number Diff line change 1+ """ PyTorch MADGRAD optimizer
2+
3+ MADGRAD: https://arxiv.org/abs/2101.11075
4+
5+ Code from: https://github.com/facebookresearch/madgrad
6+ """
17# Copyright (c) Facebook, Inc. and its affiliates.
28#
39# This source code is licensed under the MIT license found in the
Original file line number Diff line number Diff line change 11""" Optimizer Factory w/ Custom Weight Decay
2- Hacked together by / Copyright 2020 Ross Wightman
2+ Hacked together by / Copyright 2021 Ross Wightman
33"""
44from typing import Optional
55
66import torch
77import torch .nn as nn
88import torch .optim as optim
9- from torch .optim .optimizer import required
109
1110from .adabelief import AdaBelief
1211from .adafactor import Adafactor
You can’t perform that action at this time.
0 commit comments