├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GETTING_STARTED.md ├── INSTALL.md ├── LICENSE ├── MODEL_ZOO.md ├── README.md ├── TECHNICAL_DETAILS.md ├── configs ├── dcn │ ├── README.md │ ├── cascade_mask_rcnn_dconv_c3-c5_r50_fpn_1x.py │ ├── cascade_rcnn_dconv_c3-c5_r50_fpn_1x.py │ ├── faster_rcnn_dconv_c3-c5_r50_fpn_1x.py │ ├── faster_rcnn_dconv_c3-c5_x101_32x4d_fpn_1x.py │ ├── faster_rcnn_dpool_r50_fpn_1x.py │ ├── faster_rcnn_mdconv_c3-c5_r50_fpn_1x.py │ ├── faster_rcnn_mdpool_r50_fpn_1x.py │ └── mask_rcnn_dconv_c3-c5_r50_fpn_1x.py ├── empirical_attention │ ├── README.md │ ├── faster_rcnn_r50_fpn_attention_0010_1x.py │ ├── faster_rcnn_r50_fpn_attention_0010_dcn_1x.py │ ├── faster_rcnn_r50_fpn_attention_1111_1x.py │ └── faster_rcnn_r50_fpn_attention_1111_dcn_1x.py ├── fcos │ ├── README.md │ ├── fcos_mstrain_640_800_r101_caffe_fpn_gn_2x_4gpu.py │ ├── fcos_mstrain_640_800_x101_64x4d_fpn_gn_2x.py │ └── fcos_r50_caffe_fpn_gn_1x_4gpu.py ├── fp16 │ ├── faster_rcnn_r50_fpn_fp16_1x.py │ ├── mask_rcnn_r50_fpn_fp16_1x.py │ └── retinanet_r50_fpn_fp16_1x.py ├── gcnet │ ├── README.md │ ├── mask_rcnn_r16_gcb_c3-c5_r50_fpn_1x.py │ ├── mask_rcnn_r16_gcb_c3-c5_r50_fpn_syncbn_1x.py │ ├── mask_rcnn_r4_gcb_c3-c5_r50_fpn_1x.py │ ├── mask_rcnn_r4_gcb_c3-c5_r50_fpn_syncbn_1x.py │ └── mask_rcnn_r50_fpn_sbn_1x.py ├── ghm │ ├── README.md │ └── retinanet_ghm_r50_fpn_1x.py ├── gn+ws │ ├── README.md │ ├── faster_rcnn_r50_fpn_gn_ws_1x.py │ ├── mask_rcnn_r50_fpn_gn_ws_20_23_24e.py │ ├── mask_rcnn_r50_fpn_gn_ws_2x.py │ └── mask_rcnn_x101_32x4d_fpn_gn_ws_2x.py ├── gn │ ├── README.md │ ├── mask_rcnn_r101_fpn_gn_2x.py │ ├── mask_rcnn_r50_fpn_gn_2x.py │ └── mask_rcnn_r50_fpn_gn_contrib_2x.py ├── grid_rcnn │ ├── README.md │ ├── grid_rcnn_gn_head_r50_fpn_2x.py │ └── grid_rcnn_gn_head_x101_32x4d_fpn_2x.py ├── guided_anchoring │ ├── README.md │ ├── ga_fast_r50_caffe_fpn_1x.py │ ├── ga_faster_r50_caffe_fpn_1x.py │ ├── ga_faster_x101_32x4d_fpn_1x.py │ ├── ga_retinanet_r50_caffe_fpn_1x.py │ ├── ga_retinanet_x101_32x4d_fpn_1x.py │ ├── ga_rpn_r101_caffe_rpn_1x.py │ ├── ga_rpn_r50_caffe_fpn_1x.py │ └── ga_rpn_x101_32x4d_fpn_1x.py ├── hrnet │ ├── README.md │ ├── cascade_rcnn_hrnetv2p_w32_20e.py │ ├── faster_rcnn_hrnetv2p_w18_1x.py │ ├── faster_rcnn_hrnetv2p_w32_1x.py │ ├── faster_rcnn_hrnetv2p_w40_1x.py │ ├── mask_rcnn_hrnetv2p_w18_1x.py │ └── mask_rcnn_hrnetv2p_w32_1x.py ├── htc │ ├── README.md │ ├── htc_dconv_c3-c5_mstrain_400_1400_x101_64x4d_fpn_20e.py │ ├── htc_r101_fpn_20e.py │ ├── htc_r50_fpn_1x.py │ ├── htc_r50_fpn_20e.py │ ├── htc_without_semantic_r50_fpn_1x.py │ ├── htc_x101_32x4d_fpn_20e_16gpu.py │ └── htc_x101_64x4d_fpn_20e_16gpu.py ├── libra_rcnn │ ├── README.md │ ├── libra_fast_rcnn_r50_fpn_1x.py │ ├── libra_faster_rcnn_r101_fpn_1x.py │ ├── libra_faster_rcnn_r50_fpn_1x.py │ ├── libra_faster_rcnn_x101_64x4d_fpn_1x.py │ └── libra_retinanet_r50_fpn_1x.py ├── ms_rcnn │ ├── README.md │ ├── ms_rcnn_r101_caffe_fpn_1x.py │ ├── ms_rcnn_r50_caffe_fpn_1x.py │ └── ms_rcnn_x101_64x4d_fpn_1x.py ├── pascal_voc │ ├── faster_rcnn_r50_fpn_1x_voc0712.py │ ├── ssd300_voc.py │ └── ssd512_voc.py ├── polarmask │ ├── 32gpu │ │ ├── polar_640_800_2x_r101.py │ │ ├── polar_640_800_2x_r101_dcn2.py │ │ ├── polar_640_800_2x_r50.py │ │ ├── polar_640_800_2x_r50_dcn2.py │ │ ├── polar_640_800_2x_x101.py │ │ ├── polar_640_800_2x_x101_dcn2.py │ │ ├── polar_640_800_6x_r101_dcn2.py │ │ ├── polar_768_1x_r101.py │ │ ├── polar_768_1x_r101_dcn2.py │ │ ├── polar_768_1x_r50.py │ │ ├── polar_768_1x_r50_FastLoader.py │ │ ├── polar_768_1x_r50_dcn2.py │ │ ├── polar_768_1x_x101.py │ │ ├── polar_768_1x_x101_dcn2.py │ │ └── polar_800_1x_r50.py │ ├── 4gpu │ │ ├── polar_768_1x_r101.py │ │ ├── polar_768_1x_r50.py │ │ └── polar_768_1x_x101.py │ └── README.md ├── scratch │ ├── README.md │ ├── scratch_faster_rcnn_r50_fpn_gn_6x.py │ └── scratch_mask_rcnn_r50_fpn_gn_6x.py └── wider_face │ ├── README.md │ └── ssd300_wider_face.py ├── demo └── visualize.ipynb ├── imgs ├── FastLoader.png ├── performance.png ├── pipeline.png └── visual.png ├── mmdet ├── __init__.py ├── apis │ ├── __init__.py │ ├── env.py │ ├── inference.py │ └── train.py ├── core │ ├── __init__.py │ ├── anchor │ │ ├── __init__.py │ │ ├── anchor_generator.py │ │ ├── anchor_target.py │ │ └── guided_anchor_target.py │ ├── bbox │ │ ├── __init__.py │ │ ├── assign_sampling.py │ │ ├── assigners │ │ │ ├── __init__.py │ │ │ ├── approx_max_iou_assigner.py │ │ │ ├── assign_result.py │ │ │ ├── base_assigner.py │ │ │ └── max_iou_assigner.py │ │ ├── bbox_target.py │ │ ├── geometry.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── base_sampler.py │ │ │ ├── combined_sampler.py │ │ │ ├── instance_balanced_pos_sampler.py │ │ │ ├── iou_balanced_neg_sampler.py │ │ │ ├── ohem_sampler.py │ │ │ ├── pseudo_sampler.py │ │ │ ├── random_sampler.py │ │ │ └── sampling_result.py │ │ └── transforms.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── bbox_overlaps.py │ │ ├── class_names.py │ │ ├── coco_utils.py │ │ ├── eval_hooks.py │ │ ├── mean_ap.py │ │ └── recall.py │ ├── fp16 │ │ ├── __init__.py │ │ ├── decorators.py │ │ ├── hooks.py │ │ └── utils.py │ ├── mask │ │ ├── __init__.py │ │ ├── mask_target.py │ │ └── utils.py │ ├── post_processing │ │ ├── __init__.py │ │ ├── bbox_nms.py │ │ └── merge_augs.py │ └── utils │ │ ├── __init__.py │ │ ├── dist_utils.py │ │ └── misc.py ├── datasets │ ├── __coco_seg.py.mergesplit │ ├── __coco_seg.py.origin │ ├── __init__.py │ ├── builder.py │ ├── cityscapes.py │ ├── coco.py │ ├── coco_seg.py │ ├── coco_seg.py.bak │ ├── coco_seg_fast.py │ ├── coco_seg_fast.py.bak │ ├── custom.py │ ├── dataset_wrappers.py │ ├── extra_aug.py │ ├── loader │ │ ├── __init__.py │ │ ├── build_loader.py │ │ └── sampler.py │ ├── registry.py │ ├── transforms.py │ ├── utils.py │ ├── voc.py │ ├── wider_face.py │ └── xml_style.py ├── models │ ├── __init__.py │ ├── anchor_heads │ │ ├── __init__.py │ │ ├── anchor_head.py │ │ ├── fcos_head.py │ │ ├── fcos_instance_head_miou_mskctness.py │ │ ├── ga_retina_head.py │ │ ├── ga_rpn_head.py │ │ ├── guided_anchor_head.py │ │ ├── polarmask_head.py │ │ ├── retina_head.py │ │ ├── rpn_head.py │ │ └── ssd_head.py │ ├── backbones │ │ ├── __init__.py │ │ ├── hrnet.py │ │ ├── resnet.py │ │ ├── resnext.py │ │ └── ssd_vgg.py │ ├── bbox_heads │ │ ├── __init__.py │ │ ├── bbox_head.py │ │ ├── convfc_bbox_head.py │ │ └── double_bbox_head.py │ ├── builder.py │ ├── detectors │ │ ├── __init__.py │ │ ├── base.py │ │ ├── cascade_rcnn.py │ │ ├── double_head_rcnn.py │ │ ├── fast_rcnn.py │ │ ├── faster_rcnn.py │ │ ├── fcos.py │ │ ├── grid_rcnn.py │ │ ├── htc.py │ │ ├── mask_rcnn.py │ │ ├── mask_scoring_rcnn.py │ │ ├── polarmask.py │ │ ├── retinanet.py │ │ ├── rpn.py │ │ ├── single_stage.py │ │ ├── test_mixins.py │ │ └── two_stage.py │ ├── losses │ │ ├── __init__.py │ │ ├── accuracy.py │ │ ├── balanced_l1_loss.py │ │ ├── cross_entropy_loss.py │ │ ├── focal_loss.py │ │ ├── ghm_loss.py │ │ ├── iou_loss.py │ │ ├── mask_iou_loss.py │ │ ├── mse_loss.py │ │ ├── pz_focal_loss.py │ │ ├── smooth_l1_loss.py │ │ └── utils.py │ ├── mask_heads │ │ ├── __init__.py │ │ ├── fcn_mask_head.py │ │ ├── fused_semantic_head.py │ │ ├── grid_head.py │ │ ├── htc_mask_head.py │ │ └── maskiou_head.py │ ├── necks │ │ ├── __init__.py │ │ ├── bfp.py │ │ ├── fpn.py │ │ └── hrfpn.py │ ├── plugins │ │ ├── __init__.py │ │ ├── generalized_attention.py │ │ └── non_local.py │ ├── registry.py │ ├── roi_extractors │ │ ├── __init__.py │ │ └── single_level.py │ ├── shared_heads │ │ ├── __init__.py │ │ └── res_layer.py │ └── utils │ │ ├── __init__.py │ │ ├── conv_module.py │ │ ├── conv_ws.py │ │ ├── norm.py │ │ ├── scale.py │ │ └── weight_init.py ├── ops │ ├── __init__.py │ ├── context_block.py │ ├── dcn │ │ ├── __init__.py │ │ ├── deform_conv.py │ │ ├── deform_pool.py │ │ └── src │ │ │ ├── deform_conv_cuda.cpp │ │ │ ├── deform_conv_cuda_kernel.cu │ │ │ ├── deform_pool_cuda.cpp │ │ │ └── deform_pool_cuda_kernel.cu │ ├── masked_conv │ │ ├── __init__.py │ │ ├── masked_conv.py │ │ └── src │ │ │ ├── masked_conv2d_cuda.cpp │ │ │ └── masked_conv2d_kernel.cu │ ├── nms │ │ ├── __init__.py │ │ ├── nms_wrapper.py │ │ └── src │ │ │ ├── nms_cpu.cpp │ │ │ ├── nms_cuda.cpp │ │ │ ├── nms_kernel.cu │ │ │ └── soft_nms_cpu.pyx │ ├── roi_align │ │ ├── __init__.py │ │ ├── gradcheck.py │ │ ├── roi_align.py │ │ └── src │ │ │ ├── roi_align_cuda.cpp │ │ │ └── roi_align_kernel.cu │ ├── roi_pool │ │ ├── __init__.py │ │ ├── gradcheck.py │ │ ├── roi_pool.py │ │ └── src │ │ │ ├── roi_pool_cuda.cpp │ │ │ └── roi_pool_kernel.cu │ └── sigmoid_focal_loss │ │ ├── __init__.py │ │ ├── sigmoid_focal_loss.py │ │ └── src │ │ ├── sigmoid_focal_loss.cpp │ │ └── sigmoid_focal_loss_cuda.cu └── utils │ ├── __init__.py │ ├── flops_counter.py │ └── registry.py ├── setup.py ├── tools ├── analyze_logs.py ├── coco_eval.py ├── convert_datasets │ └── pascal_voc.py ├── detectron2pytorch.py ├── dist_test.sh ├── dist_train.sh ├── publish_model.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py ├── train.py ├── upgrade_model_version.py └── voc_eval.py └── work_dirs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/GETTING_STARTED.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/LICENSE -------------------------------------------------------------------------------- /MODEL_ZOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/MODEL_ZOO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/README.md -------------------------------------------------------------------------------- /TECHNICAL_DETAILS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/TECHNICAL_DETAILS.md -------------------------------------------------------------------------------- /configs/dcn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/dcn/README.md -------------------------------------------------------------------------------- /configs/dcn/cascade_mask_rcnn_dconv_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/dcn/cascade_mask_rcnn_dconv_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/dcn/cascade_rcnn_dconv_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/dcn/cascade_rcnn_dconv_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/dcn/faster_rcnn_dconv_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/dcn/faster_rcnn_dconv_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/dcn/faster_rcnn_dconv_c3-c5_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/dcn/faster_rcnn_dconv_c3-c5_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /configs/dcn/faster_rcnn_dpool_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/dcn/faster_rcnn_dpool_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/dcn/faster_rcnn_mdconv_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/dcn/faster_rcnn_mdconv_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/dcn/faster_rcnn_mdpool_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/dcn/faster_rcnn_mdpool_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/dcn/mask_rcnn_dconv_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/dcn/mask_rcnn_dconv_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/empirical_attention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/empirical_attention/README.md -------------------------------------------------------------------------------- /configs/empirical_attention/faster_rcnn_r50_fpn_attention_0010_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/empirical_attention/faster_rcnn_r50_fpn_attention_0010_1x.py -------------------------------------------------------------------------------- /configs/empirical_attention/faster_rcnn_r50_fpn_attention_0010_dcn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/empirical_attention/faster_rcnn_r50_fpn_attention_0010_dcn_1x.py -------------------------------------------------------------------------------- /configs/empirical_attention/faster_rcnn_r50_fpn_attention_1111_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/empirical_attention/faster_rcnn_r50_fpn_attention_1111_1x.py -------------------------------------------------------------------------------- /configs/empirical_attention/faster_rcnn_r50_fpn_attention_1111_dcn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/empirical_attention/faster_rcnn_r50_fpn_attention_1111_dcn_1x.py -------------------------------------------------------------------------------- /configs/fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/fcos/README.md -------------------------------------------------------------------------------- /configs/fcos/fcos_mstrain_640_800_r101_caffe_fpn_gn_2x_4gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/fcos/fcos_mstrain_640_800_r101_caffe_fpn_gn_2x_4gpu.py -------------------------------------------------------------------------------- /configs/fcos/fcos_mstrain_640_800_x101_64x4d_fpn_gn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/fcos/fcos_mstrain_640_800_x101_64x4d_fpn_gn_2x.py -------------------------------------------------------------------------------- /configs/fcos/fcos_r50_caffe_fpn_gn_1x_4gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/fcos/fcos_r50_caffe_fpn_gn_1x_4gpu.py -------------------------------------------------------------------------------- /configs/fp16/faster_rcnn_r50_fpn_fp16_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/fp16/faster_rcnn_r50_fpn_fp16_1x.py -------------------------------------------------------------------------------- /configs/fp16/mask_rcnn_r50_fpn_fp16_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/fp16/mask_rcnn_r50_fpn_fp16_1x.py -------------------------------------------------------------------------------- /configs/fp16/retinanet_r50_fpn_fp16_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/fp16/retinanet_r50_fpn_fp16_1x.py -------------------------------------------------------------------------------- /configs/gcnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gcnet/README.md -------------------------------------------------------------------------------- /configs/gcnet/mask_rcnn_r16_gcb_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gcnet/mask_rcnn_r16_gcb_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/gcnet/mask_rcnn_r16_gcb_c3-c5_r50_fpn_syncbn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gcnet/mask_rcnn_r16_gcb_c3-c5_r50_fpn_syncbn_1x.py -------------------------------------------------------------------------------- /configs/gcnet/mask_rcnn_r4_gcb_c3-c5_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gcnet/mask_rcnn_r4_gcb_c3-c5_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/gcnet/mask_rcnn_r4_gcb_c3-c5_r50_fpn_syncbn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gcnet/mask_rcnn_r4_gcb_c3-c5_r50_fpn_syncbn_1x.py -------------------------------------------------------------------------------- /configs/gcnet/mask_rcnn_r50_fpn_sbn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gcnet/mask_rcnn_r50_fpn_sbn_1x.py -------------------------------------------------------------------------------- /configs/ghm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/ghm/README.md -------------------------------------------------------------------------------- /configs/ghm/retinanet_ghm_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/ghm/retinanet_ghm_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/gn+ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gn+ws/README.md -------------------------------------------------------------------------------- /configs/gn+ws/faster_rcnn_r50_fpn_gn_ws_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gn+ws/faster_rcnn_r50_fpn_gn_ws_1x.py -------------------------------------------------------------------------------- /configs/gn+ws/mask_rcnn_r50_fpn_gn_ws_20_23_24e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gn+ws/mask_rcnn_r50_fpn_gn_ws_20_23_24e.py -------------------------------------------------------------------------------- /configs/gn+ws/mask_rcnn_r50_fpn_gn_ws_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gn+ws/mask_rcnn_r50_fpn_gn_ws_2x.py -------------------------------------------------------------------------------- /configs/gn+ws/mask_rcnn_x101_32x4d_fpn_gn_ws_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gn+ws/mask_rcnn_x101_32x4d_fpn_gn_ws_2x.py -------------------------------------------------------------------------------- /configs/gn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gn/README.md -------------------------------------------------------------------------------- /configs/gn/mask_rcnn_r101_fpn_gn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gn/mask_rcnn_r101_fpn_gn_2x.py -------------------------------------------------------------------------------- /configs/gn/mask_rcnn_r50_fpn_gn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gn/mask_rcnn_r50_fpn_gn_2x.py -------------------------------------------------------------------------------- /configs/gn/mask_rcnn_r50_fpn_gn_contrib_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/gn/mask_rcnn_r50_fpn_gn_contrib_2x.py -------------------------------------------------------------------------------- /configs/grid_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/grid_rcnn/README.md -------------------------------------------------------------------------------- /configs/grid_rcnn/grid_rcnn_gn_head_r50_fpn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/grid_rcnn/grid_rcnn_gn_head_r50_fpn_2x.py -------------------------------------------------------------------------------- /configs/grid_rcnn/grid_rcnn_gn_head_x101_32x4d_fpn_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/grid_rcnn/grid_rcnn_gn_head_x101_32x4d_fpn_2x.py -------------------------------------------------------------------------------- /configs/guided_anchoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/guided_anchoring/README.md -------------------------------------------------------------------------------- /configs/guided_anchoring/ga_fast_r50_caffe_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/guided_anchoring/ga_fast_r50_caffe_fpn_1x.py -------------------------------------------------------------------------------- /configs/guided_anchoring/ga_faster_r50_caffe_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/guided_anchoring/ga_faster_r50_caffe_fpn_1x.py -------------------------------------------------------------------------------- /configs/guided_anchoring/ga_faster_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/guided_anchoring/ga_faster_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /configs/guided_anchoring/ga_retinanet_r50_caffe_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/guided_anchoring/ga_retinanet_r50_caffe_fpn_1x.py -------------------------------------------------------------------------------- /configs/guided_anchoring/ga_retinanet_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/guided_anchoring/ga_retinanet_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /configs/guided_anchoring/ga_rpn_r101_caffe_rpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/guided_anchoring/ga_rpn_r101_caffe_rpn_1x.py -------------------------------------------------------------------------------- /configs/guided_anchoring/ga_rpn_r50_caffe_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/guided_anchoring/ga_rpn_r50_caffe_fpn_1x.py -------------------------------------------------------------------------------- /configs/guided_anchoring/ga_rpn_x101_32x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/guided_anchoring/ga_rpn_x101_32x4d_fpn_1x.py -------------------------------------------------------------------------------- /configs/hrnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/hrnet/README.md -------------------------------------------------------------------------------- /configs/hrnet/cascade_rcnn_hrnetv2p_w32_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/hrnet/cascade_rcnn_hrnetv2p_w32_20e.py -------------------------------------------------------------------------------- /configs/hrnet/faster_rcnn_hrnetv2p_w18_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/hrnet/faster_rcnn_hrnetv2p_w18_1x.py -------------------------------------------------------------------------------- /configs/hrnet/faster_rcnn_hrnetv2p_w32_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/hrnet/faster_rcnn_hrnetv2p_w32_1x.py -------------------------------------------------------------------------------- /configs/hrnet/faster_rcnn_hrnetv2p_w40_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/hrnet/faster_rcnn_hrnetv2p_w40_1x.py -------------------------------------------------------------------------------- /configs/hrnet/mask_rcnn_hrnetv2p_w18_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/hrnet/mask_rcnn_hrnetv2p_w18_1x.py -------------------------------------------------------------------------------- /configs/hrnet/mask_rcnn_hrnetv2p_w32_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/hrnet/mask_rcnn_hrnetv2p_w32_1x.py -------------------------------------------------------------------------------- /configs/htc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/htc/README.md -------------------------------------------------------------------------------- /configs/htc/htc_dconv_c3-c5_mstrain_400_1400_x101_64x4d_fpn_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/htc/htc_dconv_c3-c5_mstrain_400_1400_x101_64x4d_fpn_20e.py -------------------------------------------------------------------------------- /configs/htc/htc_r101_fpn_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/htc/htc_r101_fpn_20e.py -------------------------------------------------------------------------------- /configs/htc/htc_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/htc/htc_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/htc/htc_r50_fpn_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/htc/htc_r50_fpn_20e.py -------------------------------------------------------------------------------- /configs/htc/htc_without_semantic_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/htc/htc_without_semantic_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/htc/htc_x101_32x4d_fpn_20e_16gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/htc/htc_x101_32x4d_fpn_20e_16gpu.py -------------------------------------------------------------------------------- /configs/htc/htc_x101_64x4d_fpn_20e_16gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/htc/htc_x101_64x4d_fpn_20e_16gpu.py -------------------------------------------------------------------------------- /configs/libra_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/libra_rcnn/README.md -------------------------------------------------------------------------------- /configs/libra_rcnn/libra_fast_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/libra_rcnn/libra_fast_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/libra_rcnn/libra_faster_rcnn_r101_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/libra_rcnn/libra_faster_rcnn_r101_fpn_1x.py -------------------------------------------------------------------------------- /configs/libra_rcnn/libra_faster_rcnn_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/libra_rcnn/libra_faster_rcnn_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/libra_rcnn/libra_faster_rcnn_x101_64x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/libra_rcnn/libra_faster_rcnn_x101_64x4d_fpn_1x.py -------------------------------------------------------------------------------- /configs/libra_rcnn/libra_retinanet_r50_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/libra_rcnn/libra_retinanet_r50_fpn_1x.py -------------------------------------------------------------------------------- /configs/ms_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/ms_rcnn/README.md -------------------------------------------------------------------------------- /configs/ms_rcnn/ms_rcnn_r101_caffe_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/ms_rcnn/ms_rcnn_r101_caffe_fpn_1x.py -------------------------------------------------------------------------------- /configs/ms_rcnn/ms_rcnn_r50_caffe_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/ms_rcnn/ms_rcnn_r50_caffe_fpn_1x.py -------------------------------------------------------------------------------- /configs/ms_rcnn/ms_rcnn_x101_64x4d_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/ms_rcnn/ms_rcnn_x101_64x4d_fpn_1x.py -------------------------------------------------------------------------------- /configs/pascal_voc/faster_rcnn_r50_fpn_1x_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/pascal_voc/faster_rcnn_r50_fpn_1x_voc0712.py -------------------------------------------------------------------------------- /configs/pascal_voc/ssd300_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/pascal_voc/ssd300_voc.py -------------------------------------------------------------------------------- /configs/pascal_voc/ssd512_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/pascal_voc/ssd512_voc.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_640_800_2x_r101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_640_800_2x_r101.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_640_800_2x_r101_dcn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_640_800_2x_r101_dcn2.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_640_800_2x_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_640_800_2x_r50.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_640_800_2x_r50_dcn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_640_800_2x_r50_dcn2.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_640_800_2x_x101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_640_800_2x_x101.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_640_800_2x_x101_dcn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_640_800_2x_x101_dcn2.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_640_800_6x_r101_dcn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_640_800_6x_r101_dcn2.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_768_1x_r101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_768_1x_r101.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_768_1x_r101_dcn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_768_1x_r101_dcn2.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_768_1x_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_768_1x_r50.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_768_1x_r50_FastLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_768_1x_r50_FastLoader.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_768_1x_r50_dcn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_768_1x_r50_dcn2.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_768_1x_x101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_768_1x_x101.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_768_1x_x101_dcn2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_768_1x_x101_dcn2.py -------------------------------------------------------------------------------- /configs/polarmask/32gpu/polar_800_1x_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/32gpu/polar_800_1x_r50.py -------------------------------------------------------------------------------- /configs/polarmask/4gpu/polar_768_1x_r101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/4gpu/polar_768_1x_r101.py -------------------------------------------------------------------------------- /configs/polarmask/4gpu/polar_768_1x_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/4gpu/polar_768_1x_r50.py -------------------------------------------------------------------------------- /configs/polarmask/4gpu/polar_768_1x_x101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/4gpu/polar_768_1x_x101.py -------------------------------------------------------------------------------- /configs/polarmask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/polarmask/README.md -------------------------------------------------------------------------------- /configs/scratch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/scratch/README.md -------------------------------------------------------------------------------- /configs/scratch/scratch_faster_rcnn_r50_fpn_gn_6x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/scratch/scratch_faster_rcnn_r50_fpn_gn_6x.py -------------------------------------------------------------------------------- /configs/scratch/scratch_mask_rcnn_r50_fpn_gn_6x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/scratch/scratch_mask_rcnn_r50_fpn_gn_6x.py -------------------------------------------------------------------------------- /configs/wider_face/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/wider_face/README.md -------------------------------------------------------------------------------- /configs/wider_face/ssd300_wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/configs/wider_face/ssd300_wider_face.py -------------------------------------------------------------------------------- /demo/visualize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/demo/visualize.ipynb -------------------------------------------------------------------------------- /imgs/FastLoader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/imgs/FastLoader.png -------------------------------------------------------------------------------- /imgs/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/imgs/performance.png -------------------------------------------------------------------------------- /imgs/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/imgs/pipeline.png -------------------------------------------------------------------------------- /imgs/visual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/imgs/visual.png -------------------------------------------------------------------------------- /mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/__init__.py -------------------------------------------------------------------------------- /mmdet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/apis/__init__.py -------------------------------------------------------------------------------- /mmdet/apis/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/apis/env.py -------------------------------------------------------------------------------- /mmdet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/apis/inference.py -------------------------------------------------------------------------------- /mmdet/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/apis/train.py -------------------------------------------------------------------------------- /mmdet/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/__init__.py -------------------------------------------------------------------------------- /mmdet/core/anchor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/anchor/__init__.py -------------------------------------------------------------------------------- /mmdet/core/anchor/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/anchor/anchor_generator.py -------------------------------------------------------------------------------- /mmdet/core/anchor/anchor_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/anchor/anchor_target.py -------------------------------------------------------------------------------- /mmdet/core/anchor/guided_anchor_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/anchor/guided_anchor_target.py -------------------------------------------------------------------------------- /mmdet/core/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assign_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/assign_sampling.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/assigners/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/approx_max_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/assigners/approx_max_iou_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/assign_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/assigners/assign_result.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/base_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/assigners/base_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/max_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/assigners/max_iou_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/bbox_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/bbox_target.py -------------------------------------------------------------------------------- /mmdet/core/bbox/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/geometry.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/samplers/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/base_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/samplers/base_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/combined_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/samplers/combined_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/instance_balanced_pos_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/samplers/instance_balanced_pos_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/iou_balanced_neg_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/samplers/iou_balanced_neg_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/ohem_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/samplers/ohem_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/pseudo_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/samplers/pseudo_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/random_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/samplers/random_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/sampling_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/samplers/sampling_result.py -------------------------------------------------------------------------------- /mmdet/core/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/bbox/transforms.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/evaluation/__init__.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/evaluation/bbox_overlaps.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/evaluation/class_names.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/coco_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/evaluation/coco_utils.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/evaluation/mean_ap.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/evaluation/recall.py -------------------------------------------------------------------------------- /mmdet/core/fp16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/fp16/__init__.py -------------------------------------------------------------------------------- /mmdet/core/fp16/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/fp16/decorators.py -------------------------------------------------------------------------------- /mmdet/core/fp16/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/fp16/hooks.py -------------------------------------------------------------------------------- /mmdet/core/fp16/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/fp16/utils.py -------------------------------------------------------------------------------- /mmdet/core/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/mask/__init__.py -------------------------------------------------------------------------------- /mmdet/core/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/mask/mask_target.py -------------------------------------------------------------------------------- /mmdet/core/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/mask/utils.py -------------------------------------------------------------------------------- /mmdet/core/post_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/post_processing/__init__.py -------------------------------------------------------------------------------- /mmdet/core/post_processing/bbox_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/post_processing/bbox_nms.py -------------------------------------------------------------------------------- /mmdet/core/post_processing/merge_augs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/post_processing/merge_augs.py -------------------------------------------------------------------------------- /mmdet/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/utils/__init__.py -------------------------------------------------------------------------------- /mmdet/core/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/utils/dist_utils.py -------------------------------------------------------------------------------- /mmdet/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/core/utils/misc.py -------------------------------------------------------------------------------- /mmdet/datasets/__coco_seg.py.mergesplit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/__coco_seg.py.mergesplit -------------------------------------------------------------------------------- /mmdet/datasets/__coco_seg.py.origin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/__coco_seg.py.origin -------------------------------------------------------------------------------- /mmdet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/builder.py -------------------------------------------------------------------------------- /mmdet/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/cityscapes.py -------------------------------------------------------------------------------- /mmdet/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/coco.py -------------------------------------------------------------------------------- /mmdet/datasets/coco_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/coco_seg.py -------------------------------------------------------------------------------- /mmdet/datasets/coco_seg.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/coco_seg.py.bak -------------------------------------------------------------------------------- /mmdet/datasets/coco_seg_fast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/coco_seg_fast.py -------------------------------------------------------------------------------- /mmdet/datasets/coco_seg_fast.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/coco_seg_fast.py.bak -------------------------------------------------------------------------------- /mmdet/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/custom.py -------------------------------------------------------------------------------- /mmdet/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmdet/datasets/extra_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/extra_aug.py -------------------------------------------------------------------------------- /mmdet/datasets/loader/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/loader/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/loader/build_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/loader/build_loader.py -------------------------------------------------------------------------------- /mmdet/datasets/loader/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/loader/sampler.py -------------------------------------------------------------------------------- /mmdet/datasets/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/registry.py -------------------------------------------------------------------------------- /mmdet/datasets/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/transforms.py -------------------------------------------------------------------------------- /mmdet/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/utils.py -------------------------------------------------------------------------------- /mmdet/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/voc.py -------------------------------------------------------------------------------- /mmdet/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdet/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/datasets/xml_style.py -------------------------------------------------------------------------------- /mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/__init__.py -------------------------------------------------------------------------------- /mmdet/models/anchor_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/anchor_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/anchor_heads/anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/anchor_heads/anchor_head.py -------------------------------------------------------------------------------- /mmdet/models/anchor_heads/fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/anchor_heads/fcos_head.py -------------------------------------------------------------------------------- /mmdet/models/anchor_heads/fcos_instance_head_miou_mskctness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/anchor_heads/fcos_instance_head_miou_mskctness.py -------------------------------------------------------------------------------- /mmdet/models/anchor_heads/ga_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/anchor_heads/ga_retina_head.py -------------------------------------------------------------------------------- /mmdet/models/anchor_heads/ga_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/anchor_heads/ga_rpn_head.py -------------------------------------------------------------------------------- /mmdet/models/anchor_heads/guided_anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/anchor_heads/guided_anchor_head.py -------------------------------------------------------------------------------- /mmdet/models/anchor_heads/polarmask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/anchor_heads/polarmask_head.py -------------------------------------------------------------------------------- /mmdet/models/anchor_heads/retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/anchor_heads/retina_head.py -------------------------------------------------------------------------------- /mmdet/models/anchor_heads/rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/anchor_heads/rpn_head.py -------------------------------------------------------------------------------- /mmdet/models/anchor_heads/ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/anchor_heads/ssd_head.py -------------------------------------------------------------------------------- /mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmdet/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/backbones/hrnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/backbones/resnext.py -------------------------------------------------------------------------------- /mmdet/models/backbones/ssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/backbones/ssd_vgg.py -------------------------------------------------------------------------------- /mmdet/models/bbox_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/bbox_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/bbox_heads/bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/bbox_heads/bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/bbox_heads/convfc_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/bbox_heads/convfc_bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/bbox_heads/double_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/bbox_heads/double_bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/builder.py -------------------------------------------------------------------------------- /mmdet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/__init__.py -------------------------------------------------------------------------------- /mmdet/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/base.py -------------------------------------------------------------------------------- /mmdet/models/detectors/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/cascade_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/double_head_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/double_head_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/fast_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/faster_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/fcos.py -------------------------------------------------------------------------------- /mmdet/models/detectors/grid_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/grid_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/htc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/htc.py -------------------------------------------------------------------------------- /mmdet/models/detectors/mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/mask_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/mask_scoring_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/mask_scoring_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/polarmask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/polarmask.py -------------------------------------------------------------------------------- /mmdet/models/detectors/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/retinanet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/rpn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/single_stage.py -------------------------------------------------------------------------------- /mmdet/models/detectors/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/test_mixins.py -------------------------------------------------------------------------------- /mmdet/models/detectors/two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/detectors/two_stage.py -------------------------------------------------------------------------------- /mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /mmdet/models/losses/balanced_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/losses/balanced_l1_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/losses/focal_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/mask_iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/losses/mask_iou_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/pz_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/losses/pz_focal_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/smooth_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/losses/smooth_l1_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /mmdet/models/mask_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/mask_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/mask_heads/fcn_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/mask_heads/fcn_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/mask_heads/fused_semantic_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/mask_heads/fused_semantic_head.py -------------------------------------------------------------------------------- /mmdet/models/mask_heads/grid_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/mask_heads/grid_head.py -------------------------------------------------------------------------------- /mmdet/models/mask_heads/htc_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/mask_heads/htc_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/mask_heads/maskiou_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/mask_heads/maskiou_head.py -------------------------------------------------------------------------------- /mmdet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/necks/__init__.py -------------------------------------------------------------------------------- /mmdet/models/necks/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/necks/bfp.py -------------------------------------------------------------------------------- /mmdet/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/necks/fpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/necks/hrfpn.py -------------------------------------------------------------------------------- /mmdet/models/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/plugins/__init__.py -------------------------------------------------------------------------------- /mmdet/models/plugins/generalized_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/plugins/generalized_attention.py -------------------------------------------------------------------------------- /mmdet/models/plugins/non_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/plugins/non_local.py -------------------------------------------------------------------------------- /mmdet/models/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/registry.py -------------------------------------------------------------------------------- /mmdet/models/roi_extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/roi_extractors/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_extractors/single_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/roi_extractors/single_level.py -------------------------------------------------------------------------------- /mmdet/models/shared_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/shared_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/shared_heads/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/shared_heads/res_layer.py -------------------------------------------------------------------------------- /mmdet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/utils/__init__.py -------------------------------------------------------------------------------- /mmdet/models/utils/conv_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/utils/conv_module.py -------------------------------------------------------------------------------- /mmdet/models/utils/conv_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/utils/conv_ws.py -------------------------------------------------------------------------------- /mmdet/models/utils/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/utils/norm.py -------------------------------------------------------------------------------- /mmdet/models/utils/scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/utils/scale.py -------------------------------------------------------------------------------- /mmdet/models/utils/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/models/utils/weight_init.py -------------------------------------------------------------------------------- /mmdet/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/__init__.py -------------------------------------------------------------------------------- /mmdet/ops/context_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/context_block.py -------------------------------------------------------------------------------- /mmdet/ops/dcn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/dcn/__init__.py -------------------------------------------------------------------------------- /mmdet/ops/dcn/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/dcn/deform_conv.py -------------------------------------------------------------------------------- /mmdet/ops/dcn/deform_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/dcn/deform_pool.py -------------------------------------------------------------------------------- /mmdet/ops/dcn/src/deform_conv_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/dcn/src/deform_conv_cuda.cpp -------------------------------------------------------------------------------- /mmdet/ops/dcn/src/deform_conv_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/dcn/src/deform_conv_cuda_kernel.cu -------------------------------------------------------------------------------- /mmdet/ops/dcn/src/deform_pool_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/dcn/src/deform_pool_cuda.cpp -------------------------------------------------------------------------------- /mmdet/ops/dcn/src/deform_pool_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/dcn/src/deform_pool_cuda_kernel.cu -------------------------------------------------------------------------------- /mmdet/ops/masked_conv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/masked_conv/__init__.py -------------------------------------------------------------------------------- /mmdet/ops/masked_conv/masked_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/masked_conv/masked_conv.py -------------------------------------------------------------------------------- /mmdet/ops/masked_conv/src/masked_conv2d_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/masked_conv/src/masked_conv2d_cuda.cpp -------------------------------------------------------------------------------- /mmdet/ops/masked_conv/src/masked_conv2d_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/masked_conv/src/masked_conv2d_kernel.cu -------------------------------------------------------------------------------- /mmdet/ops/nms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/nms/__init__.py -------------------------------------------------------------------------------- /mmdet/ops/nms/nms_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/nms/nms_wrapper.py -------------------------------------------------------------------------------- /mmdet/ops/nms/src/nms_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/nms/src/nms_cpu.cpp -------------------------------------------------------------------------------- /mmdet/ops/nms/src/nms_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/nms/src/nms_cuda.cpp -------------------------------------------------------------------------------- /mmdet/ops/nms/src/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/nms/src/nms_kernel.cu -------------------------------------------------------------------------------- /mmdet/ops/nms/src/soft_nms_cpu.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/nms/src/soft_nms_cpu.pyx -------------------------------------------------------------------------------- /mmdet/ops/roi_align/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/roi_align/__init__.py -------------------------------------------------------------------------------- /mmdet/ops/roi_align/gradcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/roi_align/gradcheck.py -------------------------------------------------------------------------------- /mmdet/ops/roi_align/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/roi_align/roi_align.py -------------------------------------------------------------------------------- /mmdet/ops/roi_align/src/roi_align_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/roi_align/src/roi_align_cuda.cpp -------------------------------------------------------------------------------- /mmdet/ops/roi_align/src/roi_align_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/roi_align/src/roi_align_kernel.cu -------------------------------------------------------------------------------- /mmdet/ops/roi_pool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/roi_pool/__init__.py -------------------------------------------------------------------------------- /mmdet/ops/roi_pool/gradcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/roi_pool/gradcheck.py -------------------------------------------------------------------------------- /mmdet/ops/roi_pool/roi_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/roi_pool/roi_pool.py -------------------------------------------------------------------------------- /mmdet/ops/roi_pool/src/roi_pool_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/roi_pool/src/roi_pool_cuda.cpp -------------------------------------------------------------------------------- /mmdet/ops/roi_pool/src/roi_pool_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/roi_pool/src/roi_pool_kernel.cu -------------------------------------------------------------------------------- /mmdet/ops/sigmoid_focal_loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/sigmoid_focal_loss/__init__.py -------------------------------------------------------------------------------- /mmdet/ops/sigmoid_focal_loss/sigmoid_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/sigmoid_focal_loss/sigmoid_focal_loss.py -------------------------------------------------------------------------------- /mmdet/ops/sigmoid_focal_loss/src/sigmoid_focal_loss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/sigmoid_focal_loss/src/sigmoid_focal_loss.cpp -------------------------------------------------------------------------------- /mmdet/ops/sigmoid_focal_loss/src/sigmoid_focal_loss_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/ops/sigmoid_focal_loss/src/sigmoid_focal_loss_cuda.cu -------------------------------------------------------------------------------- /mmdet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/utils/__init__.py -------------------------------------------------------------------------------- /mmdet/utils/flops_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/utils/flops_counter.py -------------------------------------------------------------------------------- /mmdet/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/mmdet/utils/registry.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/setup.py -------------------------------------------------------------------------------- /tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/analyze_logs.py -------------------------------------------------------------------------------- /tools/coco_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/coco_eval.py -------------------------------------------------------------------------------- /tools/convert_datasets/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/convert_datasets/pascal_voc.py -------------------------------------------------------------------------------- /tools/detectron2pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/detectron2pytorch.py -------------------------------------------------------------------------------- /tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/dist_test.sh -------------------------------------------------------------------------------- /tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/dist_train.sh -------------------------------------------------------------------------------- /tools/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/publish_model.py -------------------------------------------------------------------------------- /tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/slurm_test.sh -------------------------------------------------------------------------------- /tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/slurm_train.sh -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/train.py -------------------------------------------------------------------------------- /tools/upgrade_model_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/upgrade_model_version.py -------------------------------------------------------------------------------- /tools/voc_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xieenze/PolarMask/HEAD/tools/voc_eval.py -------------------------------------------------------------------------------- /work_dirs: -------------------------------------------------------------------------------- 1 | ../mmdetection-master/work_dirs --------------------------------------------------------------------------------