Skip to content

Commit

Permalink
lower beta2 for adam down to 0.99, based on https://openreview.net/fo…
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Jun 3, 2022
1 parent 9cc475f commit 708809e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dalle2_pytorch/optimizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def get_optimizer(
params,
lr = 1e-4,
wd = 1e-2,
betas = (0.9, 0.999),
betas = (0.9, 0.99),
eps = 1e-8,
filter_by_requires_grad = False,
group_wd_params = True,
Expand Down
2 changes: 1 addition & 1 deletion dalle2_pytorch/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.6.10'
__version__ = '0.6.11'

0 comments on commit 708809e

Please sign in to comment.