From 270520c864ef4c659962a92cfbe4df52f6f512a6 Mon Sep 17 00:00:00 2001 From: "zuchen.wang" Date: Wed, 17 Nov 2021 16:42:35 +0800 Subject: [PATCH] change MultiStepLr intervals --- fastreid/config/defaults.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastreid/config/defaults.py b/fastreid/config/defaults.py index 2aeb828..1a78cbe 100644 --- a/fastreid/config/defaults.py +++ b/fastreid/config/defaults.py @@ -286,7 +286,7 @@ _C.SOLVER.SCHED = "MultiStepLR" _C.SOLVER.DELAY_EPOCHS = 0 _C.SOLVER.GAMMA = 0.1 -_C.SOLVER.STEPS = [30, 55] +_C.SOLVER.STEPS = [100, 200, 250] # Cosine annealing learning rate options _C.SOLVER.ETA_MIN_LR = 1e-7