Skip to content

Commit

Permalink
changed layout of noisy_sgd dict
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas542 committed Nov 30, 2024
1 parent 4c1d306 commit a162271
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion optax/_src/alias_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@
),
dict(opt_name='nadam', opt_kwargs=dict(learning_rate=1e-2)),
dict(opt_name='nadamw', opt_kwargs=dict(learning_rate=1e-2)),
dict(opt_name='noisy_sgd', opt_kwargs=dict(learning_rate=1e-3, key=jrd.key(0), eta=1e-4)),
dict(
opt_name='noisy_sgd',
opt_kwargs=dict(learning_rate=1e-3, key=jrd.key(0), eta=1e-4)
),
dict(opt_name='novograd', opt_kwargs=dict(learning_rate=1e-3)),
dict(
opt_name='optimistic_gradient_descent',
Expand Down

0 comments on commit a162271

Please sign in to comment.