How to properly use of step in lr_config? #9163
-
Been seeing How do you properly configure that step? Say, the epoch I put is 75. What should be the step? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
It doesn't have a rule to set the step. The step used in mmdetection is as same as it in detectron2. In your situation, you can simply linearly expand the [8, 11, 12] step schedule to totally 75 epochs. |
Beta Was this translation helpful? Give feedback.
-
So the |
Beta Was this translation helpful? Give feedback.
-
You can use [50, 69] which is equal to [8, 11] x (75/12). |
Beta Was this translation helpful? Give feedback.
-
The steps are usually empirically tuned for different epochs to reduce the overfitting and achieve better performance. We suggest you follow the existing configs of supported datasets and models in MMDetection. |
Beta Was this translation helpful? Give feedback.
The steps are usually empirically tuned for different epochs to reduce the overfitting and achieve better performance. We suggest you follow the existing configs of supported datasets and models in MMDetection.