Skip to content

Latest commit

 

History

History
38 lines (37 loc) · 2.66 KB

README.md

File metadata and controls

38 lines (37 loc) · 2.66 KB

GA_FairMOT(Low-illumination scenes)

1 Research Base

1.1 Thesis Research Sources

FairMOT is a joint initiative of Huazhong University of Science and Technology and Microsoft Research Asia,Thesis AddressFairMOT: On the Fairness of Detection and Re-Identification in Multiple Object Tracking,This project is a further improvement on its basis to provide a theoretical basis for the research.

1.2 Code Base Source

The original FairMOT model code is derived fromPaddleDetection,End-to-end vision suite based on Flying PaddlePaddle, covering target detection, instance segmentation, tracking, key point detection and other directions, providing a code base for model model research。

1.3 Data Source

MOT17 public data is derived frommotchallenge,An important benchmark in the field of multi-objective tracking is MOTChallenge, which is a public platform for uploading and publishing research results of multi-objective tracking methods and has the largest publicly available pedestrian tracking dataset.

1.4 AI Community Sharing

AI StudioIt is an AI learning and practical training community based on Baidu's deep learning open source platform Flying Paddle, which provides developers with a powerful online training environment, free GPU computing power and storage resources.LuGuThis is my community account, welcome to discuss and learn from the big guys。

2 Project Document Introduction

  1. requirements.txt:Code to run the installation configuration file
  2. configs:Configuration files for model runs
  3. dataset:Dataset storage file
  4. ppdet:Model storage file containing the individual model blocks
  5. tools.:Training, Prediction files
  6. output:Weighted files, weighted downloads atGoogle Cloud Drive

3 Project Operation Steps

  1. Installing dependencies
pip install -r requirements.txt
  1. Model Training
 CUDA_VISIBLE_DEVICES=0 
 !python -u tools/train.py \ 
 -c configs/fairmot/fairmot_dla34_30e_576x320.yml \
  1. Model Evaluation
CUDA_VISIBLE_DEVICES=0 
!python tools/eval_mot.py \ 
-c configs/fairmot/fairmot_dla34_30e_1088x608.yml \ 
-o weights=output/T_724fairmot_dla34_30e_1088x608/model_final.pdparams