Skip to content

Commit 52511e3

Browse files
committed
ci(test): num_iterations 300 to 100
1 parent b25be85 commit 52511e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_optimizers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
(AdamP, {'lr': 5e-1, 'weight_decay': 1e-3, 'nesterov': True}, 100),
5656
(DiffGrad, {'lr': 5e-1, 'weight_decay': 1e-3}, 100),
5757
(DiffRGrad, {'lr': 5e-1, 'weight_decay': 1e-3}, 100),
58-
(Lamb, {'lr': 1e-1, 'weight_decay': 1e-3}, 300),
59-
(Lamb, {'lr': 1e-1, 'weight_decay': 1e-3, 'adam': True, 'eps': 1e-8}, 100),
58+
(Lamb, {'lr': 1e-1, 'weight_decay': 1e-3}, 100),
59+
(Lamb, {'lr': 1e-1, 'weight_decay': 1e-3, 'adam': True, 'eps': 1e-8}, 300),
6060
(Lamb, {'lr': 1e-1, 'weight_decay': 1e-3, 'pre_norm': True, 'eps': 1e-8}, 100),
6161
(LARS, {'lr': 1e-1, 'weight_decay': 1e-3}, 300),
6262
(RaLamb, {'lr': 1e-1, 'weight_decay': 1e-4}, 100),

0 commit comments

Comments
 (0)