Skip to content

Commit

Permalink
Keep basic optim test LR range closer to before w/ updated code
Browse files Browse the repository at this point in the history
  • Loading branch information
rwightman committed Nov 26, 2024
1 parent 7a165fc commit aeb1ed7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_optim.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,9 @@ def test_optim_factory(optimizer):
opt_info = get_optimizer_info(optimizer)
assert isinstance(opt_info, OptimInfo)

lr = (1e-3, 1e-2, 1e-2, 1e-2)
lr = (1e-2,) * 4
if optimizer in ('mars',):
lr = (1e-3, 1e-3, 1e-3, 1e-3)
lr = (1e-3,) * 4

try:
if not opt_info.second_order: # basic tests don't support second order right now
Expand Down

0 comments on commit aeb1ed7

Please sign in to comment.