aboutsummaryrefslogtreecommitdiff
path: root/simclr/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'simclr/main.py')
-rw-r--r--simclr/main.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/simclr/main.py b/simclr/main.py
index b91b42b..69e2ab2 100644
--- a/simclr/main.py
+++ b/simclr/main.py
@@ -93,8 +93,9 @@ def parse_args_and_config():
optim_group.add_argument('--weight-decay', default=1e-6, type=float,
help='Weight decay (l2 regularization)')
- sched_group = parser.add_argument_group('Optimizer parameters')
+ sched_group = parser.add_argument_group('Scheduler parameters')
sched_group.add_argument('--sched', default='warmup-anneal', type=str,
+ choices=('const', None, 'linear', 'warmup-anneal'),
help="Name of scheduler")
sched_group.add_argument('--warmup-iters', default=2344, type=int,
help='Epochs for warmup (`warmup-anneal` scheduler only)')