gitextract_f7imb6c9/ ├── .circleci/ │ └── config.yml ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ └── ISSUE_TEMPLATE/ │ ├── bugs.md │ ├── questions-help-support.md │ └── unexpected-problems-bugs.md ├── .gitignore ├── LICENSE ├── README.md ├── cfgs/ │ ├── submit.yaml │ ├── track.yaml │ ├── track_reid.yaml │ ├── train.yaml │ ├── train_coco_person_masks.yaml │ ├── train_crowdhuman.yaml │ ├── train_deformable.yaml │ ├── train_full_res.yaml │ ├── train_mot17.yaml │ ├── train_mot17_crowdhuman.yaml │ ├── train_mot20_crowdhuman.yaml │ ├── train_mot_coco_person.yaml │ ├── train_mots20.yaml │ ├── train_multi_frame.yaml │ └── train_tracking.yaml ├── data/ │ └── .gitignore ├── docs/ │ ├── INSTALL.md │ └── TRAIN.md ├── logs/ │ ├── .gitignore │ └── visdom/ │ └── .gitignore ├── models/ │ └── .gitignore ├── requirements.txt ├── setup.py └── src/ ├── combine_frames.py ├── compute_best_mean_epoch_from_splits.py ├── generate_coco_from_crowdhuman.py ├── generate_coco_from_mot.py ├── parse_mot_results_to_tex.py ├── run_with_submitit.py ├── track.py ├── track_param_search.py ├── trackformer/ │ ├── __init__.py │ ├── datasets/ │ │ ├── __init__.py │ │ ├── coco.py │ │ ├── coco_eval.py │ │ ├── coco_panoptic.py │ │ ├── crowdhuman.py │ │ ├── mot.py │ │ ├── panoptic_eval.py │ │ ├── tracking/ │ │ │ ├── __init__.py │ │ │ ├── demo_sequence.py │ │ │ ├── factory.py │ │ │ ├── mot17_sequence.py │ │ │ ├── mot20_sequence.py │ │ │ ├── mot_wrapper.py │ │ │ └── mots20_sequence.py │ │ └── transforms.py │ ├── engine.py │ ├── models/ │ │ ├── __init__.py │ │ ├── backbone.py │ │ ├── deformable_detr.py │ │ ├── deformable_transformer.py │ │ ├── detr.py │ │ ├── detr_segmentation.py │ │ ├── detr_tracking.py │ │ ├── matcher.py │ │ ├── ops/ │ │ │ ├── .gitignore │ │ │ ├── functions/ │ │ │ │ ├── __init__.py │ │ │ │ └── ms_deform_attn_func.py │ │ │ ├── make.sh │ │ │ ├── modules/ │ │ │ │ ├── __init__.py │ │ │ │ └── ms_deform_attn.py │ │ │ ├── setup.py │ │ │ ├── src/ │ │ │ │ ├── cpu/ │ │ │ │ │ ├── ms_deform_attn_cpu.cpp │ │ │ │ │ └── ms_deform_attn_cpu.h │ │ │ │ ├── cuda/ │ │ │ │ │ ├── ms_deform_attn_cuda.cu │ │ │ │ │ ├── ms_deform_attn_cuda.h │ │ │ │ │ └── ms_deform_im2col_cuda.cuh │ │ │ │ ├── ms_deform_attn.h │ │ │ │ └── vision.cpp │ │ │ ├── test.py │ │ │ └── test_double_precision.py │ │ ├── position_encoding.py │ │ ├── tracker.py │ │ └── transformer.py │ ├── util/ │ │ ├── __init__.py │ │ ├── box_ops.py │ │ ├── misc.py │ │ ├── plot_utils.py │ │ └── track_utils.py │ └── vis.py └── train.py