OpenMMLab Detection Toolbox and Benchmark
https://mmdetection.readthedocs.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
283 B
12 lines
283 B
5 years ago
|
# optimizer
|
||
|
optimizer = dict(type='SGD', lr=0.02, momentum=0.9, weight_decay=0.0001)
|
||
|
optimizer_config = dict(grad_clip=None)
|
||
|
# learning policy
|
||
|
lr_config = dict(
|
||
|
policy='step',
|
||
|
warmup='linear',
|
||
|
warmup_iters=500,
|
||
|
warmup_ratio=0.001,
|
||
|
step=[8, 11])
|
||
|
total_epochs = 12
|