12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- _BASE_: [
- '../datasets/voc.yml',
- '../runtime.yml',
- './_base_/optimizer_80e.yml',
- './_base_/ppyoloe_plus_crn.yml',
- './_base_/ppyoloe_plus_reader.yml',
- ]
- log_iter: 100
- snapshot_epoch: 5
- weights: output/ppyoloe_plus_crn_l_30e_voc/model_final
- pretrain_weights: https://bj.bcebos.com/v1/paddledet/models/ppyoloe_plus_crn_l_80e_coco.pdparams
- depth_mult: 1.0
- width_mult: 1.0
- TrainReader:
- batch_size: 8 # default 8 gpus, total bs = 64
- EvalReader:
- batch_size: 4
- epoch: 30
- LearningRate:
- base_lr: 0.001
- schedulers:
- - !CosineDecay
- max_epochs: 36
- - !LinearWarmup
- start_factor: 0.
- epochs: 1
- PPYOLOEHead:
- static_assigner_epoch: -1
- nms:
- name: MultiClassNMS
- nms_top_k: 1000
- keep_top_k: 300
- score_threshold: 0.01
- nms_threshold: 0.7
|