├── .gitignore ├── index.py ├── init.sh ├── projects ├── CO-DETR │ ├── README.md │ ├── codetr │ │ ├── __init__.py │ │ ├── co_atss_head.py │ │ ├── co_dino_head.py │ │ ├── co_roi_head.py │ │ ├── codetr.py │ │ └── transformer.py │ └── configs │ │ └── codino │ │ ├── co_dino_5scale_r50_8xb2_1x_coco.py │ │ ├── co_dino_5scale_r50_lsj_8xb2_1x_coco.py │ │ ├── co_dino_5scale_r50_lsj_8xb2_3x_coco.py │ │ ├── co_dino_5scale_swin_l_16xb1_16e_o365tococo.py │ │ ├── co_dino_5scale_swin_l_16xb1_1x_coco.py │ │ ├── co_dino_5scale_swin_l_16xb1_3x_coco.py │ │ ├── co_dino_5scale_swin_l_lsj_16xb1_1x_coco.py │ │ └── co_dino_5scale_swin_l_lsj_16xb1_3x_coco.py └── gaiic2014 │ ├── configs │ ├── codetr_all_in_one.py │ ├── codetr_all_in_one_strong_aug.py │ ├── codetr_all_in_one_strong_aug_with_pretrain.py │ ├── codetr_full_0518data.py │ ├── mean_fuse.py │ ├── mean_fuse_with_pretrained.py │ └── pretrain.py │ └── core │ ├── __init__.py │ ├── dataset.py │ ├── hooks.py │ ├── metrics.py │ └── model.py ├── readme.md ├── scripts ├── 51.py ├── cvat2gaiic.py ├── ensemble.py ├── external_data.py ├── make_test_json_input.py ├── patch_ckpt.py ├── split_nfold.py ├── submit.py ├── trim_ckpt.py └── vis_anno.py ├── test.sh ├── tools ├── analysis_tools │ ├── analyze_logs.py │ ├── analyze_results.py │ ├── benchmark.py │ ├── browse_dataset.py │ ├── browse_grounding_dataset.py │ ├── browse_grounding_raw.py │ ├── coco_error_analysis.py │ ├── coco_occluded_separated_recall.py │ ├── confusion_matrix.py │ ├── eval_metric.py │ ├── fuse_results.py │ ├── get_flops.py │ ├── mot │ │ ├── browse_dataset.py │ │ ├── dist_mot_search.sh │ │ ├── mot_error_visualize.py │ │ ├── mot_param_search.py │ │ └── slurm_mot_search.sh │ ├── optimize_anchors.py │ ├── robustness_eval.py │ └── test_robustness.py ├── dataset_converters │ ├── ade20k2coco.py │ ├── cityscapes.py │ ├── coco2odvg.py │ ├── coco2ovd.py │ ├── coco_stuff164k.py │ ├── crowdhuman2coco.py │ ├── extract_coco_from_mixed.py │ ├── fix_o365_names.py │ ├── goldg2odvg.py │ ├── grit2odvg.py │ ├── grit_processing.py │ ├── images2coco.py │ ├── lvis2odvg.py │ ├── lvis2ovd.py │ ├── mot2coco.py │ ├── mot2reid.py │ ├── openimages2odvg.py │ ├── pascal_voc.py │ ├── prepare_coco_semantic_annos_from_panoptic_annos.py │ ├── refcoco2odvg.py │ ├── remove_cocotrain2017_from_refcoco.py │ ├── scripts │ │ ├── preprocess_coco2017.sh │ │ ├── preprocess_voc2007.sh │ │ └── preprocess_voc2012.sh │ └── youtubevis2coco.py ├── deployment │ ├── mmdet2torchserve.py │ ├── mmdet_handler.py │ └── test_torchserver.py ├── dist_test.sh ├── dist_test_tracking.sh ├── dist_train.sh ├── dist_train_nfold.sh ├── misc │ ├── download_dataset.py │ ├── gen_coco_panoptic_test_info.py │ ├── get_crowdhuman_id_hw.py │ ├── get_image_metas.py │ ├── print_config.py │ ├── split_coco.py │ └── split_odvg.py ├── model_converters │ ├── detectron2_to_mmdet.py │ ├── detectron2pytorch.py │ ├── detic_to_mmdet.py │ ├── glip_to_mmdet.py │ ├── groundingdino_to_mmdet.py │ ├── publish_model.py │ ├── regnet2mmdet.py │ ├── selfsup2mmdet.py │ ├── swinv1_to_mmdet.py │ ├── upgrade_model_version.py │ └── upgrade_ssd_version.py ├── slurm_test.sh ├── slurm_test_tracking.sh ├── slurm_train.sh ├── test.py ├── test_tracking.py ├── train.py └── val.py └── train.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/.gitignore -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/index.py -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/init.sh -------------------------------------------------------------------------------- /projects/CO-DETR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/README.md -------------------------------------------------------------------------------- /projects/CO-DETR/codetr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/codetr/__init__.py -------------------------------------------------------------------------------- /projects/CO-DETR/codetr/co_atss_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/codetr/co_atss_head.py -------------------------------------------------------------------------------- /projects/CO-DETR/codetr/co_dino_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/codetr/co_dino_head.py -------------------------------------------------------------------------------- /projects/CO-DETR/codetr/co_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/codetr/co_roi_head.py -------------------------------------------------------------------------------- /projects/CO-DETR/codetr/codetr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/codetr/codetr.py -------------------------------------------------------------------------------- /projects/CO-DETR/codetr/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/codetr/transformer.py -------------------------------------------------------------------------------- /projects/CO-DETR/configs/codino/co_dino_5scale_r50_8xb2_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/configs/codino/co_dino_5scale_r50_8xb2_1x_coco.py -------------------------------------------------------------------------------- /projects/CO-DETR/configs/codino/co_dino_5scale_r50_lsj_8xb2_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/configs/codino/co_dino_5scale_r50_lsj_8xb2_1x_coco.py -------------------------------------------------------------------------------- /projects/CO-DETR/configs/codino/co_dino_5scale_r50_lsj_8xb2_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/configs/codino/co_dino_5scale_r50_lsj_8xb2_3x_coco.py -------------------------------------------------------------------------------- /projects/CO-DETR/configs/codino/co_dino_5scale_swin_l_16xb1_16e_o365tococo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/configs/codino/co_dino_5scale_swin_l_16xb1_16e_o365tococo.py -------------------------------------------------------------------------------- /projects/CO-DETR/configs/codino/co_dino_5scale_swin_l_16xb1_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/configs/codino/co_dino_5scale_swin_l_16xb1_1x_coco.py -------------------------------------------------------------------------------- /projects/CO-DETR/configs/codino/co_dino_5scale_swin_l_16xb1_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/configs/codino/co_dino_5scale_swin_l_16xb1_3x_coco.py -------------------------------------------------------------------------------- /projects/CO-DETR/configs/codino/co_dino_5scale_swin_l_lsj_16xb1_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/configs/codino/co_dino_5scale_swin_l_lsj_16xb1_1x_coco.py -------------------------------------------------------------------------------- /projects/CO-DETR/configs/codino/co_dino_5scale_swin_l_lsj_16xb1_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/CO-DETR/configs/codino/co_dino_5scale_swin_l_lsj_16xb1_3x_coco.py -------------------------------------------------------------------------------- /projects/gaiic2014/configs/codetr_all_in_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/gaiic2014/configs/codetr_all_in_one.py -------------------------------------------------------------------------------- /projects/gaiic2014/configs/codetr_all_in_one_strong_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/gaiic2014/configs/codetr_all_in_one_strong_aug.py -------------------------------------------------------------------------------- /projects/gaiic2014/configs/codetr_all_in_one_strong_aug_with_pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/gaiic2014/configs/codetr_all_in_one_strong_aug_with_pretrain.py -------------------------------------------------------------------------------- /projects/gaiic2014/configs/codetr_full_0518data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/gaiic2014/configs/codetr_full_0518data.py -------------------------------------------------------------------------------- /projects/gaiic2014/configs/mean_fuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/gaiic2014/configs/mean_fuse.py -------------------------------------------------------------------------------- /projects/gaiic2014/configs/mean_fuse_with_pretrained.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/gaiic2014/configs/mean_fuse_with_pretrained.py -------------------------------------------------------------------------------- /projects/gaiic2014/configs/pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/gaiic2014/configs/pretrain.py -------------------------------------------------------------------------------- /projects/gaiic2014/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/gaiic2014/core/__init__.py -------------------------------------------------------------------------------- /projects/gaiic2014/core/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/gaiic2014/core/dataset.py -------------------------------------------------------------------------------- /projects/gaiic2014/core/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/gaiic2014/core/hooks.py -------------------------------------------------------------------------------- /projects/gaiic2014/core/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/gaiic2014/core/metrics.py -------------------------------------------------------------------------------- /projects/gaiic2014/core/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/projects/gaiic2014/core/model.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/scripts/51.py -------------------------------------------------------------------------------- /scripts/cvat2gaiic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/scripts/cvat2gaiic.py -------------------------------------------------------------------------------- /scripts/ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/scripts/ensemble.py -------------------------------------------------------------------------------- /scripts/external_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/scripts/external_data.py -------------------------------------------------------------------------------- /scripts/make_test_json_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/scripts/make_test_json_input.py -------------------------------------------------------------------------------- /scripts/patch_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/scripts/patch_ckpt.py -------------------------------------------------------------------------------- /scripts/split_nfold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/scripts/split_nfold.py -------------------------------------------------------------------------------- /scripts/submit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/scripts/submit.py -------------------------------------------------------------------------------- /scripts/trim_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/scripts/trim_ckpt.py -------------------------------------------------------------------------------- /scripts/vis_anno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/scripts/vis_anno.py -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/test.sh -------------------------------------------------------------------------------- /tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /tools/analysis_tools/analyze_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/analyze_results.py -------------------------------------------------------------------------------- /tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /tools/analysis_tools/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/browse_dataset.py -------------------------------------------------------------------------------- /tools/analysis_tools/browse_grounding_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/browse_grounding_dataset.py -------------------------------------------------------------------------------- /tools/analysis_tools/browse_grounding_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/browse_grounding_raw.py -------------------------------------------------------------------------------- /tools/analysis_tools/coco_error_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/coco_error_analysis.py -------------------------------------------------------------------------------- /tools/analysis_tools/coco_occluded_separated_recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/coco_occluded_separated_recall.py -------------------------------------------------------------------------------- /tools/analysis_tools/confusion_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/confusion_matrix.py -------------------------------------------------------------------------------- /tools/analysis_tools/eval_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/eval_metric.py -------------------------------------------------------------------------------- /tools/analysis_tools/fuse_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/fuse_results.py -------------------------------------------------------------------------------- /tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /tools/analysis_tools/mot/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/mot/browse_dataset.py -------------------------------------------------------------------------------- /tools/analysis_tools/mot/dist_mot_search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/mot/dist_mot_search.sh -------------------------------------------------------------------------------- /tools/analysis_tools/mot/mot_error_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/mot/mot_error_visualize.py -------------------------------------------------------------------------------- /tools/analysis_tools/mot/mot_param_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/mot/mot_param_search.py -------------------------------------------------------------------------------- /tools/analysis_tools/mot/slurm_mot_search.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/mot/slurm_mot_search.sh -------------------------------------------------------------------------------- /tools/analysis_tools/optimize_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/optimize_anchors.py -------------------------------------------------------------------------------- /tools/analysis_tools/robustness_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/robustness_eval.py -------------------------------------------------------------------------------- /tools/analysis_tools/test_robustness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/analysis_tools/test_robustness.py -------------------------------------------------------------------------------- /tools/dataset_converters/ade20k2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/ade20k2coco.py -------------------------------------------------------------------------------- /tools/dataset_converters/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/cityscapes.py -------------------------------------------------------------------------------- /tools/dataset_converters/coco2odvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/coco2odvg.py -------------------------------------------------------------------------------- /tools/dataset_converters/coco2ovd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/coco2ovd.py -------------------------------------------------------------------------------- /tools/dataset_converters/coco_stuff164k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/coco_stuff164k.py -------------------------------------------------------------------------------- /tools/dataset_converters/crowdhuman2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/crowdhuman2coco.py -------------------------------------------------------------------------------- /tools/dataset_converters/extract_coco_from_mixed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/extract_coco_from_mixed.py -------------------------------------------------------------------------------- /tools/dataset_converters/fix_o365_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/fix_o365_names.py -------------------------------------------------------------------------------- /tools/dataset_converters/goldg2odvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/goldg2odvg.py -------------------------------------------------------------------------------- /tools/dataset_converters/grit2odvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/grit2odvg.py -------------------------------------------------------------------------------- /tools/dataset_converters/grit_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/grit_processing.py -------------------------------------------------------------------------------- /tools/dataset_converters/images2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/images2coco.py -------------------------------------------------------------------------------- /tools/dataset_converters/lvis2odvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/lvis2odvg.py -------------------------------------------------------------------------------- /tools/dataset_converters/lvis2ovd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/lvis2ovd.py -------------------------------------------------------------------------------- /tools/dataset_converters/mot2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/mot2coco.py -------------------------------------------------------------------------------- /tools/dataset_converters/mot2reid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/mot2reid.py -------------------------------------------------------------------------------- /tools/dataset_converters/openimages2odvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/openimages2odvg.py -------------------------------------------------------------------------------- /tools/dataset_converters/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/pascal_voc.py -------------------------------------------------------------------------------- /tools/dataset_converters/prepare_coco_semantic_annos_from_panoptic_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/prepare_coco_semantic_annos_from_panoptic_annos.py -------------------------------------------------------------------------------- /tools/dataset_converters/refcoco2odvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/refcoco2odvg.py -------------------------------------------------------------------------------- /tools/dataset_converters/remove_cocotrain2017_from_refcoco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/remove_cocotrain2017_from_refcoco.py -------------------------------------------------------------------------------- /tools/dataset_converters/scripts/preprocess_coco2017.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/scripts/preprocess_coco2017.sh -------------------------------------------------------------------------------- /tools/dataset_converters/scripts/preprocess_voc2007.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/scripts/preprocess_voc2007.sh -------------------------------------------------------------------------------- /tools/dataset_converters/scripts/preprocess_voc2012.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/scripts/preprocess_voc2012.sh -------------------------------------------------------------------------------- /tools/dataset_converters/youtubevis2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dataset_converters/youtubevis2coco.py -------------------------------------------------------------------------------- /tools/deployment/mmdet2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/deployment/mmdet2torchserve.py -------------------------------------------------------------------------------- /tools/deployment/mmdet_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/deployment/mmdet_handler.py -------------------------------------------------------------------------------- /tools/deployment/test_torchserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/deployment/test_torchserver.py -------------------------------------------------------------------------------- /tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dist_test.sh -------------------------------------------------------------------------------- /tools/dist_test_tracking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dist_test_tracking.sh -------------------------------------------------------------------------------- /tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dist_train.sh -------------------------------------------------------------------------------- /tools/dist_train_nfold.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/dist_train_nfold.sh -------------------------------------------------------------------------------- /tools/misc/download_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/misc/download_dataset.py -------------------------------------------------------------------------------- /tools/misc/gen_coco_panoptic_test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/misc/gen_coco_panoptic_test_info.py -------------------------------------------------------------------------------- /tools/misc/get_crowdhuman_id_hw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/misc/get_crowdhuman_id_hw.py -------------------------------------------------------------------------------- /tools/misc/get_image_metas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/misc/get_image_metas.py -------------------------------------------------------------------------------- /tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/misc/print_config.py -------------------------------------------------------------------------------- /tools/misc/split_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/misc/split_coco.py -------------------------------------------------------------------------------- /tools/misc/split_odvg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/misc/split_odvg.py -------------------------------------------------------------------------------- /tools/model_converters/detectron2_to_mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/model_converters/detectron2_to_mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/detectron2pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/model_converters/detectron2pytorch.py -------------------------------------------------------------------------------- /tools/model_converters/detic_to_mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/model_converters/detic_to_mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/glip_to_mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/model_converters/glip_to_mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/groundingdino_to_mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/model_converters/groundingdino_to_mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/model_converters/publish_model.py -------------------------------------------------------------------------------- /tools/model_converters/regnet2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/model_converters/regnet2mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/selfsup2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/model_converters/selfsup2mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/swinv1_to_mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/model_converters/swinv1_to_mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/upgrade_model_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/model_converters/upgrade_model_version.py -------------------------------------------------------------------------------- /tools/model_converters/upgrade_ssd_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/model_converters/upgrade_ssd_version.py -------------------------------------------------------------------------------- /tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/slurm_test.sh -------------------------------------------------------------------------------- /tools/slurm_test_tracking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/slurm_test_tracking.sh -------------------------------------------------------------------------------- /tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/slurm_train.sh -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/test_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/test_tracking.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/train.py -------------------------------------------------------------------------------- /tools/val.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/tools/val.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Legend94rz/gaiic2024/HEAD/train.sh --------------------------------------------------------------------------------