├── .dev_scripts ├── batch_test.py ├── batch_test.sh ├── benchmark_filter.py ├── gather_models.py └── linter.sh ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── error-report.md │ ├── feature_request.md │ ├── general_questions.md │ └── reimplementation_questions.md └── workflows │ ├── build.yml │ └── deploy.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── LICENSE ├── README.md ├── configs └── wsod │ ├── base.py │ ├── oicr_bbox_vgg16.py │ ├── oicr_vgg16.py │ ├── wsddn_vgg16.py │ └── wsod2_vgg16.py ├── demo ├── MMDet_Tutorial.ipynb ├── demo.jpg ├── image_demo.py ├── inference_demo.ipynb └── webcam_demo.py ├── docker └── Dockerfile ├── docs ├── 1_exist_data_model.md ├── 2_new_data_model.md ├── 3_exist_data_new_model.md ├── Makefile ├── api.rst ├── changelog.md ├── compatibility.md ├── conf.py ├── conventions.md ├── faq.md ├── get_started.md ├── index.rst ├── make.bat ├── model_zoo.md ├── projects.md ├── robustness_benchmarking.md ├── stat.py ├── tutorials │ ├── config.md │ ├── customize_dataset.md │ ├── customize_losses.md │ ├── customize_models.md │ ├── customize_runtime.md │ ├── data_pipeline.md │ ├── finetune.md │ └── index.rst └── useful_tools.md ├── mmdet ├── __init__.py ├── apis │ ├── __init__.py │ ├── inference.py │ ├── test.py │ └── train.py ├── core │ ├── __init__.py │ ├── anchor │ │ ├── __init__.py │ │ ├── anchor_generator.py │ │ ├── builder.py │ │ ├── point_generator.py │ │ └── utils.py │ ├── bbox │ │ ├── __init__.py │ │ ├── assigners │ │ │ ├── __init__.py │ │ │ ├── approx_max_iou_assigner.py │ │ │ ├── assign_result.py │ │ │ ├── atss_assigner.py │ │ │ ├── base_assigner.py │ │ │ ├── center_region_assigner.py │ │ │ ├── grid_assigner.py │ │ │ ├── max_iou_assigner.py │ │ │ └── point_assigner.py │ │ ├── builder.py │ │ ├── coder │ │ │ ├── __init__.py │ │ │ ├── base_bbox_coder.py │ │ │ ├── bucketing_bbox_coder.py │ │ │ ├── delta_xywh_bbox_coder.py │ │ │ ├── legacy_delta_xywh_bbox_coder.py │ │ │ ├── pseudo_bbox_coder.py │ │ │ ├── tblr_bbox_coder.py │ │ │ └── yolo_bbox_coder.py │ │ ├── demodata.py │ │ ├── iou_calculators │ │ │ ├── __init__.py │ │ │ ├── builder.py │ │ │ └── iou2d_calculator.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 │ │ │ └── score_hlr_sampler.py │ │ └── transforms.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── bbox_overlaps.py │ │ ├── class_names.py │ │ ├── eval_hooks.py │ │ ├── mean_ap.py │ │ └── recall.py │ ├── export │ │ ├── __init__.py │ │ └── pytorch2onnx.py │ ├── fp16 │ │ ├── __init__.py │ │ └── deprecated_fp16_utils.py │ ├── mask │ │ ├── __init__.py │ │ ├── mask_target.py │ │ ├── structures.py │ │ └── utils.py │ ├── post_processing │ │ ├── __init__.py │ │ ├── bbox_nms.py │ │ └── merge_augs.py │ └── utils │ │ ├── __init__.py │ │ ├── dist_utils.py │ │ └── misc.py ├── datasets │ ├── __init__.py │ ├── builder.py │ ├── cityscapes.py │ ├── coco.py │ ├── custom.py │ ├── dataset_wrappers.py │ ├── deepfashion.py │ ├── lvis.py │ ├── pipelines │ │ ├── __init__.py │ │ ├── auto_augment.py │ │ ├── compose.py │ │ ├── formating.py │ │ ├── instaboost.py │ │ ├── loading.py │ │ ├── test_time_aug.py │ │ └── transforms.py │ ├── samplers │ │ ├── __init__.py │ │ ├── distributed_sampler.py │ │ └── group_sampler.py │ ├── utils.py │ ├── voc.py │ ├── voc_ss.py │ ├── wider_face.py │ └── xml_style.py ├── models │ ├── __init__.py │ ├── backbones │ │ ├── __init__.py │ │ ├── darknet.py │ │ ├── detectors_resnet.py │ │ ├── detectors_resnext.py │ │ ├── hourglass.py │ │ ├── hrnet.py │ │ ├── regnet.py │ │ ├── res2net.py │ │ ├── resnest.py │ │ ├── resnet.py │ │ ├── resnext.py │ │ ├── ssd_vgg.py │ │ └── vgg.py │ ├── builder.py │ ├── dense_heads │ │ ├── __init__.py │ │ ├── anchor_free_head.py │ │ ├── anchor_head.py │ │ ├── atss_head.py │ │ ├── base_dense_head.py │ │ ├── centripetal_head.py │ │ ├── corner_head.py │ │ ├── dense_test_mixins.py │ │ ├── fcos_head.py │ │ ├── fovea_head.py │ │ ├── free_anchor_retina_head.py │ │ ├── fsaf_head.py │ │ ├── ga_retina_head.py │ │ ├── ga_rpn_head.py │ │ ├── gfl_head.py │ │ ├── guided_anchor_head.py │ │ ├── nasfcos_head.py │ │ ├── paa_head.py │ │ ├── pisa_retinanet_head.py │ │ ├── pisa_ssd_head.py │ │ ├── reppoints_head.py │ │ ├── retina_head.py │ │ ├── retina_sepbn_head.py │ │ ├── rpn_head.py │ │ ├── rpn_test_mixin.py │ │ ├── sabl_retina_head.py │ │ ├── ssd_head.py │ │ ├── vfnet_head.py │ │ ├── yolact_head.py │ │ └── yolo_head.py │ ├── detectors │ │ ├── __init__.py │ │ ├── atss.py │ │ ├── base.py │ │ ├── cascade_rcnn.py │ │ ├── cornernet.py │ │ ├── fast_rcnn.py │ │ ├── faster_rcnn.py │ │ ├── fcos.py │ │ ├── fovea.py │ │ ├── fsaf.py │ │ ├── gfl.py │ │ ├── grid_rcnn.py │ │ ├── htc.py │ │ ├── mask_rcnn.py │ │ ├── mask_scoring_rcnn.py │ │ ├── nasfcos.py │ │ ├── paa.py │ │ ├── point_rend.py │ │ ├── reppoints_detector.py │ │ ├── retinanet.py │ │ ├── rpn.py │ │ ├── single_stage.py │ │ ├── two_stage.py │ │ ├── vfnet.py │ │ ├── weak_rcnn.py │ │ ├── yolact.py │ │ └── yolo.py │ ├── losses │ │ ├── __init__.py │ │ ├── accuracy.py │ │ ├── ae_loss.py │ │ ├── balanced_l1_loss.py │ │ ├── cross_entropy_loss.py │ │ ├── focal_loss.py │ │ ├── gaussian_focal_loss.py │ │ ├── gfocal_loss.py │ │ ├── ghm_loss.py │ │ ├── iou_loss.py │ │ ├── mse_loss.py │ │ ├── pisa_loss.py │ │ ├── smooth_l1_loss.py │ │ ├── utils.py │ │ └── varifocal_loss.py │ ├── necks │ │ ├── __init__.py │ │ ├── bfp.py │ │ ├── channel_mapper.py │ │ ├── fpn.py │ │ ├── fpn_carafe.py │ │ ├── hrfpn.py │ │ ├── nas_fpn.py │ │ ├── nasfcos_fpn.py │ │ ├── pafpn.py │ │ ├── rfp.py │ │ └── yolo_neck.py │ ├── roi_heads │ │ ├── __init__.py │ │ ├── base_roi_head.py │ │ ├── bbox_heads │ │ │ ├── __init__.py │ │ │ ├── bbox_head.py │ │ │ ├── convfc_bbox_head.py │ │ │ ├── double_bbox_head.py │ │ │ ├── oicr_head.py │ │ │ ├── sabl_head.py │ │ │ └── wsddn_head.py │ │ ├── cascade_roi_head.py │ │ ├── double_roi_head.py │ │ ├── dynamic_roi_head.py │ │ ├── grid_roi_head.py │ │ ├── htc_roi_head.py │ │ ├── mask_heads │ │ │ ├── __init__.py │ │ │ ├── coarse_mask_head.py │ │ │ ├── fcn_mask_head.py │ │ │ ├── fused_semantic_head.py │ │ │ ├── grid_head.py │ │ │ ├── htc_mask_head.py │ │ │ ├── mask_point_head.py │ │ │ └── maskiou_head.py │ │ ├── mask_scoring_roi_head.py │ │ ├── oicr_roi_head.py │ │ ├── pisa_roi_head.py │ │ ├── point_rend_roi_head.py │ │ ├── roi_extractors │ │ │ ├── __init__.py │ │ │ ├── base_roi_extractor.py │ │ │ ├── generic_roi_extractor.py │ │ │ └── single_level_roi_extractor.py │ │ ├── shared_heads │ │ │ ├── __init__.py │ │ │ └── res_layer.py │ │ ├── standard_roi_head.py │ │ ├── test_mixins.py │ │ ├── wsddn_roi_head.py │ │ └── wsod2_roi_head.py │ └── utils │ │ ├── __init__.py │ │ ├── gaussian_target.py │ │ └── res_layer.py ├── ops │ └── __init__.py ├── utils │ ├── __init__.py │ ├── collect_env.py │ ├── contextmanagers.py │ ├── logger.py │ ├── profiling.py │ └── util_mixins.py └── version.py ├── pytest.ini ├── requirements.txt ├── requirements ├── build.txt ├── docs.txt ├── optional.txt ├── readthedocs.txt ├── runtime.txt └── tests.txt ├── resources └── architecture.png ├── setup.cfg ├── setup.py ├── tests ├── async_benchmark.py ├── data │ ├── coco_sample.json │ ├── color.jpg │ └── gray.jpg ├── test_anchor.py ├── test_assigner.py ├── test_async.py ├── test_coder.py ├── test_config.py ├── test_data │ ├── test_dataset.py │ ├── test_formatting.py │ ├── test_img_augment.py │ ├── test_loading.py │ ├── test_models_aug_test.py │ ├── test_rotate.py │ ├── test_sampler.py │ ├── test_shear.py │ ├── test_transform.py │ ├── test_translate.py │ └── test_utils.py ├── test_eval_hook.py ├── test_fp16.py ├── test_iou2d_calculator.py ├── test_masks.py ├── test_models │ ├── test_backbones.py │ ├── test_forward.py │ ├── test_heads.py │ ├── test_losses.py │ ├── test_necks.py │ ├── test_pisa_heads.py │ └── test_roi_extractor.py └── test_version.py └── tools ├── analyze_logs.py ├── benchmark.py ├── browse_dataset.py ├── coco_error_analysis.py ├── convert_datasets ├── cityscapes.py └── pascal_voc.py ├── detectron2pytorch.py ├── dist_test.sh ├── dist_train.sh ├── eval_metric.py ├── get_flops.py ├── prepare.sh ├── print_config.py ├── publish_model.py ├── pytorch2onnx.py ├── regnet2mmdet.py ├── robustness_eval.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py ├── test_robustness.py ├── train.py └── upgrade_model_version.py /.dev_scripts/batch_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.dev_scripts/batch_test.py -------------------------------------------------------------------------------- /.dev_scripts/batch_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.dev_scripts/batch_test.sh -------------------------------------------------------------------------------- /.dev_scripts/benchmark_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.dev_scripts/benchmark_filter.py -------------------------------------------------------------------------------- /.dev_scripts/gather_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.dev_scripts/gather_models.py -------------------------------------------------------------------------------- /.dev_scripts/linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.dev_scripts/linter.sh -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/error-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.github/ISSUE_TEMPLATE/error-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.github/ISSUE_TEMPLATE/general_questions.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/reimplementation_questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.github/ISSUE_TEMPLATE/reimplementation_questions.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/README.md -------------------------------------------------------------------------------- /configs/wsod/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/configs/wsod/base.py -------------------------------------------------------------------------------- /configs/wsod/oicr_bbox_vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/configs/wsod/oicr_bbox_vgg16.py -------------------------------------------------------------------------------- /configs/wsod/oicr_vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/configs/wsod/oicr_vgg16.py -------------------------------------------------------------------------------- /configs/wsod/wsddn_vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/configs/wsod/wsddn_vgg16.py -------------------------------------------------------------------------------- /configs/wsod/wsod2_vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/configs/wsod/wsod2_vgg16.py -------------------------------------------------------------------------------- /demo/MMDet_Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/demo/MMDet_Tutorial.ipynb -------------------------------------------------------------------------------- /demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/demo/demo.jpg -------------------------------------------------------------------------------- /demo/image_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/demo/image_demo.py -------------------------------------------------------------------------------- /demo/inference_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/demo/inference_demo.ipynb -------------------------------------------------------------------------------- /demo/webcam_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/demo/webcam_demo.py -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/1_exist_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/1_exist_data_model.md -------------------------------------------------------------------------------- /docs/2_new_data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/2_new_data_model.md -------------------------------------------------------------------------------- /docs/3_exist_data_new_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/3_exist_data_new_model.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/compatibility.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/conventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/conventions.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/get_started.md -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/model_zoo.md -------------------------------------------------------------------------------- /docs/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/projects.md -------------------------------------------------------------------------------- /docs/robustness_benchmarking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/robustness_benchmarking.md -------------------------------------------------------------------------------- /docs/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/stat.py -------------------------------------------------------------------------------- /docs/tutorials/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/tutorials/config.md -------------------------------------------------------------------------------- /docs/tutorials/customize_dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/tutorials/customize_dataset.md -------------------------------------------------------------------------------- /docs/tutorials/customize_losses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/tutorials/customize_losses.md -------------------------------------------------------------------------------- /docs/tutorials/customize_models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/tutorials/customize_models.md -------------------------------------------------------------------------------- /docs/tutorials/customize_runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/tutorials/customize_runtime.md -------------------------------------------------------------------------------- /docs/tutorials/data_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/tutorials/data_pipeline.md -------------------------------------------------------------------------------- /docs/tutorials/finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/tutorials/finetune.md -------------------------------------------------------------------------------- /docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/tutorials/index.rst -------------------------------------------------------------------------------- /docs/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/docs/useful_tools.md -------------------------------------------------------------------------------- /mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/__init__.py -------------------------------------------------------------------------------- /mmdet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/apis/__init__.py -------------------------------------------------------------------------------- /mmdet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/apis/inference.py -------------------------------------------------------------------------------- /mmdet/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/apis/test.py -------------------------------------------------------------------------------- /mmdet/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/apis/train.py -------------------------------------------------------------------------------- /mmdet/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/__init__.py -------------------------------------------------------------------------------- /mmdet/core/anchor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/anchor/__init__.py -------------------------------------------------------------------------------- /mmdet/core/anchor/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/anchor/anchor_generator.py -------------------------------------------------------------------------------- /mmdet/core/anchor/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/anchor/builder.py -------------------------------------------------------------------------------- /mmdet/core/anchor/point_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/anchor/point_generator.py -------------------------------------------------------------------------------- /mmdet/core/anchor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/anchor/utils.py -------------------------------------------------------------------------------- /mmdet/core/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/assigners/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/approx_max_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/assigners/approx_max_iou_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/assign_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/assigners/assign_result.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/atss_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/assigners/atss_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/base_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/assigners/base_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/center_region_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/assigners/center_region_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/grid_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/assigners/grid_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/max_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/assigners/max_iou_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/assigners/point_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/assigners/point_assigner.py -------------------------------------------------------------------------------- /mmdet/core/bbox/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/builder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/coder/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/base_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/coder/base_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/bucketing_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/coder/bucketing_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/delta_xywh_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/coder/delta_xywh_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/legacy_delta_xywh_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/coder/legacy_delta_xywh_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/pseudo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/coder/pseudo_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/tblr_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/coder/tblr_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/coder/yolo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/coder/yolo_bbox_coder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/demodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/demodata.py -------------------------------------------------------------------------------- /mmdet/core/bbox/iou_calculators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/iou_calculators/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/iou_calculators/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/iou_calculators/builder.py -------------------------------------------------------------------------------- /mmdet/core/bbox/iou_calculators/iou2d_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/iou_calculators/iou2d_calculator.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/samplers/__init__.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/base_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/samplers/base_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/combined_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/samplers/combined_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/instance_balanced_pos_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/samplers/instance_balanced_pos_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/iou_balanced_neg_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/samplers/iou_balanced_neg_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/ohem_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/samplers/ohem_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/pseudo_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/samplers/pseudo_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/random_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/samplers/random_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/sampling_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/samplers/sampling_result.py -------------------------------------------------------------------------------- /mmdet/core/bbox/samplers/score_hlr_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/samplers/score_hlr_sampler.py -------------------------------------------------------------------------------- /mmdet/core/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/bbox/transforms.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/evaluation/__init__.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/evaluation/bbox_overlaps.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/evaluation/class_names.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/evaluation/mean_ap.py -------------------------------------------------------------------------------- /mmdet/core/evaluation/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/evaluation/recall.py -------------------------------------------------------------------------------- /mmdet/core/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/export/__init__.py -------------------------------------------------------------------------------- /mmdet/core/export/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/export/pytorch2onnx.py -------------------------------------------------------------------------------- /mmdet/core/fp16/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/fp16/__init__.py -------------------------------------------------------------------------------- /mmdet/core/fp16/deprecated_fp16_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/fp16/deprecated_fp16_utils.py -------------------------------------------------------------------------------- /mmdet/core/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/mask/__init__.py -------------------------------------------------------------------------------- /mmdet/core/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/mask/mask_target.py -------------------------------------------------------------------------------- /mmdet/core/mask/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/mask/structures.py -------------------------------------------------------------------------------- /mmdet/core/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/mask/utils.py -------------------------------------------------------------------------------- /mmdet/core/post_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/post_processing/__init__.py -------------------------------------------------------------------------------- /mmdet/core/post_processing/bbox_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/post_processing/bbox_nms.py -------------------------------------------------------------------------------- /mmdet/core/post_processing/merge_augs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/post_processing/merge_augs.py -------------------------------------------------------------------------------- /mmdet/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/utils/__init__.py -------------------------------------------------------------------------------- /mmdet/core/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/utils/dist_utils.py -------------------------------------------------------------------------------- /mmdet/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/core/utils/misc.py -------------------------------------------------------------------------------- /mmdet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/builder.py -------------------------------------------------------------------------------- /mmdet/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/cityscapes.py -------------------------------------------------------------------------------- /mmdet/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/coco.py -------------------------------------------------------------------------------- /mmdet/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/custom.py -------------------------------------------------------------------------------- /mmdet/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmdet/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/deepfashion.py -------------------------------------------------------------------------------- /mmdet/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/lvis.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/auto_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/pipelines/auto_augment.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/instaboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/pipelines/instaboost.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/test_time_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/pipelines/test_time_aug.py -------------------------------------------------------------------------------- /mmdet/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /mmdet/datasets/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/samplers/__init__.py -------------------------------------------------------------------------------- /mmdet/datasets/samplers/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/samplers/distributed_sampler.py -------------------------------------------------------------------------------- /mmdet/datasets/samplers/group_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/samplers/group_sampler.py -------------------------------------------------------------------------------- /mmdet/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/utils.py -------------------------------------------------------------------------------- /mmdet/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/voc.py -------------------------------------------------------------------------------- /mmdet/datasets/voc_ss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/voc_ss.py -------------------------------------------------------------------------------- /mmdet/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdet/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/datasets/xml_style.py -------------------------------------------------------------------------------- /mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/__init__.py -------------------------------------------------------------------------------- /mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmdet/models/backbones/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/darknet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/detectors_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/detectors_resnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/detectors_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/detectors_resnext.py -------------------------------------------------------------------------------- /mmdet/models/backbones/hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/hourglass.py -------------------------------------------------------------------------------- /mmdet/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/hrnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/regnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/res2net.py -------------------------------------------------------------------------------- /mmdet/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/resnest.py -------------------------------------------------------------------------------- /mmdet/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmdet/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/resnext.py -------------------------------------------------------------------------------- /mmdet/models/backbones/ssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/ssd_vgg.py -------------------------------------------------------------------------------- /mmdet/models/backbones/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/backbones/vgg.py -------------------------------------------------------------------------------- /mmdet/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/builder.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/anchor_free_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/anchor_free_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/anchor_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/atss_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/atss_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/base_dense_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/base_dense_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/centripetal_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/centripetal_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/corner_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/corner_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/dense_test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/dense_test_mixins.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/fcos_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/fovea_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/fovea_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/free_anchor_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/free_anchor_retina_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/fsaf_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/fsaf_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ga_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/ga_retina_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ga_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/ga_rpn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/gfl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/gfl_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/guided_anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/guided_anchor_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/nasfcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/nasfcos_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/paa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/paa_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/pisa_retinanet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/pisa_retinanet_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/pisa_ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/pisa_ssd_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/reppoints_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/reppoints_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/retina_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/retina_sepbn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/retina_sepbn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/rpn_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/rpn_test_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/rpn_test_mixin.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/sabl_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/sabl_retina_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/ssd_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/vfnet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/vfnet_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/yolact_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/yolact_head.py -------------------------------------------------------------------------------- /mmdet/models/dense_heads/yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/dense_heads/yolo_head.py -------------------------------------------------------------------------------- /mmdet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/__init__.py -------------------------------------------------------------------------------- /mmdet/models/detectors/atss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/atss.py -------------------------------------------------------------------------------- /mmdet/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/base.py -------------------------------------------------------------------------------- /mmdet/models/detectors/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/cascade_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/cornernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/cornernet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/fast_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/faster_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/fcos.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fovea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/fovea.py -------------------------------------------------------------------------------- /mmdet/models/detectors/fsaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/fsaf.py -------------------------------------------------------------------------------- /mmdet/models/detectors/gfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/gfl.py -------------------------------------------------------------------------------- /mmdet/models/detectors/grid_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/grid_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/htc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/htc.py -------------------------------------------------------------------------------- /mmdet/models/detectors/mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/mask_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/mask_scoring_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/mask_scoring_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/nasfcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/nasfcos.py -------------------------------------------------------------------------------- /mmdet/models/detectors/paa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/paa.py -------------------------------------------------------------------------------- /mmdet/models/detectors/point_rend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/point_rend.py -------------------------------------------------------------------------------- /mmdet/models/detectors/reppoints_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/reppoints_detector.py -------------------------------------------------------------------------------- /mmdet/models/detectors/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/retinanet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/rpn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/single_stage.py -------------------------------------------------------------------------------- /mmdet/models/detectors/two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/two_stage.py -------------------------------------------------------------------------------- /mmdet/models/detectors/vfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/vfnet.py -------------------------------------------------------------------------------- /mmdet/models/detectors/weak_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/weak_rcnn.py -------------------------------------------------------------------------------- /mmdet/models/detectors/yolact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/yolact.py -------------------------------------------------------------------------------- /mmdet/models/detectors/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/detectors/yolo.py -------------------------------------------------------------------------------- /mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /mmdet/models/losses/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/ae_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/balanced_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/balanced_l1_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/focal_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/gaussian_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/gaussian_focal_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/gfocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/gfocal_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/pisa_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/pisa_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/smooth_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/smooth_l1_loss.py -------------------------------------------------------------------------------- /mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /mmdet/models/losses/varifocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/losses/varifocal_loss.py -------------------------------------------------------------------------------- /mmdet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/necks/__init__.py -------------------------------------------------------------------------------- /mmdet/models/necks/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/necks/bfp.py -------------------------------------------------------------------------------- /mmdet/models/necks/channel_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/necks/channel_mapper.py -------------------------------------------------------------------------------- /mmdet/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/necks/fpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/fpn_carafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/necks/fpn_carafe.py -------------------------------------------------------------------------------- /mmdet/models/necks/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/necks/hrfpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/nas_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/necks/nas_fpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/nasfcos_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/necks/nasfcos_fpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/necks/pafpn.py -------------------------------------------------------------------------------- /mmdet/models/necks/rfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/necks/rfp.py -------------------------------------------------------------------------------- /mmdet/models/necks/yolo_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/necks/yolo_neck.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/base_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/base_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/bbox_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/bbox_heads/bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/convfc_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/bbox_heads/convfc_bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/double_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/bbox_heads/double_bbox_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/oicr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/bbox_heads/oicr_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/sabl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/bbox_heads/sabl_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/bbox_heads/wsddn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/bbox_heads/wsddn_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/cascade_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/cascade_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/double_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/double_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/dynamic_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/dynamic_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/grid_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/grid_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/htc_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/htc_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/mask_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/coarse_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/mask_heads/coarse_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/fcn_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/mask_heads/fcn_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/fused_semantic_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/mask_heads/fused_semantic_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/grid_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/mask_heads/grid_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/htc_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/mask_heads/htc_mask_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/mask_point_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/mask_heads/mask_point_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_heads/maskiou_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/mask_heads/maskiou_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/mask_scoring_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/mask_scoring_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/oicr_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/oicr_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/pisa_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/pisa_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/point_rend_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/point_rend_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/roi_extractors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/roi_extractors/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/roi_extractors/base_roi_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/roi_extractors/base_roi_extractor.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/roi_extractors/generic_roi_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/roi_extractors/generic_roi_extractor.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/roi_extractors/single_level_roi_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/roi_extractors/single_level_roi_extractor.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/shared_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/shared_heads/__init__.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/shared_heads/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/shared_heads/res_layer.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/standard_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/standard_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/test_mixins.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/wsddn_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/wsddn_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/roi_heads/wsod2_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/roi_heads/wsod2_roi_head.py -------------------------------------------------------------------------------- /mmdet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/utils/__init__.py -------------------------------------------------------------------------------- /mmdet/models/utils/gaussian_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/utils/gaussian_target.py -------------------------------------------------------------------------------- /mmdet/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/models/utils/res_layer.py -------------------------------------------------------------------------------- /mmdet/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/ops/__init__.py -------------------------------------------------------------------------------- /mmdet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/utils/__init__.py -------------------------------------------------------------------------------- /mmdet/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/utils/collect_env.py -------------------------------------------------------------------------------- /mmdet/utils/contextmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/utils/contextmanagers.py -------------------------------------------------------------------------------- /mmdet/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/utils/logger.py -------------------------------------------------------------------------------- /mmdet/utils/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/utils/profiling.py -------------------------------------------------------------------------------- /mmdet/utils/util_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/utils/util_mixins.py -------------------------------------------------------------------------------- /mmdet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/mmdet/version.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/requirements/build.txt -------------------------------------------------------------------------------- /requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/requirements/docs.txt -------------------------------------------------------------------------------- /requirements/optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/requirements/optional.txt -------------------------------------------------------------------------------- /requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/requirements/readthedocs.txt -------------------------------------------------------------------------------- /requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/requirements/runtime.txt -------------------------------------------------------------------------------- /requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/requirements/tests.txt -------------------------------------------------------------------------------- /resources/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/resources/architecture.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/setup.py -------------------------------------------------------------------------------- /tests/async_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/async_benchmark.py -------------------------------------------------------------------------------- /tests/data/coco_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/data/coco_sample.json -------------------------------------------------------------------------------- /tests/data/color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/data/color.jpg -------------------------------------------------------------------------------- /tests/data/gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/data/gray.jpg -------------------------------------------------------------------------------- /tests/test_anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_anchor.py -------------------------------------------------------------------------------- /tests/test_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_assigner.py -------------------------------------------------------------------------------- /tests/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_async.py -------------------------------------------------------------------------------- /tests/test_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_coder.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_data/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_data/test_dataset.py -------------------------------------------------------------------------------- /tests/test_data/test_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_data/test_formatting.py -------------------------------------------------------------------------------- /tests/test_data/test_img_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_data/test_img_augment.py -------------------------------------------------------------------------------- /tests/test_data/test_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_data/test_loading.py -------------------------------------------------------------------------------- /tests/test_data/test_models_aug_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_data/test_models_aug_test.py -------------------------------------------------------------------------------- /tests/test_data/test_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_data/test_rotate.py -------------------------------------------------------------------------------- /tests/test_data/test_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_data/test_sampler.py -------------------------------------------------------------------------------- /tests/test_data/test_shear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_data/test_shear.py -------------------------------------------------------------------------------- /tests/test_data/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_data/test_transform.py -------------------------------------------------------------------------------- /tests/test_data/test_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_data/test_translate.py -------------------------------------------------------------------------------- /tests/test_data/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_data/test_utils.py -------------------------------------------------------------------------------- /tests/test_eval_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_eval_hook.py -------------------------------------------------------------------------------- /tests/test_fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_fp16.py -------------------------------------------------------------------------------- /tests/test_iou2d_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_iou2d_calculator.py -------------------------------------------------------------------------------- /tests/test_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_masks.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_models/test_backbones.py -------------------------------------------------------------------------------- /tests/test_models/test_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_models/test_forward.py -------------------------------------------------------------------------------- /tests/test_models/test_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_models/test_heads.py -------------------------------------------------------------------------------- /tests/test_models/test_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_models/test_losses.py -------------------------------------------------------------------------------- /tests/test_models/test_necks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_models/test_necks.py -------------------------------------------------------------------------------- /tests/test_models/test_pisa_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_models/test_pisa_heads.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_models/test_roi_extractor.py -------------------------------------------------------------------------------- /tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tests/test_version.py -------------------------------------------------------------------------------- /tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/analyze_logs.py -------------------------------------------------------------------------------- /tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/benchmark.py -------------------------------------------------------------------------------- /tools/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/browse_dataset.py -------------------------------------------------------------------------------- /tools/coco_error_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/coco_error_analysis.py -------------------------------------------------------------------------------- /tools/convert_datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/convert_datasets/cityscapes.py -------------------------------------------------------------------------------- /tools/convert_datasets/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/convert_datasets/pascal_voc.py -------------------------------------------------------------------------------- /tools/detectron2pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/detectron2pytorch.py -------------------------------------------------------------------------------- /tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/dist_test.sh -------------------------------------------------------------------------------- /tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/dist_train.sh -------------------------------------------------------------------------------- /tools/eval_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/eval_metric.py -------------------------------------------------------------------------------- /tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/get_flops.py -------------------------------------------------------------------------------- /tools/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/prepare.sh -------------------------------------------------------------------------------- /tools/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/print_config.py -------------------------------------------------------------------------------- /tools/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/publish_model.py -------------------------------------------------------------------------------- /tools/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/pytorch2onnx.py -------------------------------------------------------------------------------- /tools/regnet2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/regnet2mmdet.py -------------------------------------------------------------------------------- /tools/robustness_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/robustness_eval.py -------------------------------------------------------------------------------- /tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/slurm_test.sh -------------------------------------------------------------------------------- /tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/slurm_train.sh -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/test_robustness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/test_robustness.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/train.py -------------------------------------------------------------------------------- /tools/upgrade_model_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/researchmm/WSOD2/HEAD/tools/upgrade_model_version.py --------------------------------------------------------------------------------