123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- _BASE_: [
- '../datasets/coco_detection.yml',
- '../runtime.yml',
- '_base_/picodet_v2.yml',
- '_base_/optimizer_300e.yml',
- '_base_/picodet_320_reader.yml',
- ]
- pretrain_weights: https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/legendary_models/PPLCNet_x0_75_pretrained.pdparams
- weights: output/picodet_s_320_coco/best_model
- find_unused_parameters: True
- use_ema: true
- epoch: 300
- snapshot_epoch: 10
- LCNet:
- scale: 0.75
- feature_maps: [3, 4, 5]
- LCPAN:
- out_channels: 96
- PicoHeadV2:
- conv_feat:
- name: PicoFeat
- feat_in: 96
- feat_out: 96
- num_convs: 2
- num_fpn_stride: 4
- norm_type: bn
- share_cls_reg: True
- use_se: True
- feat_in_chan: 96
- TrainReader:
- batch_size: 64
- LearningRate:
- base_lr: 0.32
- schedulers:
- - !CosineDecay
- max_epochs: 300
- - !LinearWarmup
- start_factor: 0.1
- steps: 300
|