12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- _BASE_: [
- 'bytetrack_ppyoloe.yml',
- '_base_/ppyoloe_mot_reader_640x640.yml'
- ]
- weights: output/bytetrack_ppyoloe_ppvehicle9cls/model_final
- metric: MCMOT
- num_classes: 9
- TestMOTDataset:
- !MOTImageFolder
- dataset_dir: dataset/mot
- keep_ori_im: True
- anno_path: dataset/mot/label_list.txt
- det_weights: https://paddledet.bj.bcebos.com/models/mot_ppyoloe_l_36e_ppvehicle9cls.pdparams
- depth_mult: 1.0
- width_mult: 1.0
- PPYOLOEHead:
- nms:
- name: MultiClassNMS
- nms_top_k: 1000
- keep_top_k: 100
- score_threshold: 0.1
- nms_threshold: 0.4
- JDETracker:
- use_byte: True
- match_thres: 0.9
- conf_thres: 0.2
- low_conf_thres: 0.1
- min_box_area: 0
- vertical_ratio: 0
|