gitextract_mj3tn03w/ ├── .gitignore ├── LICENSE ├── README.md ├── benchmark.py ├── configs/ │ ├── r50_deformable_detr.sh │ ├── r50_deformable_detr_plus_iterative_bbox_refinement.sh │ ├── r50_deformable_detr_plus_iterative_bbox_refinement_plus_plus_two_stage.sh │ ├── r50_deformable_detr_single_scale.sh │ ├── r50_deformable_detr_single_scale_dc5.sh │ ├── r50_motr_demo.sh │ ├── r50_motr_eval.sh │ ├── r50_motr_submit.sh │ ├── r50_motr_submit_dance.sh │ ├── r50_motr_train.sh │ └── r50_motr_train_dance.sh ├── datasets/ │ ├── __init__.py │ ├── coco.py │ ├── coco_eval.py │ ├── coco_panoptic.py │ ├── dance.py │ ├── data_path/ │ │ ├── bdd100k.val │ │ ├── crowdhuman.val │ │ ├── gen_bdd100k_mot.py │ │ ├── gen_labels_15.py │ │ ├── gen_labels_16.py │ │ └── prepare.py │ ├── data_prefetcher.py │ ├── detmot.py │ ├── joint.py │ ├── panoptic_eval.py │ ├── samplers.py │ ├── static_detmot.py │ ├── torchvision_datasets/ │ │ ├── __init__.py │ │ └── coco.py │ └── transforms.py ├── demo.py ├── engine.py ├── eval.py ├── main.py ├── models/ │ ├── __init__.py │ ├── backbone.py │ ├── deformable_detr.py │ ├── deformable_transformer.py │ ├── deformable_transformer_plus.py │ ├── matcher.py │ ├── memory_bank.py │ ├── motr.py │ ├── ops/ │ │ ├── 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 │ ├── position_encoding.py │ ├── qim.py │ ├── relu_dropout.py │ ├── segmentation.py │ └── structures/ │ ├── __init__.py │ ├── boxes.py │ └── instances.py ├── requirements.txt ├── submit.py ├── submit_dance.py ├── tools/ │ ├── launch.py │ ├── run_dist_launch.sh │ └── run_dist_slurm.sh └── util/ ├── __init__.py ├── box_ops.py ├── checkpoint.py ├── evaluation.py ├── misc.py ├── motdet_eval.py ├── plot_utils.py └── tool.py