Meta Byte Track
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # QDTrack_reid_motion
  2. Step1. git clone https://github.com/SysCV/qdtrack.git and train
  3. Step2.
  4. replace https://github.com/SysCV/qdtrack/blob/master/qdtrack/models/mot/qdtrack.py
  5. add mot_online to https://github.com/SysCV/qdtrack
  6. add tracker_reid_motion.py to https://github.com/SysCV/qdtrack and rename to tracker.py
  7. Step3. download qdtrack model trained on mot17 half training set: [google](https://drive.google.com/file/d/1IfM8i0R0lF_4NOgeloMPFo5d52dqhaHW/view?usp=sharing), [baidu(code:whcc)](https://pan.baidu.com/s/1IYRD3V2YOa6-YNFgMQyv7w)
  8. Step4. run
  9. ```
  10. python3 -m torch.distributed.launch --nproc_per_node=8 --master_port=29501 tools/test.py configs/mot17/qdtrack-frcnn_r50_fpn_4e_mot17.py work_dirs/mot17_half_qdtrack.pth --launcher pytorch --eval track --eval-options resfile_path=output
  11. ```
  12. # QDTrack_BYTE
  13. Step1. git clone https://github.com/SysCV/qdtrack.git and train
  14. Step2.
  15. replace https://github.com/SysCV/qdtrack/blob/master/qdtrack/models/mot/qdtrack.py
  16. add mot_online to https://github.com/SysCV/qdtrack
  17. add byte_tracker.py to https://github.com/SysCV/qdtrack
  18. Step3. run
  19. ```
  20. python3 -m torch.distributed.launch --nproc_per_node=8 --master_port=29501 tools/test.py configs/mot17/qdtrack-frcnn_r50_fpn_4e_mot17.py work_dirs/mot17_half_qdtrack.pth --launcher pytorch --eval track --eval-options resfile_path=output
  21. ```