We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43a35a9 commit 719b493Copy full SHA for 719b493
tests/test_optimizers.py
@@ -67,7 +67,7 @@
67
(SGDP, {'lr': 2e-1, 'weight_decay': 1e-3, 'nesterov': True}, 500),
68
(Ranger, {'lr': 5e-1, 'weight_decay': 1e-3}, 200),
69
(Ranger21, {'lr': 5e-1, 'weight_decay': 1e-3, 'num_iterations': 500}, 500),
70
- (Shampoo, {'lr': 5e-1, 'weight_decay': 1e-3}, 200),
+ (Shampoo, {'lr': 3e-1, 'weight_decay': 1e-3, 'momentum': 0.05}, 500),
71
]
72
73
ADAMD_SUPPORTED_OPTIMIZERS: List[Tuple[Any, Dict[str, Union[float, bool, int]], int]] = [
0 commit comments