Skip to content

Commit 47fc81e

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

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
@@ -56,8 +56,8 @@
5656
(DiffGrad, {'lr': 5e-1, 'weight_decay': 1e-3}, 100),
5757
(DiffRGrad, {'lr': 5e-1, 'weight_decay': 1e-3}, 100),
5858
(Lamb, {'lr': 1e-1, 'weight_decay': 1e-3}, 100),
59-
(Lamb, {'lr': 1e-1, 'weight_decay': 1e-3, 'adam': True, 'eps': 1e-8}, 300),
60-
(Lamb, {'lr': 1e-1, 'weight_decay': 1e-3, 'pre_norm': True, 'eps': 1e-8}, 100),
59+
(Lamb, {'lr': 1e-1, 'weight_decay': 1e-3, 'adam': True, 'eps': 1e-8}, 100),
60+
(Lamb, {'lr': 1e-1, 'weight_decay': 1e-3, 'pre_norm': True, 'eps': 1e-8}, 300),
6161
(LARS, {'lr': 1e-1, 'weight_decay': 1e-3}, 300),
6262
(RaLamb, {'lr': 1e-1, 'weight_decay': 1e-4}, 100),
6363
(RaLamb, {'lr': 1e-2, 'weight_decay': 1e-4, 'pre_norm': True}, 100),

0 commit comments

Comments
 (0)