mirror of
https://github.com/lucidrains/DALLE2-pytorch.git
synced 2025-12-19 17:54:20 +01:00
lower beta2 for adam down to 0.99, based on https://openreview.net/forum?id=2LdBqxc1Yv
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -1 +1 @@
|
||||
__version__ = '0.6.10'
|
||||
__version__ = '0.6.11'
|
||||
|
||||
Reference in New Issue
Block a user