gitextract_r25kqp43/ ├── LICENSE ├── NOTICE ├── README.md ├── configs/ │ ├── r50_deformable_detr.sh │ ├── r50_efficient_detr.sh │ ├── r50_sparse_detr_rho_0.1.sh │ ├── r50_sparse_detr_rho_0.2.sh │ ├── r50_sparse_detr_rho_0.3.sh │ ├── swint_deformable_detr.sh │ ├── swint_efficient_detr.sh │ ├── swint_sparse_detr_rho_0.1.sh │ ├── swint_sparse_detr_rho_0.2.sh │ └── swint_sparse_detr_rho_0.3.sh ├── datasets/ │ ├── __init__.py │ ├── coco.py │ ├── coco_eval.py │ ├── coco_panoptic.py │ ├── data_prefetcher.py │ ├── panoptic_eval.py │ ├── samplers.py │ ├── torchvision_datasets/ │ │ ├── __init__.py │ │ └── coco.py │ └── transforms.py ├── engine.py ├── main.py ├── models/ │ ├── __init__.py │ ├── backbone.py │ ├── deformable_detr.py │ ├── deformable_transformer.py │ ├── matcher.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 │ ├── segmentation.py │ └── swin_transformer/ │ ├── __init__.py │ ├── build.py │ ├── config.py │ ├── configs/ │ │ ├── default.yaml │ │ ├── swin_base_patch4_window7_224.yaml │ │ ├── swin_large_patch4_window7_224.yaml │ │ ├── swin_small_patch4_window7_224.yaml │ │ └── swin_tiny_patch4_window7_224.yaml │ └── swin_transformer.py ├── requirements.txt ├── tools/ │ ├── launch.py │ └── run_dist_launch.sh └── util/ ├── __init__.py ├── benchmark.py ├── box_ops.py ├── dam.py ├── misc.py └── plot_utils.py