Skip to content

Commit

Permalink
add the regen reg to adopt atan2
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Nov 26, 2024
1 parent e3a0aff commit 331eb3c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion adam_atan2_pytorch/adopt_atan2.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,15 @@ def __init__(
lr = 1e-4,
betas: tuple[float, float] = (0.9, 0.99),
weight_decay = 0.,
regen_reg_rate = 0.,
decoupled_wd = True,
a = 1.27,
b = 1.
):
assert lr > 0.
assert all([0. <= beta <= 1. for beta in betas])
assert weight_decay >= 0.
assert not (weight_decay > 0. and regen_reg_rate > 0.)

self._init_lr = lr
self.decoupled_wd = decoupled_wd
Expand All @@ -43,6 +45,7 @@ def __init__(
a = a,
b = b,
weight_decay = weight_decay,
regen_reg_rate = regen_reg_rate
)

super().__init__(params, defaults)
Expand All @@ -61,13 +64,19 @@ def step(
for group in self.param_groups:
for p in filter(lambda p: exists(p.grad), group['params']):

grad, lr, wd, beta1, beta2, a, b, state, init_lr = p.grad, group['lr'], group['weight_decay'], *group['betas'], group['a'], group['b'], self.state[p], self._init_lr
grad, lr, wd, regen_rate, beta1, beta2, a, b, state, init_lr = p.grad, group['lr'], group['weight_decay'], group['regen_reg_rate'], *group['betas'], group['a'], group['b'], self.state[p], self._init_lr

# maybe decoupled weight decay

if self.decoupled_wd:
wd /= init_lr

# regenerative regularization from Kumar et al. https://arxiv.org/abs/2308.11958

if regen_rate > 0. and 'param_init' in state:
param_init = state['param_init']
p.lerp_(param_init, lr / init_lr * regen_rate)

# weight decay

if wd > 0.:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "adam-atan2-pytorch"
version = "0.1.12"
version = "0.1.15"
description = "Adam-atan2 for Pytorch"
authors = [
{ name = "Phil Wang", email = "[email protected]" }
Expand Down

0 comments on commit 331eb3c

Please sign in to comment.