picodet_l_320_coco.yml 913 字节
Newer Older
G
Guanghua Yu 已提交
1 2 3
_BASE_: [
  '../datasets/coco_detection.yml',
  '../runtime.yml',
4
  '_base_/picodet_esnet.yml',
G
Guanghua Yu 已提交
5
  '_base_/optimizer_300e.yml',
G
Guanghua Yu 已提交
6 7 8
  '_base_/picodet_320_reader.yml',
]

9 10
pretrain_weights: https://paddledet.bj.bcebos.com/models/pretrained/ESNet_x1_25_pretrained.pdparams
weights: output/picodet_l_320_coco/model_final
G
Guanghua Yu 已提交
11 12
find_unused_parameters: True
use_ema: true
G
Guanghua Yu 已提交
13
cycle_epoch: 40
G
Guanghua Yu 已提交
14
snapshot_epoch: 10
G
Guanghua Yu 已提交
15
epoch: 250
G
Guanghua Yu 已提交
16

17 18 19 20 21
ESNet:
  scale: 1.25
  feature_maps: [4, 11, 14]
  act: hard_swish
  channel_ratio: [0.875, 0.5, 1.0, 0.625, 0.5, 0.75, 0.625, 0.625, 0.5, 0.625, 1.0, 0.625, 0.75]
G
Guanghua Yu 已提交
22 23 24 25 26 27

PicoHead:
  conv_feat:
    name: PicoFeat
    feat_in: 128
    feat_out: 128
28 29
    num_convs: 4
    num_fpn_stride: 4
G
Guanghua Yu 已提交
30
    norm_type: bn
31
    share_cls_reg: False
G
Guanghua Yu 已提交
32 33 34 35 36 37 38 39 40
  feat_in_chan: 128

TrainReader:
  batch_size: 56

LearningRate:
  base_lr: 0.3
  schedulers:
  - !CosineDecay
41
    max_epochs: 300
G
Guanghua Yu 已提交
42 43 44
  - !LinearWarmup
    start_factor: 0.1
    steps: 300