pgd_r101-caffe_fpn_head-gn_16xb2-2x_nus-mono3d.py 403 Bytes
Newer Older
1
_base_ = './pgd_r101-caffe_fpn_head-gn_16xb2-1x_nus-mono3d.py'
2

3
# learning policy
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
param_scheduler = [
    dict(
        type='LinearLR',
        start_factor=1.0 / 3,
        by_epoch=False,
        begin=0,
        end=500),
    dict(
        type='MultiStepLR',
        begin=0,
        end=24,
        by_epoch=True,
        milestones=[16, 22],
        gamma=0.1)
]

train_cfg = dict(max_epochs=24)