[Bug] accumulative_counts
does not apply to parameter_schedulers
#1308
Labels
bug
Something isn't working
accumulative_counts
does not apply to parameter_schedulers
#1308
The accurate cumulative pipeline should be as follows:
However, the condition
idx % accumulative_counts
is only relevant to theOptimWrapper
in this context:mmengine/mmengine/optim/optimizer/optimizer_wrapper.py
Line 339 in a483dba
Meanwhile, the schedulers continue to update the learning rate at their original frequency. In this case, the pipeline looks like this:
We need to fix this.
The text was updated successfully, but these errors were encountered: