1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- _BASE_: [
- '../../datasets/mot.yml',
- '../../runtime.yml',
- '_base_/optimizer_30e.yml',
- '_base_/jde_darknet53.yml',
- '_base_/jde_reader_864x480.yml',
- ]
- weights: output/jde_darknet53_30e_864x480/model_final
- JDE:
- detector: YOLOv3
- reid: JDEEmbeddingHead
- tracker: JDETracker
- YOLOv3:
- backbone: DarkNet
- neck: YOLOv3FPN
- yolo_head: YOLOv3Head
- post_process: JDEBBoxPostProcess
- for_mot: True
- YOLOv3Head:
- anchors: [[102,305], [143, 429], [203,508], [407,508],
- [25,76], [36,107], [51,152], [71,215],
- [6,19], [9,27], [13,38], [18,54]]
- anchor_masks: [[0, 1, 2, 3], [4, 5, 6, 7], [8, 9, 10, 11]]
- loss: JDEDetectionLoss
- JDETracker:
- det_thresh: 0.3
- track_buffer: 30
- min_box_area: 200
- motion: KalmanFilter
- JDEBBoxPostProcess:
- decode:
- name: JDEBox
- conf_thresh: 0.5
- downsample_ratio: 32
- nms:
- name: MultiClassNMS
- keep_top_k: 500
- score_threshold: 0.01
- nms_threshold: 0.4
- nms_top_k: 2000
- normalized: true
- return_index: true
|