├── LICENSE ├── README.md ├── configs ├── Base-DiffusionDet.yaml ├── diffdet.custom.swinbase.enumeration.yaml └── diffdet.custom.swinbase.nonpretrain.yaml ├── demo.py ├── detectron2 ├── __init__.py ├── checkpoint │ ├── __init__.py │ ├── c2_model_loading.py │ ├── catalog.py │ └── detection_checkpoint.py ├── config │ ├── __init__.py │ ├── compat.py │ ├── config.py │ ├── defaults.py │ ├── instantiate.py │ └── lazy.py ├── data │ ├── __init__.py │ ├── benchmark.py │ ├── build.py │ ├── catalog.py │ ├── common.py │ ├── dataset_mapper.py │ ├── datasets │ │ ├── .ipynb_checkpoints │ │ │ ├── coco-checkpoint.py │ │ │ └── register_coco-checkpoint.py │ │ ├── __init__.py │ │ ├── builtin.py │ │ ├── builtin_meta.py │ │ ├── cityscapes.py │ │ ├── cityscapes_panoptic.py │ │ ├── coco.py │ │ ├── coco_panoptic.py │ │ ├── lvis.py │ │ ├── lvis_v0_5_categories.py │ │ ├── lvis_v1_categories.py │ │ ├── lvis_v1_category_image_count.py │ │ ├── pascal_voc.py │ │ └── register_coco.py │ ├── detection_utils.py │ ├── samplers │ │ ├── __init__.py │ │ ├── distributed_sampler.py │ │ └── grouped_batch_sampler.py │ └── transforms │ │ ├── __init__.py │ │ ├── augmentation.py │ │ ├── augmentation_impl.py │ │ └── transform.py ├── engine │ ├── __init__.py │ ├── defaults.py │ ├── hooks.py │ ├── launch.py │ └── train_loop.py ├── evaluation │ ├── __init__.py │ ├── cityscapes_evaluation.py │ ├── coco_evaluation.py │ ├── evaluator.py │ ├── fast_eval_api.py │ ├── lvis_evaluation.py │ ├── panoptic_evaluation.py │ ├── pascal_voc_evaluation.py │ ├── rotated_coco_evaluation.py │ ├── sem_seg_evaluation.py │ └── testing.py ├── export │ ├── __init__.py │ ├── api.py │ ├── c10.py │ ├── caffe2_export.py │ ├── caffe2_inference.py │ ├── caffe2_modeling.py │ ├── caffe2_patch.py │ ├── flatten.py │ ├── shared.py │ ├── torchscript.py │ └── torchscript_patch.py ├── layers │ ├── __init__.py │ ├── aspp.py │ ├── batch_norm.py │ ├── blocks.py │ ├── deform_conv.py │ ├── losses.py │ ├── mask_ops.py │ ├── nms.py │ ├── roi_align.py │ ├── roi_align_rotated.py │ ├── rotated_boxes.py │ ├── shape_spec.py │ └── wrappers.py ├── model_zoo │ ├── __init__.py │ ├── configs │ │ ├── Base-RCNN-C4.yaml │ │ ├── Base-RCNN-DilatedC5.yaml │ │ ├── Base-RCNN-FPN.yaml │ │ ├── Base-RetinaNet.yaml │ │ ├── COCO-Detection │ │ │ ├── fast_rcnn_R_50_FPN_1x.yaml │ │ │ ├── faster_rcnn_R_101_C4_3x.yaml │ │ │ ├── faster_rcnn_R_101_DC5_3x.yaml │ │ │ ├── faster_rcnn_R_101_FPN_3x.yaml │ │ │ ├── faster_rcnn_R_50_C4_1x.yaml │ │ │ ├── faster_rcnn_R_50_C4_3x.yaml │ │ │ ├── faster_rcnn_R_50_DC5_1x.yaml │ │ │ ├── faster_rcnn_R_50_DC5_3x.yaml │ │ │ ├── faster_rcnn_R_50_FPN_1x.yaml │ │ │ ├── faster_rcnn_R_50_FPN_3x.yaml │ │ │ ├── faster_rcnn_X_101_32x8d_FPN_3x.yaml │ │ │ ├── fcos_R_50_FPN_1x.py │ │ │ ├── retinanet_R_101_FPN_3x.yaml │ │ │ ├── retinanet_R_50_FPN_1x.py │ │ │ ├── retinanet_R_50_FPN_1x.yaml │ │ │ ├── retinanet_R_50_FPN_3x.yaml │ │ │ ├── rpn_R_50_C4_1x.yaml │ │ │ └── rpn_R_50_FPN_1x.yaml │ │ ├── COCO-InstanceSegmentation │ │ │ ├── mask_rcnn_R_101_C4_3x.yaml │ │ │ ├── mask_rcnn_R_101_DC5_3x.yaml │ │ │ ├── mask_rcnn_R_101_FPN_3x.yaml │ │ │ ├── mask_rcnn_R_50_C4_1x.py │ │ │ ├── mask_rcnn_R_50_C4_1x.yaml │ │ │ ├── mask_rcnn_R_50_C4_3x.yaml │ │ │ ├── mask_rcnn_R_50_DC5_1x.yaml │ │ │ ├── mask_rcnn_R_50_DC5_3x.yaml │ │ │ ├── mask_rcnn_R_50_FPN_1x.py │ │ │ ├── mask_rcnn_R_50_FPN_1x.yaml │ │ │ ├── mask_rcnn_R_50_FPN_1x_giou.yaml │ │ │ ├── mask_rcnn_R_50_FPN_3x.yaml │ │ │ ├── mask_rcnn_X_101_32x8d_FPN_3x.yaml │ │ │ ├── mask_rcnn_regnetx_4gf_dds_fpn_1x.py │ │ │ └── mask_rcnn_regnety_4gf_dds_fpn_1x.py │ │ ├── COCO-Keypoints │ │ │ ├── Base-Keypoint-RCNN-FPN.yaml │ │ │ ├── keypoint_rcnn_R_101_FPN_3x.yaml │ │ │ ├── keypoint_rcnn_R_50_FPN_1x.py │ │ │ ├── keypoint_rcnn_R_50_FPN_1x.yaml │ │ │ ├── keypoint_rcnn_R_50_FPN_3x.yaml │ │ │ └── keypoint_rcnn_X_101_32x8d_FPN_3x.yaml │ │ ├── COCO-PanopticSegmentation │ │ │ ├── Base-Panoptic-FPN.yaml │ │ │ ├── panoptic_fpn_R_101_3x.yaml │ │ │ ├── panoptic_fpn_R_50_1x.py │ │ │ ├── panoptic_fpn_R_50_1x.yaml │ │ │ └── panoptic_fpn_R_50_3x.yaml │ │ ├── Cityscapes │ │ │ └── mask_rcnn_R_50_FPN.yaml │ │ ├── Detectron1-Comparisons │ │ │ ├── faster_rcnn_R_50_FPN_noaug_1x.yaml │ │ │ ├── keypoint_rcnn_R_50_FPN_1x.yaml │ │ │ └── mask_rcnn_R_50_FPN_noaug_1x.yaml │ │ ├── LVISv0.5-InstanceSegmentation │ │ │ ├── mask_rcnn_R_101_FPN_1x.yaml │ │ │ ├── mask_rcnn_R_50_FPN_1x.yaml │ │ │ └── mask_rcnn_X_101_32x8d_FPN_1x.yaml │ │ ├── LVISv1-InstanceSegmentation │ │ │ ├── mask_rcnn_R_101_FPN_1x.yaml │ │ │ ├── mask_rcnn_R_50_FPN_1x.yaml │ │ │ └── mask_rcnn_X_101_32x8d_FPN_1x.yaml │ │ ├── Misc │ │ │ ├── cascade_mask_rcnn_R_50_FPN_1x.yaml │ │ │ ├── cascade_mask_rcnn_R_50_FPN_3x.yaml │ │ │ ├── cascade_mask_rcnn_X_152_32x8d_FPN_IN5k_gn_dconv.yaml │ │ │ ├── mask_rcnn_R_50_FPN_1x_cls_agnostic.yaml │ │ │ ├── mask_rcnn_R_50_FPN_1x_dconv_c3-c5.yaml │ │ │ ├── mask_rcnn_R_50_FPN_3x_dconv_c3-c5.yaml │ │ │ ├── mask_rcnn_R_50_FPN_3x_gn.yaml │ │ │ ├── mask_rcnn_R_50_FPN_3x_syncbn.yaml │ │ │ ├── mmdet_mask_rcnn_R_50_FPN_1x.py │ │ │ ├── panoptic_fpn_R_101_dconv_cascade_gn_3x.yaml │ │ │ ├── scratch_mask_rcnn_R_50_FPN_3x_gn.yaml │ │ │ ├── scratch_mask_rcnn_R_50_FPN_9x_gn.yaml │ │ │ ├── scratch_mask_rcnn_R_50_FPN_9x_syncbn.yaml │ │ │ ├── semantic_R_50_FPN_1x.yaml │ │ │ └── torchvision_imagenet_R_50.py │ │ ├── PascalVOC-Detection │ │ │ ├── faster_rcnn_R_50_C4.yaml │ │ │ └── faster_rcnn_R_50_FPN.yaml │ │ ├── common │ │ │ ├── coco_schedule.py │ │ │ ├── data │ │ │ │ ├── coco.py │ │ │ │ ├── coco_keypoint.py │ │ │ │ ├── coco_panoptic_separated.py │ │ │ │ └── constants.py │ │ │ ├── models │ │ │ │ ├── cascade_rcnn.py │ │ │ │ ├── fcos.py │ │ │ │ ├── keypoint_rcnn_fpn.py │ │ │ │ ├── mask_rcnn_c4.py │ │ │ │ ├── mask_rcnn_fpn.py │ │ │ │ ├── mask_rcnn_vitdet.py │ │ │ │ ├── panoptic_fpn.py │ │ │ │ └── retinanet.py │ │ │ ├── optim.py │ │ │ └── train.py │ │ ├── new_baselines │ │ │ ├── mask_rcnn_R_101_FPN_100ep_LSJ.py │ │ │ ├── mask_rcnn_R_101_FPN_200ep_LSJ.py │ │ │ ├── mask_rcnn_R_101_FPN_400ep_LSJ.py │ │ │ ├── mask_rcnn_R_50_FPN_100ep_LSJ.py │ │ │ ├── mask_rcnn_R_50_FPN_200ep_LSJ.py │ │ │ ├── mask_rcnn_R_50_FPN_400ep_LSJ.py │ │ │ ├── mask_rcnn_R_50_FPN_50ep_LSJ.py │ │ │ ├── mask_rcnn_regnetx_4gf_dds_FPN_100ep_LSJ.py │ │ │ ├── mask_rcnn_regnetx_4gf_dds_FPN_200ep_LSJ.py │ │ │ ├── mask_rcnn_regnetx_4gf_dds_FPN_400ep_LSJ.py │ │ │ ├── mask_rcnn_regnety_4gf_dds_FPN_100ep_LSJ.py │ │ │ ├── mask_rcnn_regnety_4gf_dds_FPN_200ep_LSJ.py │ │ │ └── mask_rcnn_regnety_4gf_dds_FPN_400ep_LSJ.py │ │ └── quick_schedules │ │ │ ├── cascade_mask_rcnn_R_50_FPN_inference_acc_test.yaml │ │ │ ├── cascade_mask_rcnn_R_50_FPN_instant_test.yaml │ │ │ ├── fast_rcnn_R_50_FPN_inference_acc_test.yaml │ │ │ ├── fast_rcnn_R_50_FPN_instant_test.yaml │ │ │ ├── keypoint_rcnn_R_50_FPN_inference_acc_test.yaml │ │ │ ├── keypoint_rcnn_R_50_FPN_instant_test.yaml │ │ │ ├── keypoint_rcnn_R_50_FPN_normalized_training_acc_test.yaml │ │ │ ├── keypoint_rcnn_R_50_FPN_training_acc_test.yaml │ │ │ ├── mask_rcnn_R_50_C4_GCV_instant_test.yaml │ │ │ ├── mask_rcnn_R_50_C4_inference_acc_test.yaml │ │ │ ├── mask_rcnn_R_50_C4_instant_test.yaml │ │ │ ├── mask_rcnn_R_50_C4_training_acc_test.yaml │ │ │ ├── mask_rcnn_R_50_DC5_inference_acc_test.yaml │ │ │ ├── mask_rcnn_R_50_FPN_inference_acc_test.yaml │ │ │ ├── mask_rcnn_R_50_FPN_instant_test.yaml │ │ │ ├── mask_rcnn_R_50_FPN_pred_boxes_training_acc_test.yaml │ │ │ ├── mask_rcnn_R_50_FPN_training_acc_test.yaml │ │ │ ├── panoptic_fpn_R_50_inference_acc_test.yaml │ │ │ ├── panoptic_fpn_R_50_instant_test.yaml │ │ │ ├── panoptic_fpn_R_50_training_acc_test.yaml │ │ │ ├── retinanet_R_50_FPN_inference_acc_test.yaml │ │ │ ├── retinanet_R_50_FPN_instant_test.yaml │ │ │ ├── rpn_R_50_FPN_inference_acc_test.yaml │ │ │ ├── rpn_R_50_FPN_instant_test.yaml │ │ │ ├── semantic_R_50_FPN_inference_acc_test.yaml │ │ │ ├── semantic_R_50_FPN_instant_test.yaml │ │ │ └── semantic_R_50_FPN_training_acc_test.yaml │ └── model_zoo.py ├── modeling │ ├── __init__.py │ ├── anchor_generator.py │ ├── backbone │ │ ├── __init__.py │ │ ├── backbone.py │ │ ├── build.py │ │ ├── fpn.py │ │ ├── mvit.py │ │ ├── regnet.py │ │ ├── resnet.py │ │ ├── swin.py │ │ ├── utils.py │ │ └── vit.py │ ├── box_regression.py │ ├── matcher.py │ ├── meta_arch │ │ ├── __init__.py │ │ ├── build.py │ │ ├── dense_detector.py │ │ ├── fcos.py │ │ ├── panoptic_fpn.py │ │ ├── rcnn.py │ │ ├── retinanet.py │ │ └── semantic_seg.py │ ├── mmdet_wrapper.py │ ├── poolers.py │ ├── postprocessing.py │ ├── proposal_generator │ │ ├── __init__.py │ │ ├── build.py │ │ ├── proposal_utils.py │ │ ├── rpn.py │ │ └── rrpn.py │ ├── roi_heads │ │ ├── __init__.py │ │ ├── box_head.py │ │ ├── cascade_rcnn.py │ │ ├── fast_rcnn.py │ │ ├── keypoint_head.py │ │ ├── mask_head.py │ │ ├── roi_heads.py │ │ └── rotated_fast_rcnn.py │ ├── sampling.py │ └── test_time_augmentation.py ├── projects │ ├── __init__.py │ ├── deeplab │ │ ├── __init__.py │ │ ├── build_solver.py │ │ ├── config.py │ │ ├── loss.py │ │ ├── lr_scheduler.py │ │ ├── resnet.py │ │ └── semantic_seg.py │ ├── panoptic_deeplab │ │ ├── __init__.py │ │ ├── config.py │ │ ├── dataset_mapper.py │ │ ├── panoptic_seg.py │ │ ├── post_processing.py │ │ └── target_generator.py │ └── point_rend │ │ ├── __init__.py │ │ ├── color_augmentation.py │ │ ├── config.py │ │ ├── mask_head.py │ │ ├── point_features.py │ │ ├── point_head.py │ │ ├── roi_heads.py │ │ └── semantic_seg.py ├── solver │ ├── __init__.py │ ├── build.py │ └── lr_scheduler.py ├── structures │ ├── __init__.py │ ├── boxes.py │ ├── image_list.py │ ├── instances.py │ ├── keypoints.py │ ├── masks.py │ └── rotated_boxes.py ├── tracking │ ├── __init__.py │ ├── base_tracker.py │ ├── bbox_iou_tracker.py │ ├── hungarian_tracker.py │ ├── iou_weighted_hungarian_bbox_iou_tracker.py │ ├── utils.py │ └── vanilla_hungarian_bbox_iou_tracker.py └── utils │ ├── .ipynb_checkpoints │ └── visualizer-checkpoint.py │ ├── __init__.py │ ├── analysis.py │ ├── collect_env.py │ ├── colormap.py │ ├── comm.py │ ├── develop.py │ ├── env.py │ ├── events.py │ ├── file_io.py │ ├── logger.py │ ├── memory.py │ ├── registry.py │ ├── serialize.py │ ├── testing.py │ ├── tracing.py │ ├── video_visualizer.py │ └── visualizer.py ├── evaluator.py ├── figures ├── flowchart.png └── output.png ├── hierarchialdet ├── __init__.py ├── builder.py ├── config.py ├── dataset_mapper.py ├── detector.py ├── head.py ├── loader.py ├── loss.py ├── predictor.py ├── swintransformer.py ├── test_time_augmentation.py └── util │ ├── __init__.py │ ├── box_ops.py │ ├── coco_3class_eval.py │ ├── colormap.py │ ├── misc.py │ ├── model_ema.py │ └── plot_utils.py ├── pycocotools ├── __init__.py ├── coco.py ├── coco_edited.py ├── cocoeval.py ├── custom_train.json ├── mask.py ├── test.py └── val.json └── train_net.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/README.md -------------------------------------------------------------------------------- /configs/Base-DiffusionDet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/configs/Base-DiffusionDet.yaml -------------------------------------------------------------------------------- /configs/diffdet.custom.swinbase.enumeration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/configs/diffdet.custom.swinbase.enumeration.yaml -------------------------------------------------------------------------------- /configs/diffdet.custom.swinbase.nonpretrain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/configs/diffdet.custom.swinbase.nonpretrain.yaml -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/demo.py -------------------------------------------------------------------------------- /detectron2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/__init__.py -------------------------------------------------------------------------------- /detectron2/checkpoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/checkpoint/__init__.py -------------------------------------------------------------------------------- /detectron2/checkpoint/c2_model_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/checkpoint/c2_model_loading.py -------------------------------------------------------------------------------- /detectron2/checkpoint/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/checkpoint/catalog.py -------------------------------------------------------------------------------- /detectron2/checkpoint/detection_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/checkpoint/detection_checkpoint.py -------------------------------------------------------------------------------- /detectron2/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/config/__init__.py -------------------------------------------------------------------------------- /detectron2/config/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/config/compat.py -------------------------------------------------------------------------------- /detectron2/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/config/config.py -------------------------------------------------------------------------------- /detectron2/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/config/defaults.py -------------------------------------------------------------------------------- /detectron2/config/instantiate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/config/instantiate.py -------------------------------------------------------------------------------- /detectron2/config/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/config/lazy.py -------------------------------------------------------------------------------- /detectron2/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/__init__.py -------------------------------------------------------------------------------- /detectron2/data/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/benchmark.py -------------------------------------------------------------------------------- /detectron2/data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/build.py -------------------------------------------------------------------------------- /detectron2/data/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/catalog.py -------------------------------------------------------------------------------- /detectron2/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/common.py -------------------------------------------------------------------------------- /detectron2/data/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/dataset_mapper.py -------------------------------------------------------------------------------- /detectron2/data/datasets/.ipynb_checkpoints/coco-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/.ipynb_checkpoints/coco-checkpoint.py -------------------------------------------------------------------------------- /detectron2/data/datasets/.ipynb_checkpoints/register_coco-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/.ipynb_checkpoints/register_coco-checkpoint.py -------------------------------------------------------------------------------- /detectron2/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/__init__.py -------------------------------------------------------------------------------- /detectron2/data/datasets/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/builtin.py -------------------------------------------------------------------------------- /detectron2/data/datasets/builtin_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/builtin_meta.py -------------------------------------------------------------------------------- /detectron2/data/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/cityscapes.py -------------------------------------------------------------------------------- /detectron2/data/datasets/cityscapes_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/cityscapes_panoptic.py -------------------------------------------------------------------------------- /detectron2/data/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/coco.py -------------------------------------------------------------------------------- /detectron2/data/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /detectron2/data/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/lvis.py -------------------------------------------------------------------------------- /detectron2/data/datasets/lvis_v0_5_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/lvis_v0_5_categories.py -------------------------------------------------------------------------------- /detectron2/data/datasets/lvis_v1_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/lvis_v1_categories.py -------------------------------------------------------------------------------- /detectron2/data/datasets/lvis_v1_category_image_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/lvis_v1_category_image_count.py -------------------------------------------------------------------------------- /detectron2/data/datasets/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/pascal_voc.py -------------------------------------------------------------------------------- /detectron2/data/datasets/register_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/datasets/register_coco.py -------------------------------------------------------------------------------- /detectron2/data/detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/detection_utils.py -------------------------------------------------------------------------------- /detectron2/data/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/samplers/__init__.py -------------------------------------------------------------------------------- /detectron2/data/samplers/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/samplers/distributed_sampler.py -------------------------------------------------------------------------------- /detectron2/data/samplers/grouped_batch_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/samplers/grouped_batch_sampler.py -------------------------------------------------------------------------------- /detectron2/data/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/transforms/__init__.py -------------------------------------------------------------------------------- /detectron2/data/transforms/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/transforms/augmentation.py -------------------------------------------------------------------------------- /detectron2/data/transforms/augmentation_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/transforms/augmentation_impl.py -------------------------------------------------------------------------------- /detectron2/data/transforms/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/data/transforms/transform.py -------------------------------------------------------------------------------- /detectron2/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/engine/__init__.py -------------------------------------------------------------------------------- /detectron2/engine/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/engine/defaults.py -------------------------------------------------------------------------------- /detectron2/engine/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/engine/hooks.py -------------------------------------------------------------------------------- /detectron2/engine/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/engine/launch.py -------------------------------------------------------------------------------- /detectron2/engine/train_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/engine/train_loop.py -------------------------------------------------------------------------------- /detectron2/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/evaluation/__init__.py -------------------------------------------------------------------------------- /detectron2/evaluation/cityscapes_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/evaluation/cityscapes_evaluation.py -------------------------------------------------------------------------------- /detectron2/evaluation/coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/evaluation/coco_evaluation.py -------------------------------------------------------------------------------- /detectron2/evaluation/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/evaluation/evaluator.py -------------------------------------------------------------------------------- /detectron2/evaluation/fast_eval_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/evaluation/fast_eval_api.py -------------------------------------------------------------------------------- /detectron2/evaluation/lvis_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/evaluation/lvis_evaluation.py -------------------------------------------------------------------------------- /detectron2/evaluation/panoptic_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/evaluation/panoptic_evaluation.py -------------------------------------------------------------------------------- /detectron2/evaluation/pascal_voc_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/evaluation/pascal_voc_evaluation.py -------------------------------------------------------------------------------- /detectron2/evaluation/rotated_coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/evaluation/rotated_coco_evaluation.py -------------------------------------------------------------------------------- /detectron2/evaluation/sem_seg_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/evaluation/sem_seg_evaluation.py -------------------------------------------------------------------------------- /detectron2/evaluation/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/evaluation/testing.py -------------------------------------------------------------------------------- /detectron2/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/export/__init__.py -------------------------------------------------------------------------------- /detectron2/export/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/export/api.py -------------------------------------------------------------------------------- /detectron2/export/c10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/export/c10.py -------------------------------------------------------------------------------- /detectron2/export/caffe2_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/export/caffe2_export.py -------------------------------------------------------------------------------- /detectron2/export/caffe2_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/export/caffe2_inference.py -------------------------------------------------------------------------------- /detectron2/export/caffe2_modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/export/caffe2_modeling.py -------------------------------------------------------------------------------- /detectron2/export/caffe2_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/export/caffe2_patch.py -------------------------------------------------------------------------------- /detectron2/export/flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/export/flatten.py -------------------------------------------------------------------------------- /detectron2/export/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/export/shared.py -------------------------------------------------------------------------------- /detectron2/export/torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/export/torchscript.py -------------------------------------------------------------------------------- /detectron2/export/torchscript_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/export/torchscript_patch.py -------------------------------------------------------------------------------- /detectron2/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/__init__.py -------------------------------------------------------------------------------- /detectron2/layers/aspp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/aspp.py -------------------------------------------------------------------------------- /detectron2/layers/batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/batch_norm.py -------------------------------------------------------------------------------- /detectron2/layers/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/blocks.py -------------------------------------------------------------------------------- /detectron2/layers/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/deform_conv.py -------------------------------------------------------------------------------- /detectron2/layers/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/losses.py -------------------------------------------------------------------------------- /detectron2/layers/mask_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/mask_ops.py -------------------------------------------------------------------------------- /detectron2/layers/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/nms.py -------------------------------------------------------------------------------- /detectron2/layers/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/roi_align.py -------------------------------------------------------------------------------- /detectron2/layers/roi_align_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/roi_align_rotated.py -------------------------------------------------------------------------------- /detectron2/layers/rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/rotated_boxes.py -------------------------------------------------------------------------------- /detectron2/layers/shape_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/shape_spec.py -------------------------------------------------------------------------------- /detectron2/layers/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/layers/wrappers.py -------------------------------------------------------------------------------- /detectron2/model_zoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/__init__.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Base-RCNN-C4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Base-RCNN-C4.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Base-RCNN-DilatedC5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Base-RCNN-DilatedC5.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Base-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Base-RCNN-FPN.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Base-RetinaNet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Base-RetinaNet.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/fast_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/fast_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_101_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_101_C4_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_101_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_101_DC5_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_50_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_50_C4_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_50_DC5_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_50_DC5_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_50_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_50_DC5_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_X_101_32x8d_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/faster_rcnn_X_101_32x8d_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/fcos_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/fcos_R_50_FPN_1x.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/retinanet_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/retinanet_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/retinanet_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/retinanet_R_50_FPN_1x.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/retinanet_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/retinanet_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/retinanet_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/retinanet_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/rpn_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/rpn_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Detection/rpn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Detection/rpn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_C4_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_DC5_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x_giou.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x_giou.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_regnetx_4gf_dds_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_regnetx_4gf_dds_fpn_1x.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_regnety_4gf_dds_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-InstanceSegmentation/mask_rcnn_regnety_4gf_dds_fpn_1x.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Keypoints/Base-Keypoint-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Keypoints/Base-Keypoint-RCNN-FPN.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Keypoints/keypoint_rcnn_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Keypoints/keypoint_rcnn_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-Keypoints/keypoint_rcnn_X_101_32x8d_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-Keypoints/keypoint_rcnn_X_101_32x8d_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-PanopticSegmentation/Base-Panoptic-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-PanopticSegmentation/Base-Panoptic-FPN.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-PanopticSegmentation/panoptic_fpn_R_101_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-PanopticSegmentation/panoptic_fpn_R_101_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Cityscapes/mask_rcnn_R_50_FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Cityscapes/mask_rcnn_R_50_FPN.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Detectron1-Comparisons/faster_rcnn_R_50_FPN_noaug_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Detectron1-Comparisons/faster_rcnn_R_50_FPN_noaug_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Detectron1-Comparisons/keypoint_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Detectron1-Comparisons/keypoint_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Detectron1-Comparisons/mask_rcnn_R_50_FPN_noaug_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Detectron1-Comparisons/mask_rcnn_R_50_FPN_noaug_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/LVISv0.5-InstanceSegmentation/mask_rcnn_R_101_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/LVISv0.5-InstanceSegmentation/mask_rcnn_R_101_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/LVISv0.5-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/LVISv0.5-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/LVISv0.5-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/LVISv0.5-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/LVISv1-InstanceSegmentation/mask_rcnn_R_101_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/LVISv1-InstanceSegmentation/mask_rcnn_R_101_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/LVISv1-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/LVISv1-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/LVISv1-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/LVISv1-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/cascade_mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/cascade_mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/cascade_mask_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/cascade_mask_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/cascade_mask_rcnn_X_152_32x8d_FPN_IN5k_gn_dconv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/cascade_mask_rcnn_X_152_32x8d_FPN_IN5k_gn_dconv.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/mask_rcnn_R_50_FPN_1x_cls_agnostic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/mask_rcnn_R_50_FPN_1x_cls_agnostic.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/mask_rcnn_R_50_FPN_1x_dconv_c3-c5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/mask_rcnn_R_50_FPN_1x_dconv_c3-c5.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/mask_rcnn_R_50_FPN_3x_dconv_c3-c5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/mask_rcnn_R_50_FPN_3x_dconv_c3-c5.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/mask_rcnn_R_50_FPN_3x_gn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/mask_rcnn_R_50_FPN_3x_gn.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/mask_rcnn_R_50_FPN_3x_syncbn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/mask_rcnn_R_50_FPN_3x_syncbn.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/mmdet_mask_rcnn_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/mmdet_mask_rcnn_R_50_FPN_1x.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/panoptic_fpn_R_101_dconv_cascade_gn_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/panoptic_fpn_R_101_dconv_cascade_gn_3x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/scratch_mask_rcnn_R_50_FPN_3x_gn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/scratch_mask_rcnn_R_50_FPN_3x_gn.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_gn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_gn.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_syncbn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_syncbn.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/semantic_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/semantic_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/Misc/torchvision_imagenet_R_50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/Misc/torchvision_imagenet_R_50.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/PascalVOC-Detection/faster_rcnn_R_50_C4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/PascalVOC-Detection/faster_rcnn_R_50_C4.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/PascalVOC-Detection/faster_rcnn_R_50_FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/PascalVOC-Detection/faster_rcnn_R_50_FPN.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/coco_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/coco_schedule.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/data/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/data/coco.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/data/coco_keypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/data/coco_keypoint.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/data/coco_panoptic_separated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/data/coco_panoptic_separated.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/data/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/data/constants.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/models/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/models/cascade_rcnn.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/models/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/models/fcos.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/models/keypoint_rcnn_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/models/keypoint_rcnn_fpn.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/models/mask_rcnn_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/models/mask_rcnn_c4.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/models/mask_rcnn_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/models/mask_rcnn_fpn.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/models/mask_rcnn_vitdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/models/mask_rcnn_vitdet.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/models/panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/models/panoptic_fpn.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/models/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/models/retinanet.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/optim.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/common/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/common/train.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_101_FPN_100ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_101_FPN_100ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_101_FPN_200ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_101_FPN_200ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_101_FPN_400ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_101_FPN_400ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_50_FPN_100ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_50_FPN_100ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_50_FPN_200ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_50_FPN_200ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_50_FPN_400ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_50_FPN_400ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_50_FPN_50ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_R_50_FPN_50ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_regnetx_4gf_dds_FPN_100ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_regnetx_4gf_dds_FPN_100ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_regnetx_4gf_dds_FPN_200ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_regnetx_4gf_dds_FPN_200ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_regnetx_4gf_dds_FPN_400ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_regnetx_4gf_dds_FPN_400ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_regnety_4gf_dds_FPN_100ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_regnety_4gf_dds_FPN_100ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_regnety_4gf_dds_FPN_200ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_regnety_4gf_dds_FPN_200ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/new_baselines/mask_rcnn_regnety_4gf_dds_FPN_400ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/new_baselines/mask_rcnn_regnety_4gf_dds_FPN_400ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/cascade_mask_rcnn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/cascade_mask_rcnn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/cascade_mask_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/cascade_mask_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/fast_rcnn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/fast_rcnn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/fast_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/fast_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/keypoint_rcnn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/keypoint_rcnn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/keypoint_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/keypoint_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/keypoint_rcnn_R_50_FPN_normalized_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/keypoint_rcnn_R_50_FPN_normalized_training_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/keypoint_rcnn_R_50_FPN_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/keypoint_rcnn_R_50_FPN_training_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_C4_GCV_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_C4_GCV_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_C4_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_C4_inference_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_C4_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_C4_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_C4_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_C4_training_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_DC5_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_DC5_inference_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_FPN_pred_boxes_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_FPN_pred_boxes_training_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_FPN_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/mask_rcnn_R_50_FPN_training_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/panoptic_fpn_R_50_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/panoptic_fpn_R_50_inference_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/panoptic_fpn_R_50_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/panoptic_fpn_R_50_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/panoptic_fpn_R_50_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/panoptic_fpn_R_50_training_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/retinanet_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/retinanet_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/retinanet_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/retinanet_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/rpn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/rpn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/rpn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/rpn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/semantic_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/semantic_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/semantic_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/semantic_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/configs/quick_schedules/semantic_R_50_FPN_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/configs/quick_schedules/semantic_R_50_FPN_training_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/model_zoo/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/model_zoo/model_zoo.py -------------------------------------------------------------------------------- /detectron2/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/__init__.py -------------------------------------------------------------------------------- /detectron2/modeling/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/anchor_generator.py -------------------------------------------------------------------------------- /detectron2/modeling/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/backbone/__init__.py -------------------------------------------------------------------------------- /detectron2/modeling/backbone/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/backbone/backbone.py -------------------------------------------------------------------------------- /detectron2/modeling/backbone/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/backbone/build.py -------------------------------------------------------------------------------- /detectron2/modeling/backbone/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/backbone/fpn.py -------------------------------------------------------------------------------- /detectron2/modeling/backbone/mvit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/backbone/mvit.py -------------------------------------------------------------------------------- /detectron2/modeling/backbone/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/backbone/regnet.py -------------------------------------------------------------------------------- /detectron2/modeling/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/backbone/resnet.py -------------------------------------------------------------------------------- /detectron2/modeling/backbone/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/backbone/swin.py -------------------------------------------------------------------------------- /detectron2/modeling/backbone/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/backbone/utils.py -------------------------------------------------------------------------------- /detectron2/modeling/backbone/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/backbone/vit.py -------------------------------------------------------------------------------- /detectron2/modeling/box_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/box_regression.py -------------------------------------------------------------------------------- /detectron2/modeling/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/matcher.py -------------------------------------------------------------------------------- /detectron2/modeling/meta_arch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/meta_arch/__init__.py -------------------------------------------------------------------------------- /detectron2/modeling/meta_arch/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/meta_arch/build.py -------------------------------------------------------------------------------- /detectron2/modeling/meta_arch/dense_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/meta_arch/dense_detector.py -------------------------------------------------------------------------------- /detectron2/modeling/meta_arch/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/meta_arch/fcos.py -------------------------------------------------------------------------------- /detectron2/modeling/meta_arch/panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/meta_arch/panoptic_fpn.py -------------------------------------------------------------------------------- /detectron2/modeling/meta_arch/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/meta_arch/rcnn.py -------------------------------------------------------------------------------- /detectron2/modeling/meta_arch/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/meta_arch/retinanet.py -------------------------------------------------------------------------------- /detectron2/modeling/meta_arch/semantic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/meta_arch/semantic_seg.py -------------------------------------------------------------------------------- /detectron2/modeling/mmdet_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/mmdet_wrapper.py -------------------------------------------------------------------------------- /detectron2/modeling/poolers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/poolers.py -------------------------------------------------------------------------------- /detectron2/modeling/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/postprocessing.py -------------------------------------------------------------------------------- /detectron2/modeling/proposal_generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/proposal_generator/__init__.py -------------------------------------------------------------------------------- /detectron2/modeling/proposal_generator/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/proposal_generator/build.py -------------------------------------------------------------------------------- /detectron2/modeling/proposal_generator/proposal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/proposal_generator/proposal_utils.py -------------------------------------------------------------------------------- /detectron2/modeling/proposal_generator/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/proposal_generator/rpn.py -------------------------------------------------------------------------------- /detectron2/modeling/proposal_generator/rrpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/proposal_generator/rrpn.py -------------------------------------------------------------------------------- /detectron2/modeling/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/roi_heads/__init__.py -------------------------------------------------------------------------------- /detectron2/modeling/roi_heads/box_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/roi_heads/box_head.py -------------------------------------------------------------------------------- /detectron2/modeling/roi_heads/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/roi_heads/cascade_rcnn.py -------------------------------------------------------------------------------- /detectron2/modeling/roi_heads/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/roi_heads/fast_rcnn.py -------------------------------------------------------------------------------- /detectron2/modeling/roi_heads/keypoint_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/roi_heads/keypoint_head.py -------------------------------------------------------------------------------- /detectron2/modeling/roi_heads/mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/roi_heads/mask_head.py -------------------------------------------------------------------------------- /detectron2/modeling/roi_heads/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/roi_heads/roi_heads.py -------------------------------------------------------------------------------- /detectron2/modeling/roi_heads/rotated_fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/roi_heads/rotated_fast_rcnn.py -------------------------------------------------------------------------------- /detectron2/modeling/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/sampling.py -------------------------------------------------------------------------------- /detectron2/modeling/test_time_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/modeling/test_time_augmentation.py -------------------------------------------------------------------------------- /detectron2/projects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/deeplab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/deeplab/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/deeplab/build_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/deeplab/build_solver.py -------------------------------------------------------------------------------- /detectron2/projects/deeplab/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/deeplab/config.py -------------------------------------------------------------------------------- /detectron2/projects/deeplab/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/deeplab/loss.py -------------------------------------------------------------------------------- /detectron2/projects/deeplab/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/deeplab/lr_scheduler.py -------------------------------------------------------------------------------- /detectron2/projects/deeplab/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/deeplab/resnet.py -------------------------------------------------------------------------------- /detectron2/projects/deeplab/semantic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/deeplab/semantic_seg.py -------------------------------------------------------------------------------- /detectron2/projects/panoptic_deeplab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/panoptic_deeplab/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/panoptic_deeplab/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/panoptic_deeplab/config.py -------------------------------------------------------------------------------- /detectron2/projects/panoptic_deeplab/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/panoptic_deeplab/dataset_mapper.py -------------------------------------------------------------------------------- /detectron2/projects/panoptic_deeplab/panoptic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/panoptic_deeplab/panoptic_seg.py -------------------------------------------------------------------------------- /detectron2/projects/panoptic_deeplab/post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/panoptic_deeplab/post_processing.py -------------------------------------------------------------------------------- /detectron2/projects/panoptic_deeplab/target_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/panoptic_deeplab/target_generator.py -------------------------------------------------------------------------------- /detectron2/projects/point_rend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/point_rend/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/point_rend/color_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/point_rend/color_augmentation.py -------------------------------------------------------------------------------- /detectron2/projects/point_rend/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/point_rend/config.py -------------------------------------------------------------------------------- /detectron2/projects/point_rend/mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/point_rend/mask_head.py -------------------------------------------------------------------------------- /detectron2/projects/point_rend/point_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/point_rend/point_features.py -------------------------------------------------------------------------------- /detectron2/projects/point_rend/point_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/point_rend/point_head.py -------------------------------------------------------------------------------- /detectron2/projects/point_rend/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/point_rend/roi_heads.py -------------------------------------------------------------------------------- /detectron2/projects/point_rend/semantic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/projects/point_rend/semantic_seg.py -------------------------------------------------------------------------------- /detectron2/solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/solver/__init__.py -------------------------------------------------------------------------------- /detectron2/solver/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/solver/build.py -------------------------------------------------------------------------------- /detectron2/solver/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/solver/lr_scheduler.py -------------------------------------------------------------------------------- /detectron2/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/structures/__init__.py -------------------------------------------------------------------------------- /detectron2/structures/boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/structures/boxes.py -------------------------------------------------------------------------------- /detectron2/structures/image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/structures/image_list.py -------------------------------------------------------------------------------- /detectron2/structures/instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/structures/instances.py -------------------------------------------------------------------------------- /detectron2/structures/keypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/structures/keypoints.py -------------------------------------------------------------------------------- /detectron2/structures/masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/structures/masks.py -------------------------------------------------------------------------------- /detectron2/structures/rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/structures/rotated_boxes.py -------------------------------------------------------------------------------- /detectron2/tracking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/tracking/__init__.py -------------------------------------------------------------------------------- /detectron2/tracking/base_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/tracking/base_tracker.py -------------------------------------------------------------------------------- /detectron2/tracking/bbox_iou_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/tracking/bbox_iou_tracker.py -------------------------------------------------------------------------------- /detectron2/tracking/hungarian_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/tracking/hungarian_tracker.py -------------------------------------------------------------------------------- /detectron2/tracking/iou_weighted_hungarian_bbox_iou_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/tracking/iou_weighted_hungarian_bbox_iou_tracker.py -------------------------------------------------------------------------------- /detectron2/tracking/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/tracking/utils.py -------------------------------------------------------------------------------- /detectron2/tracking/vanilla_hungarian_bbox_iou_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/tracking/vanilla_hungarian_bbox_iou_tracker.py -------------------------------------------------------------------------------- /detectron2/utils/.ipynb_checkpoints/visualizer-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/.ipynb_checkpoints/visualizer-checkpoint.py -------------------------------------------------------------------------------- /detectron2/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /detectron2/utils/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/analysis.py -------------------------------------------------------------------------------- /detectron2/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/collect_env.py -------------------------------------------------------------------------------- /detectron2/utils/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/colormap.py -------------------------------------------------------------------------------- /detectron2/utils/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/comm.py -------------------------------------------------------------------------------- /detectron2/utils/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/develop.py -------------------------------------------------------------------------------- /detectron2/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/env.py -------------------------------------------------------------------------------- /detectron2/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/events.py -------------------------------------------------------------------------------- /detectron2/utils/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/file_io.py -------------------------------------------------------------------------------- /detectron2/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/logger.py -------------------------------------------------------------------------------- /detectron2/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/memory.py -------------------------------------------------------------------------------- /detectron2/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/registry.py -------------------------------------------------------------------------------- /detectron2/utils/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/serialize.py -------------------------------------------------------------------------------- /detectron2/utils/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/testing.py -------------------------------------------------------------------------------- /detectron2/utils/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/tracing.py -------------------------------------------------------------------------------- /detectron2/utils/video_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/video_visualizer.py -------------------------------------------------------------------------------- /detectron2/utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/detectron2/utils/visualizer.py -------------------------------------------------------------------------------- /evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/evaluator.py -------------------------------------------------------------------------------- /figures/flowchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/figures/flowchart.png -------------------------------------------------------------------------------- /figures/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/figures/output.png -------------------------------------------------------------------------------- /hierarchialdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/__init__.py -------------------------------------------------------------------------------- /hierarchialdet/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/builder.py -------------------------------------------------------------------------------- /hierarchialdet/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/config.py -------------------------------------------------------------------------------- /hierarchialdet/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/dataset_mapper.py -------------------------------------------------------------------------------- /hierarchialdet/detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/detector.py -------------------------------------------------------------------------------- /hierarchialdet/head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/head.py -------------------------------------------------------------------------------- /hierarchialdet/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/loader.py -------------------------------------------------------------------------------- /hierarchialdet/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/loss.py -------------------------------------------------------------------------------- /hierarchialdet/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/predictor.py -------------------------------------------------------------------------------- /hierarchialdet/swintransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/swintransformer.py -------------------------------------------------------------------------------- /hierarchialdet/test_time_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/test_time_augmentation.py -------------------------------------------------------------------------------- /hierarchialdet/util/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved 2 | -------------------------------------------------------------------------------- /hierarchialdet/util/box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/util/box_ops.py -------------------------------------------------------------------------------- /hierarchialdet/util/coco_3class_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/util/coco_3class_eval.py -------------------------------------------------------------------------------- /hierarchialdet/util/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/util/colormap.py -------------------------------------------------------------------------------- /hierarchialdet/util/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/util/misc.py -------------------------------------------------------------------------------- /hierarchialdet/util/model_ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/util/model_ema.py -------------------------------------------------------------------------------- /hierarchialdet/util/plot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/hierarchialdet/util/plot_utils.py -------------------------------------------------------------------------------- /pycocotools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /pycocotools/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/pycocotools/coco.py -------------------------------------------------------------------------------- /pycocotools/coco_edited.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/pycocotools/coco_edited.py -------------------------------------------------------------------------------- /pycocotools/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/pycocotools/cocoeval.py -------------------------------------------------------------------------------- /pycocotools/custom_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/pycocotools/custom_train.json -------------------------------------------------------------------------------- /pycocotools/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/pycocotools/mask.py -------------------------------------------------------------------------------- /pycocotools/test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pycocotools/val.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/pycocotools/val.json -------------------------------------------------------------------------------- /train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibrahimethemhamamci/HierarchicalDet/HEAD/train_net.py --------------------------------------------------------------------------------