lower beta2 for adam down to 0.99, based on https://openreview.net/forum?id=2LdBqxc1Yv

This commit is contained in:
Phil Wang
2022-06-03 10:26:28 -07:00
parent 9cc475f6e7
commit 708809ed6c
2 changed files with 2 additions and 2 deletions

View File

@@ -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,