We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d535d7 commit de2f5c6Copy full SHA for de2f5c6
timm/optim/_optim_factory.py
@@ -23,6 +23,7 @@
23
from .adamw import AdamWLegacy
24
from .adan import Adan
25
from .adopt import Adopt
26
+from .kron import Kron
27
from .lamb import Lamb
28
from .laprop import LaProp
29
from .lars import Lars
@@ -693,6 +694,12 @@ def _register_other_optimizers(registry: OptimizerRegistry) -> None:
693
694
has_betas=True,
695
second_order=True,
696
),
697
+ OptimInfo(
698
+ name='kron',
699
+ opt_class=Kron,
700
+ description='',
701
+ has_momentum=True,
702
+ ),
703
OptimInfo(
704
name='laprop',
705
opt_class=LaProp,
0 commit comments