Mmdetection: How to set cosine lr update in config

Created on 29 Mar 2020  路  1Comment  路  Source: open-mmlab/mmdetection

Most helpful comment

lr_config = dict(
    policy='cosine',
    warmup='linear',
    warmup_iters=250,
    warmup_ratio=1.0 / 3,
    step=[8, 11])

Something like that?

>All comments

lr_config = dict(
    policy='cosine',
    warmup='linear',
    warmup_iters=250,
    warmup_ratio=1.0 / 3,
    step=[8, 11])

Something like that?

Was this page helpful?
0 / 5 - 0 ratings