├── .gitignore ├── LICENSE ├── examples ├── 1.jpg ├── 2.png ├── 3.jpg ├── 3_grit.jpg ├── 3_segment_anything.png ├── 3_semantic_segment_anything.png ├── 4.jpg ├── 5.jpg ├── 8G_gpu_20s.png ├── demo.gif ├── gpu_memory.png ├── gradio_UI.png ├── gradio_visualization.png ├── icon │ ├── huggingface.jpeg │ ├── news.gif │ └── twitter.png ├── introduction.png ├── introduction_2.jpg ├── logo.png ├── segment_anything_example.jpg └── semantic_segment_example.png ├── install.md ├── main.py ├── main_gradio.py ├── models ├── __pycache__ │ ├── blip2_model.cpython-38.pyc │ ├── blip2_model.cpython-39.pyc │ ├── controlnet_model.cpython-38.pyc │ ├── gpt_model.cpython-38.pyc │ ├── grit_model.cpython-38.pyc │ ├── image_text_transformation.cpython-38.pyc │ ├── image_text_transformation.cpython-39.pyc │ └── region_semantic.cpython-38.pyc ├── blip2_model.py ├── controlnet_model.py ├── gpt_model.py ├── grit_model.py ├── grit_src │ ├── __pycache__ │ │ └── image_dense_captions.cpython-38.pyc │ ├── configs │ │ ├── Base.yaml │ │ ├── GRiT_B_DenseCap.yaml │ │ ├── GRiT_B_DenseCap_ObjectDet.yaml │ │ ├── GRiT_B_ObjectDet.yaml │ │ ├── GRiT_H_ObjectDet.yaml │ │ └── GRiT_L_ObjectDet.yaml │ ├── grit │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ └── predictor.cpython-38.pyc │ │ ├── config.py │ │ ├── custom_solver.py │ │ ├── data │ │ │ ├── __pycache__ │ │ │ │ ├── custom_build_augmentation.cpython-38.pyc │ │ │ │ └── custom_dataset_mapper.cpython-38.pyc │ │ │ ├── custom_build_augmentation.py │ │ │ ├── custom_dataset_dataloader.py │ │ │ ├── custom_dataset_mapper.py │ │ │ ├── datasets │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── grit_coco.cpython-38.pyc │ │ │ │ │ ├── object365.cpython-38.pyc │ │ │ │ │ └── vg.cpython-38.pyc │ │ │ │ ├── grit_coco.py │ │ │ │ ├── object365.py │ │ │ │ └── vg.py │ │ │ └── transforms │ │ │ │ ├── __pycache__ │ │ │ │ ├── custom_augmentation_impl.cpython-38.pyc │ │ │ │ └── custom_transform.cpython-38.pyc │ │ │ │ ├── custom_augmentation_impl.py │ │ │ │ └── custom_transform.py │ │ ├── evaluation │ │ │ └── eval.py │ │ ├── modeling │ │ │ ├── __pycache__ │ │ │ │ └── soft_nms.cpython-38.pyc │ │ │ ├── backbone │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── vit.cpython-38.pyc │ │ │ │ ├── utils.py │ │ │ │ └── vit.py │ │ │ ├── meta_arch │ │ │ │ ├── __pycache__ │ │ │ │ │ └── grit.cpython-38.pyc │ │ │ │ └── grit.py │ │ │ ├── roi_heads │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── grit_fast_rcnn.cpython-38.pyc │ │ │ │ │ └── grit_roi_heads.cpython-38.pyc │ │ │ │ ├── grit_fast_rcnn.py │ │ │ │ └── grit_roi_heads.py │ │ │ ├── soft_nms.py │ │ │ └── text │ │ │ │ ├── __pycache__ │ │ │ │ ├── file_utils.cpython-38.pyc │ │ │ │ ├── load_text_token.cpython-38.pyc │ │ │ │ ├── modeling_bert.cpython-38.pyc │ │ │ │ └── text_decoder.cpython-38.pyc │ │ │ │ ├── file_utils.py │ │ │ │ ├── load_text_token.py │ │ │ │ ├── modeling_bert.py │ │ │ │ └── text_decoder.py │ │ └── predictor.py │ ├── image_dense_captions.py │ └── third_party │ │ └── CenterNet2 │ │ ├── .circleci │ │ └── config.yml │ │ ├── .clang-format │ │ ├── .flake8 │ │ ├── .github │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── Detectron2-Logo-Horz.svg │ │ ├── ISSUE_TEMPLATE.md │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bugs.md │ │ │ ├── config.yml │ │ │ ├── documentation.md │ │ │ ├── feature-request.md │ │ │ └── unexpected-problems-bugs.md │ │ ├── pull_request_template.md │ │ └── workflows │ │ │ ├── check-template.yml │ │ │ ├── levenshtein.js │ │ │ ├── needs-reply.yml │ │ │ ├── remove-needs-reply.yml │ │ │ └── workflow.yml │ │ ├── .gitignore │ │ ├── GETTING_STARTED.md │ │ ├── INSTALL.md │ │ ├── LICENSE │ │ ├── MODEL_ZOO.md │ │ ├── README.md │ │ ├── README_D2.md │ │ ├── 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 │ │ │ ├── README.md │ │ │ ├── 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 │ │ │ ├── README.md │ │ │ ├── coco_schedule.py │ │ │ ├── data │ │ │ │ ├── coco.py │ │ │ │ ├── coco_keypoint.py │ │ │ │ └── coco_panoptic_separated.py │ │ │ ├── models │ │ │ │ ├── cascade_rcnn.py │ │ │ │ ├── fcos.py │ │ │ │ ├── keypoint_rcnn_fpn.py │ │ │ │ ├── mask_rcnn_c4.py │ │ │ │ ├── mask_rcnn_fpn.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 │ │ │ ├── README.md │ │ │ ├── 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 │ │ ├── datasets │ │ ├── README.md │ │ ├── lvis │ │ │ └── lvis_v1_train_cat_info.json │ │ ├── prepare_ade20k_sem_seg.py │ │ ├── prepare_cocofied_lvis.py │ │ ├── prepare_for_tests.sh │ │ └── prepare_panoptic_fpn.py │ │ ├── demo │ │ ├── README.md │ │ ├── demo.py │ │ └── predictor.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 │ │ │ │ ├── README.md │ │ │ │ ├── __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 │ │ │ │ ├── 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 │ │ │ ├── README.md │ │ │ ├── __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 │ │ │ ├── csrc │ │ │ │ ├── README.md │ │ │ │ ├── ROIAlignRotated │ │ │ │ │ ├── ROIAlignRotated.h │ │ │ │ │ ├── ROIAlignRotated_cpu.cpp │ │ │ │ │ └── ROIAlignRotated_cuda.cu │ │ │ │ ├── box_iou_rotated │ │ │ │ │ ├── box_iou_rotated.h │ │ │ │ │ ├── box_iou_rotated_cpu.cpp │ │ │ │ │ ├── box_iou_rotated_cuda.cu │ │ │ │ │ └── box_iou_rotated_utils.h │ │ │ │ ├── cocoeval │ │ │ │ │ ├── cocoeval.cpp │ │ │ │ │ └── cocoeval.h │ │ │ │ ├── cuda_version.cu │ │ │ │ ├── deformable │ │ │ │ │ ├── deform_conv.h │ │ │ │ │ ├── deform_conv_cuda.cu │ │ │ │ │ └── deform_conv_cuda_kernel.cu │ │ │ │ ├── nms_rotated │ │ │ │ │ ├── nms_rotated.h │ │ │ │ │ ├── nms_rotated_cpu.cpp │ │ │ │ │ └── nms_rotated_cuda.cu │ │ │ │ └── vision.cpp │ │ │ ├── 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 │ │ │ └── model_zoo.py │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── anchor_generator.py │ │ │ ├── backbone │ │ │ │ ├── __init__.py │ │ │ │ ├── backbone.py │ │ │ │ ├── build.py │ │ │ │ ├── fpn.py │ │ │ │ ├── regnet.py │ │ │ │ └── resnet.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 │ │ │ ├── README.md │ │ │ └── __init__.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 │ │ └── utils │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── analysis.py │ │ │ ├── collect_env.py │ │ │ ├── colormap.py │ │ │ ├── comm.py │ │ │ ├── env.py │ │ │ ├── events.py │ │ │ ├── file_io.py │ │ │ ├── logger.py │ │ │ ├── memory.py │ │ │ ├── registry.py │ │ │ ├── serialize.py │ │ │ ├── testing.py │ │ │ ├── video_visualizer.py │ │ │ └── visualizer.py │ │ ├── dev │ │ ├── README.md │ │ ├── linter.sh │ │ ├── packaging │ │ │ ├── README.md │ │ │ ├── build_all_wheels.sh │ │ │ ├── build_wheel.sh │ │ │ ├── gen_install_table.py │ │ │ ├── gen_wheel_index.sh │ │ │ └── pkg_helpers.bash │ │ ├── parse_results.sh │ │ ├── run_inference_tests.sh │ │ └── run_instant_tests.sh │ │ ├── docker │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── deploy.Dockerfile │ │ └── docker-compose.yml │ │ ├── docs │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── _static │ │ │ └── css │ │ │ │ └── custom.css │ │ ├── conf.py │ │ ├── index.rst │ │ ├── modules │ │ │ ├── checkpoint.rst │ │ │ ├── config.rst │ │ │ ├── data.rst │ │ │ ├── data_transforms.rst │ │ │ ├── engine.rst │ │ │ ├── evaluation.rst │ │ │ ├── export.rst │ │ │ ├── fvcore.rst │ │ │ ├── index.rst │ │ │ ├── layers.rst │ │ │ ├── model_zoo.rst │ │ │ ├── modeling.rst │ │ │ ├── solver.rst │ │ │ ├── structures.rst │ │ │ └── utils.rst │ │ ├── notes │ │ │ ├── benchmarks.md │ │ │ ├── changelog.md │ │ │ ├── compatibility.md │ │ │ ├── contributing.md │ │ │ └── index.rst │ │ ├── requirements.txt │ │ └── tutorials │ │ │ ├── README.md │ │ │ ├── augmentation.md │ │ │ ├── builtin_datasets.md │ │ │ ├── configs.md │ │ │ ├── data_loading.md │ │ │ ├── datasets.md │ │ │ ├── deployment.md │ │ │ ├── evaluation.md │ │ │ ├── extend.md │ │ │ ├── getting_started.md │ │ │ ├── index.rst │ │ │ ├── install.md │ │ │ ├── lazyconfigs.md │ │ │ ├── models.md │ │ │ ├── training.md │ │ │ └── write-models.md │ │ ├── projects │ │ └── CenterNet2 │ │ │ ├── .gitignore │ │ │ ├── centernet │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── data │ │ │ │ ├── custom_build_augmentation.py │ │ │ │ ├── custom_dataset_dataloader.py │ │ │ │ ├── datasets │ │ │ │ │ ├── coco.py │ │ │ │ │ ├── nuimages.py │ │ │ │ │ └── objects365.py │ │ │ │ └── transforms │ │ │ │ │ ├── custom_augmentation_impl.py │ │ │ │ │ └── custom_transform.py │ │ │ └── modeling │ │ │ │ ├── backbone │ │ │ │ ├── bifpn.py │ │ │ │ ├── bifpn_fcos.py │ │ │ │ ├── dla.py │ │ │ │ ├── dlafpn.py │ │ │ │ ├── fpn_p5.py │ │ │ │ └── res2net.py │ │ │ │ ├── debug.py │ │ │ │ ├── dense_heads │ │ │ │ ├── centernet.py │ │ │ │ ├── centernet_head.py │ │ │ │ └── utils.py │ │ │ │ ├── layers │ │ │ │ ├── deform_conv.py │ │ │ │ ├── heatmap_focal_loss.py │ │ │ │ ├── iou_loss.py │ │ │ │ └── ml_nms.py │ │ │ │ ├── meta_arch │ │ │ │ └── centernet_detector.py │ │ │ │ └── roi_heads │ │ │ │ ├── custom_fast_rcnn.py │ │ │ │ ├── custom_roi_heads.py │ │ │ │ └── fed_loss.py │ │ │ ├── centernet2_docs │ │ │ └── MODEL_ZOO.md │ │ │ ├── configs │ │ │ ├── Base-CenterNet-FPN.yaml │ │ │ ├── Base-CenterNet2.yaml │ │ │ ├── Base_S4_DLA.yaml │ │ │ ├── CenterNet-FPN_R50_1x.yaml │ │ │ ├── CenterNet-S4_DLA_8x.yaml │ │ │ ├── CenterNet2-F_R50_1x.yaml │ │ │ ├── CenterNet2_DLA-BiFPN-P3_24x.yaml │ │ │ ├── CenterNet2_DLA-BiFPN-P3_4x.yaml │ │ │ ├── CenterNet2_DLA-BiFPN-P5_640_16x.yaml │ │ │ ├── CenterNet2_DLA-BiFPN-P5_640_16x_ST.yaml │ │ │ ├── CenterNet2_DLA-fcosBiFPN-P5_640_16x_ST.yaml │ │ │ ├── CenterNet2_R2-101-DCN-BiFPN_1280_4x.yaml │ │ │ ├── CenterNet2_R2-101-DCN-BiFPN_4x+4x_1560_ST.yaml │ │ │ ├── CenterNet2_R2-101-DCN_896_4x.yaml │ │ │ ├── CenterNet2_R50_1x.yaml │ │ │ ├── CenterNet2_X101-DCN_2x.yaml │ │ │ ├── LVIS_CenterNet2_R50_1x.yaml │ │ │ ├── LVIS_CenterNet2_R50_Fed_1x.yaml │ │ │ ├── O365_CenterNet2_R50_1x.yaml │ │ │ └── nuImages_CenterNet2_DLA_640_8x.yaml │ │ │ ├── demo.py │ │ │ ├── predictor.py │ │ │ └── train_net.py │ │ ├── setup.cfg │ │ ├── setup.py │ │ ├── tests │ │ ├── README.md │ │ ├── __init__.py │ │ ├── config │ │ │ ├── dir1 │ │ │ │ ├── dir1_a.py │ │ │ │ └── dir1_b.py │ │ │ ├── root_cfg.py │ │ │ ├── test_instantiate_config.py │ │ │ ├── test_lazy_config.py │ │ │ └── test_yacs_config.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── test_coco.py │ │ │ ├── test_coco_evaluation.py │ │ │ ├── test_dataset.py │ │ │ ├── test_detection_utils.py │ │ │ ├── test_rotation_transform.py │ │ │ ├── test_sampler.py │ │ │ └── test_transforms.py │ │ ├── layers │ │ │ ├── __init__.py │ │ │ ├── test_blocks.py │ │ │ ├── test_deformable.py │ │ │ ├── test_losses.py │ │ │ ├── test_mask_ops.py │ │ │ ├── test_nms.py │ │ │ ├── test_nms_rotated.py │ │ │ ├── test_roi_align.py │ │ │ └── test_roi_align_rotated.py │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── test_anchor_generator.py │ │ │ ├── test_backbone.py │ │ │ ├── test_box2box_transform.py │ │ │ ├── test_fast_rcnn.py │ │ │ ├── test_matcher.py │ │ │ ├── test_mmdet.py │ │ │ ├── test_model_e2e.py │ │ │ ├── test_roi_heads.py │ │ │ ├── test_roi_pooler.py │ │ │ └── test_rpn.py │ │ ├── structures │ │ │ ├── __init__.py │ │ │ ├── test_boxes.py │ │ │ ├── test_imagelist.py │ │ │ ├── test_instances.py │ │ │ ├── test_keypoints.py │ │ │ ├── test_masks.py │ │ │ └── test_rotated_boxes.py │ │ ├── test_checkpoint.py │ │ ├── test_engine.py │ │ ├── test_events.py │ │ ├── test_export_caffe2.py │ │ ├── test_export_torchscript.py │ │ ├── test_model_analysis.py │ │ ├── test_model_zoo.py │ │ ├── test_packaging.py │ │ ├── test_registry.py │ │ ├── test_scheduler.py │ │ ├── test_solver.py │ │ └── test_visualizer.py │ │ └── tools │ │ ├── README.md │ │ ├── __init__.py │ │ ├── analyze_model.py │ │ ├── benchmark.py │ │ ├── convert-torchvision-to-d2.py │ │ ├── deploy │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── export_model.py │ │ └── torchscript_mask_rcnn.cpp │ │ ├── lazyconfig_train_net.py │ │ ├── lightning_train_net.py │ │ ├── plain_train_net.py │ │ ├── train_net.py │ │ ├── visualize_data.py │ │ └── visualize_json_results.py ├── image_text_transformation.py ├── region_semantic.py └── segment_models │ ├── __pycache__ │ ├── edit_anything_model.cpython-38.pyc │ ├── semantic_segment_anything_model.cpython-38.pyc │ └── semgent_anything_model.cpython-38.pyc │ ├── configs │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── ade20k_id2label.cpython-38.pyc │ │ └── coco_id2label.cpython-38.pyc │ ├── ade20k_id2label.py │ └── coco_id2label.py │ ├── edit_anything_model.py │ ├── edit_anything_model_old.py │ ├── semantic_segment_anything_model.py │ └── semgent_anything_model.py ├── output ├── 1_result.jpg ├── 2_result.png ├── 3_result.jpg ├── 3_result_2.jpg ├── 4_result.jpg └── 5_result_2.jpg ├── readme.md ├── requirements.txt └── utils ├── __pycache__ ├── util.cpython-38.pyc └── util.cpython-39.pyc ├── ignore_large_files.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/LICENSE -------------------------------------------------------------------------------- /examples/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/1.jpg -------------------------------------------------------------------------------- /examples/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/2.png -------------------------------------------------------------------------------- /examples/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/3.jpg -------------------------------------------------------------------------------- /examples/3_grit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/3_grit.jpg -------------------------------------------------------------------------------- /examples/3_segment_anything.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/3_segment_anything.png -------------------------------------------------------------------------------- /examples/3_semantic_segment_anything.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/3_semantic_segment_anything.png -------------------------------------------------------------------------------- /examples/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/4.jpg -------------------------------------------------------------------------------- /examples/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/5.jpg -------------------------------------------------------------------------------- /examples/8G_gpu_20s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/8G_gpu_20s.png -------------------------------------------------------------------------------- /examples/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/demo.gif -------------------------------------------------------------------------------- /examples/gpu_memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/gpu_memory.png -------------------------------------------------------------------------------- /examples/gradio_UI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/gradio_UI.png -------------------------------------------------------------------------------- /examples/gradio_visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/gradio_visualization.png -------------------------------------------------------------------------------- /examples/icon/huggingface.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/icon/huggingface.jpeg -------------------------------------------------------------------------------- /examples/icon/news.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/icon/news.gif -------------------------------------------------------------------------------- /examples/icon/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/icon/twitter.png -------------------------------------------------------------------------------- /examples/introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/introduction.png -------------------------------------------------------------------------------- /examples/introduction_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/introduction_2.jpg -------------------------------------------------------------------------------- /examples/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/logo.png -------------------------------------------------------------------------------- /examples/segment_anything_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/segment_anything_example.jpg -------------------------------------------------------------------------------- /examples/semantic_segment_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/examples/semantic_segment_example.png -------------------------------------------------------------------------------- /install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/install.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/main.py -------------------------------------------------------------------------------- /main_gradio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/main_gradio.py -------------------------------------------------------------------------------- /models/__pycache__/blip2_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/__pycache__/blip2_model.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/blip2_model.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/__pycache__/blip2_model.cpython-39.pyc -------------------------------------------------------------------------------- /models/__pycache__/controlnet_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/__pycache__/controlnet_model.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/gpt_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/__pycache__/gpt_model.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/grit_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/__pycache__/grit_model.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/image_text_transformation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/__pycache__/image_text_transformation.cpython-38.pyc -------------------------------------------------------------------------------- /models/__pycache__/image_text_transformation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/__pycache__/image_text_transformation.cpython-39.pyc -------------------------------------------------------------------------------- /models/__pycache__/region_semantic.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/__pycache__/region_semantic.cpython-38.pyc -------------------------------------------------------------------------------- /models/blip2_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/blip2_model.py -------------------------------------------------------------------------------- /models/controlnet_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/controlnet_model.py -------------------------------------------------------------------------------- /models/gpt_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/gpt_model.py -------------------------------------------------------------------------------- /models/grit_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_model.py -------------------------------------------------------------------------------- /models/grit_src/__pycache__/image_dense_captions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/__pycache__/image_dense_captions.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/configs/Base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/configs/Base.yaml -------------------------------------------------------------------------------- /models/grit_src/configs/GRiT_B_DenseCap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/configs/GRiT_B_DenseCap.yaml -------------------------------------------------------------------------------- /models/grit_src/configs/GRiT_B_DenseCap_ObjectDet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/configs/GRiT_B_DenseCap_ObjectDet.yaml -------------------------------------------------------------------------------- /models/grit_src/configs/GRiT_B_ObjectDet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/configs/GRiT_B_ObjectDet.yaml -------------------------------------------------------------------------------- /models/grit_src/configs/GRiT_H_ObjectDet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/configs/GRiT_H_ObjectDet.yaml -------------------------------------------------------------------------------- /models/grit_src/configs/GRiT_L_ObjectDet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/configs/GRiT_L_ObjectDet.yaml -------------------------------------------------------------------------------- /models/grit_src/grit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/__init__.py -------------------------------------------------------------------------------- /models/grit_src/grit/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/__pycache__/predictor.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/__pycache__/predictor.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/config.py -------------------------------------------------------------------------------- /models/grit_src/grit/custom_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/custom_solver.py -------------------------------------------------------------------------------- /models/grit_src/grit/data/__pycache__/custom_build_augmentation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/__pycache__/custom_build_augmentation.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/data/__pycache__/custom_dataset_mapper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/__pycache__/custom_dataset_mapper.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/data/custom_build_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/custom_build_augmentation.py -------------------------------------------------------------------------------- /models/grit_src/grit/data/custom_dataset_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/custom_dataset_dataloader.py -------------------------------------------------------------------------------- /models/grit_src/grit/data/custom_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/custom_dataset_mapper.py -------------------------------------------------------------------------------- /models/grit_src/grit/data/datasets/__pycache__/grit_coco.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/datasets/__pycache__/grit_coco.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/data/datasets/__pycache__/object365.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/datasets/__pycache__/object365.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/data/datasets/__pycache__/vg.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/datasets/__pycache__/vg.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/data/datasets/grit_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/datasets/grit_coco.py -------------------------------------------------------------------------------- /models/grit_src/grit/data/datasets/object365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/datasets/object365.py -------------------------------------------------------------------------------- /models/grit_src/grit/data/datasets/vg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/datasets/vg.py -------------------------------------------------------------------------------- /models/grit_src/grit/data/transforms/__pycache__/custom_augmentation_impl.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/transforms/__pycache__/custom_augmentation_impl.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/data/transforms/__pycache__/custom_transform.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/transforms/__pycache__/custom_transform.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/data/transforms/custom_augmentation_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/transforms/custom_augmentation_impl.py -------------------------------------------------------------------------------- /models/grit_src/grit/data/transforms/custom_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/data/transforms/custom_transform.py -------------------------------------------------------------------------------- /models/grit_src/grit/evaluation/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/evaluation/eval.py -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/__pycache__/soft_nms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/__pycache__/soft_nms.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/backbone/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/backbone/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/backbone/__pycache__/vit.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/backbone/__pycache__/vit.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/backbone/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/backbone/utils.py -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/backbone/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/backbone/vit.py -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/meta_arch/__pycache__/grit.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/meta_arch/__pycache__/grit.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/meta_arch/grit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/meta_arch/grit.py -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/roi_heads/__pycache__/grit_fast_rcnn.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/roi_heads/__pycache__/grit_fast_rcnn.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/roi_heads/__pycache__/grit_roi_heads.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/roi_heads/__pycache__/grit_roi_heads.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/roi_heads/grit_fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/roi_heads/grit_fast_rcnn.py -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/roi_heads/grit_roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/roi_heads/grit_roi_heads.py -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/soft_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/soft_nms.py -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/text/__pycache__/file_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/text/__pycache__/file_utils.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/text/__pycache__/load_text_token.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/text/__pycache__/load_text_token.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/text/__pycache__/modeling_bert.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/text/__pycache__/modeling_bert.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/text/__pycache__/text_decoder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/text/__pycache__/text_decoder.cpython-38.pyc -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/text/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/text/file_utils.py -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/text/load_text_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/text/load_text_token.py -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/text/modeling_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/text/modeling_bert.py -------------------------------------------------------------------------------- /models/grit_src/grit/modeling/text/text_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/modeling/text/text_decoder.py -------------------------------------------------------------------------------- /models/grit_src/grit/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/grit/predictor.py -------------------------------------------------------------------------------- /models/grit_src/image_dense_captions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/image_dense_captions.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.circleci/config.yml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.clang-format -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.flake8 -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/Detectron2-Logo-Horz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/Detectron2-Logo-Horz.svg -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/ISSUE_TEMPLATE/bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/ISSUE_TEMPLATE/bugs.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/ISSUE_TEMPLATE/unexpected-problems-bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/ISSUE_TEMPLATE/unexpected-problems-bugs.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/pull_request_template.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/workflows/check-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/workflows/check-template.yml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/workflows/levenshtein.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/workflows/levenshtein.js -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/workflows/needs-reply.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/workflows/needs-reply.yml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/workflows/remove-needs-reply.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/workflows/remove-needs-reply.yml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/.gitignore -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/GETTING_STARTED.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/INSTALL.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/LICENSE -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/MODEL_ZOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/MODEL_ZOO.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/README_D2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/README_D2.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Base-RCNN-C4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Base-RCNN-C4.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Base-RCNN-DilatedC5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Base-RCNN-DilatedC5.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Base-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Base-RCNN-FPN.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Base-RetinaNet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Base-RetinaNet.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/fast_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/fast_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_101_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_101_C4_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_101_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_101_DC5_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_50_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_50_C4_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_50_DC5_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_50_DC5_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_50_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_50_DC5_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_X_101_32x8d_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/faster_rcnn_X_101_32x8d_FPN_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/fcos_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/fcos_R_50_FPN_1x.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/retinanet_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/retinanet_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/retinanet_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/retinanet_R_50_FPN_1x.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/retinanet_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/retinanet_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/retinanet_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/retinanet_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/rpn_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/rpn_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Detection/rpn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Detection/rpn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_C4_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_DC5_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x_giou.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x_giou.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_regnetx_4gf_dds_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_regnetx_4gf_dds_fpn_1x.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_regnety_4gf_dds_fpn_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-InstanceSegmentation/mask_rcnn_regnety_4gf_dds_fpn_1x.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Keypoints/Base-Keypoint-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Keypoints/Base-Keypoint-RCNN-FPN.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Keypoints/keypoint_rcnn_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Keypoints/keypoint_rcnn_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-Keypoints/keypoint_rcnn_X_101_32x8d_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-Keypoints/keypoint_rcnn_X_101_32x8d_FPN_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-PanopticSegmentation/Base-Panoptic-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-PanopticSegmentation/Base-Panoptic-FPN.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_101_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_101_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Cityscapes/mask_rcnn_R_50_FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Cityscapes/mask_rcnn_R_50_FPN.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Detectron1-Comparisons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Detectron1-Comparisons/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Detectron1-Comparisons/faster_rcnn_R_50_FPN_noaug_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Detectron1-Comparisons/faster_rcnn_R_50_FPN_noaug_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Detectron1-Comparisons/keypoint_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Detectron1-Comparisons/keypoint_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Detectron1-Comparisons/mask_rcnn_R_50_FPN_noaug_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Detectron1-Comparisons/mask_rcnn_R_50_FPN_noaug_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/LVISv0.5-InstanceSegmentation/mask_rcnn_R_101_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/LVISv0.5-InstanceSegmentation/mask_rcnn_R_101_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/LVISv0.5-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/LVISv0.5-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/LVISv0.5-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/LVISv0.5-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/LVISv1-InstanceSegmentation/mask_rcnn_R_101_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/LVISv1-InstanceSegmentation/mask_rcnn_R_101_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/LVISv1-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/LVISv1-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/LVISv1-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/LVISv1-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/cascade_mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/cascade_mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/cascade_mask_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/cascade_mask_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/cascade_mask_rcnn_X_152_32x8d_FPN_IN5k_gn_dconv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/cascade_mask_rcnn_X_152_32x8d_FPN_IN5k_gn_dconv.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/mask_rcnn_R_50_FPN_1x_cls_agnostic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/mask_rcnn_R_50_FPN_1x_cls_agnostic.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/mask_rcnn_R_50_FPN_1x_dconv_c3-c5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/mask_rcnn_R_50_FPN_1x_dconv_c3-c5.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/mask_rcnn_R_50_FPN_3x_dconv_c3-c5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/mask_rcnn_R_50_FPN_3x_dconv_c3-c5.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/mask_rcnn_R_50_FPN_3x_gn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/mask_rcnn_R_50_FPN_3x_gn.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/mask_rcnn_R_50_FPN_3x_syncbn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/mask_rcnn_R_50_FPN_3x_syncbn.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/mmdet_mask_rcnn_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/mmdet_mask_rcnn_R_50_FPN_1x.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/panoptic_fpn_R_101_dconv_cascade_gn_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/panoptic_fpn_R_101_dconv_cascade_gn_3x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/scratch_mask_rcnn_R_50_FPN_3x_gn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/scratch_mask_rcnn_R_50_FPN_3x_gn.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_gn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_gn.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_syncbn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_syncbn.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/semantic_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/semantic_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/Misc/torchvision_imagenet_R_50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/Misc/torchvision_imagenet_R_50.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/PascalVOC-Detection/faster_rcnn_R_50_C4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/PascalVOC-Detection/faster_rcnn_R_50_C4.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/PascalVOC-Detection/faster_rcnn_R_50_FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/PascalVOC-Detection/faster_rcnn_R_50_FPN.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/coco_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/coco_schedule.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/data/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/data/coco.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/data/coco_keypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/data/coco_keypoint.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/data/coco_panoptic_separated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/data/coco_panoptic_separated.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/models/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/models/cascade_rcnn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/models/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/models/fcos.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/models/keypoint_rcnn_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/models/keypoint_rcnn_fpn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/models/mask_rcnn_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/models/mask_rcnn_c4.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/models/mask_rcnn_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/models/mask_rcnn_fpn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/models/panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/models/panoptic_fpn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/models/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/models/retinanet.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/optim.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/common/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/common/train.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_101_FPN_100ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_101_FPN_100ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_101_FPN_200ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_101_FPN_200ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_101_FPN_400ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_101_FPN_400ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_50_FPN_100ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_50_FPN_100ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_50_FPN_200ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_50_FPN_200ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_50_FPN_400ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_50_FPN_400ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_50_FPN_50ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_R_50_FPN_50ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_regnetx_4gf_dds_FPN_100ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_regnetx_4gf_dds_FPN_100ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_regnetx_4gf_dds_FPN_200ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_regnetx_4gf_dds_FPN_200ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_regnetx_4gf_dds_FPN_400ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_regnetx_4gf_dds_FPN_400ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_regnety_4gf_dds_FPN_100ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_regnety_4gf_dds_FPN_100ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_regnety_4gf_dds_FPN_200ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_regnety_4gf_dds_FPN_200ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_regnety_4gf_dds_FPN_400ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/new_baselines/mask_rcnn_regnety_4gf_dds_FPN_400ep_LSJ.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/cascade_mask_rcnn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/cascade_mask_rcnn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/cascade_mask_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/cascade_mask_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/fast_rcnn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/fast_rcnn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/fast_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/fast_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_normalized_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_normalized_training_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_training_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_C4_GCV_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_C4_GCV_instant_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_C4_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_C4_inference_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_C4_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_C4_instant_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_C4_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_C4_training_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_DC5_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_DC5_inference_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_FPN_pred_boxes_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_FPN_pred_boxes_training_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_FPN_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/mask_rcnn_R_50_FPN_training_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/panoptic_fpn_R_50_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/panoptic_fpn_R_50_inference_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/panoptic_fpn_R_50_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/panoptic_fpn_R_50_instant_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/panoptic_fpn_R_50_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/panoptic_fpn_R_50_training_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/retinanet_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/retinanet_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/retinanet_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/retinanet_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/rpn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/rpn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/rpn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/rpn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/semantic_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/semantic_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/semantic_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/semantic_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/configs/quick_schedules/semantic_R_50_FPN_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/configs/quick_schedules/semantic_R_50_FPN_training_acc_test.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/datasets/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/datasets/lvis/lvis_v1_train_cat_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/datasets/lvis/lvis_v1_train_cat_info.json -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/datasets/prepare_ade20k_sem_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/datasets/prepare_ade20k_sem_seg.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/datasets/prepare_cocofied_lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/datasets/prepare_cocofied_lvis.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/datasets/prepare_for_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/datasets/prepare_for_tests.sh -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/datasets/prepare_panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/datasets/prepare_panoptic_fpn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/demo/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/demo/demo.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/demo/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/demo/predictor.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/checkpoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/checkpoint/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/checkpoint/c2_model_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/checkpoint/c2_model_loading.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/checkpoint/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/checkpoint/catalog.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/checkpoint/detection_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/checkpoint/detection_checkpoint.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/config/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/config/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/config/compat.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/config/config.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/config/defaults.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/config/instantiate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/config/instantiate.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/config/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/config/lazy.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/benchmark.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/build.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/catalog.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/common.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/dataset_mapper.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/builtin.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/builtin_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/builtin_meta.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/cityscapes.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/cityscapes_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/cityscapes_panoptic.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/coco.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/lvis.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/lvis_v0_5_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/lvis_v0_5_categories.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/lvis_v1_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/lvis_v1_categories.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/pascal_voc.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/datasets/register_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/datasets/register_coco.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/detection_utils.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/samplers/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/samplers/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/samplers/distributed_sampler.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/samplers/grouped_batch_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/samplers/grouped_batch_sampler.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/transforms/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/transforms/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/transforms/augmentation.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/transforms/augmentation_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/transforms/augmentation_impl.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/data/transforms/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/data/transforms/transform.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/engine/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/engine/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/engine/defaults.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/engine/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/engine/hooks.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/engine/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/engine/launch.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/engine/train_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/engine/train_loop.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/evaluation/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/evaluation/cityscapes_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/evaluation/cityscapes_evaluation.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/evaluation/coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/evaluation/coco_evaluation.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/evaluation/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/evaluation/evaluator.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/evaluation/fast_eval_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/evaluation/fast_eval_api.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/evaluation/lvis_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/evaluation/lvis_evaluation.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/evaluation/panoptic_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/evaluation/panoptic_evaluation.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/evaluation/pascal_voc_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/evaluation/pascal_voc_evaluation.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/evaluation/rotated_coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/evaluation/rotated_coco_evaluation.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/evaluation/sem_seg_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/evaluation/sem_seg_evaluation.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/evaluation/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/evaluation/testing.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/export/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/export/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/export/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/export/api.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/export/c10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/export/c10.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/export/caffe2_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/export/caffe2_export.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/export/caffe2_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/export/caffe2_inference.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/export/caffe2_modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/export/caffe2_modeling.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/export/caffe2_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/export/caffe2_patch.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/export/flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/export/flatten.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/export/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/export/shared.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/export/torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/export/torchscript.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/export/torchscript_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/export/torchscript_patch.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/aspp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/aspp.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/batch_norm.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/blocks.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/ROIAlignRotated/ROIAlignRotated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/ROIAlignRotated/ROIAlignRotated.h -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/ROIAlignRotated/ROIAlignRotated_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/ROIAlignRotated/ROIAlignRotated_cpu.cpp -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/ROIAlignRotated/ROIAlignRotated_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/ROIAlignRotated/ROIAlignRotated_cuda.cu -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated.h -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated_cpu.cpp -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated_cuda.cu -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated_utils.h -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/cocoeval/cocoeval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/cocoeval/cocoeval.cpp -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/cocoeval/cocoeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/cocoeval/cocoeval.h -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/cuda_version.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/cuda_version.cu -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/deformable/deform_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/deformable/deform_conv.h -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/deformable/deform_conv_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/deformable/deform_conv_cuda.cu -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/deformable/deform_conv_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/deformable/deform_conv_cuda_kernel.cu -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/nms_rotated/nms_rotated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/nms_rotated/nms_rotated.h -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/nms_rotated/nms_rotated_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/nms_rotated/nms_rotated_cpu.cpp -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/nms_rotated/nms_rotated_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/nms_rotated/nms_rotated_cuda.cu -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/csrc/vision.cpp -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/deform_conv.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/losses.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/mask_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/mask_ops.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/nms.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/roi_align.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/roi_align_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/roi_align_rotated.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/rotated_boxes.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/shape_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/shape_spec.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/layers/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/layers/wrappers.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/model_zoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/model_zoo/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/model_zoo/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/model_zoo/model_zoo.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/anchor_generator.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/backbone/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/backbone/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/backbone/backbone.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/backbone/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/backbone/build.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/backbone/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/backbone/fpn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/backbone/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/backbone/regnet.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/backbone/resnet.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/box_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/box_regression.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/matcher.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/build.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/dense_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/dense_detector.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/fcos.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/panoptic_fpn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/rcnn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/retinanet.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/semantic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/meta_arch/semantic_seg.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/mmdet_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/mmdet_wrapper.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/poolers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/poolers.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/postprocessing.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/proposal_generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/proposal_generator/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/proposal_generator/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/proposal_generator/build.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/proposal_generator/proposal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/proposal_generator/proposal_utils.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/proposal_generator/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/proposal_generator/rpn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/proposal_generator/rrpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/proposal_generator/rrpn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/box_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/box_head.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/cascade_rcnn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/fast_rcnn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/keypoint_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/keypoint_head.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/mask_head.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/roi_heads.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/rotated_fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/roi_heads/rotated_fast_rcnn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/sampling.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/modeling/test_time_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/modeling/test_time_augmentation.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/projects/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/projects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/projects/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/solver/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/solver/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/solver/build.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/solver/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/solver/lr_scheduler.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/structures/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/structures/boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/structures/boxes.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/structures/image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/structures/image_list.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/structures/instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/structures/instances.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/structures/keypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/structures/keypoints.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/structures/masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/structures/masks.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/structures/rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/structures/rotated_boxes.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/analysis.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/collect_env.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/colormap.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/comm.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/env.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/events.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/file_io.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/logger.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/memory.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/registry.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/serialize.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/testing.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/video_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/video_visualizer.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/detectron2/utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/detectron2/utils/visualizer.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/dev/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/dev/linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/dev/linter.sh -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/dev/packaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/dev/packaging/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/dev/packaging/build_all_wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/dev/packaging/build_all_wheels.sh -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/dev/packaging/build_wheel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/dev/packaging/build_wheel.sh -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/dev/packaging/gen_install_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/dev/packaging/gen_install_table.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/dev/packaging/gen_wheel_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/dev/packaging/gen_wheel_index.sh -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/dev/packaging/pkg_helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/dev/packaging/pkg_helpers.bash -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/dev/parse_results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/dev/parse_results.sh -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/dev/run_inference_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/dev/run_inference_tests.sh -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/dev/run_instant_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/dev/run_instant_tests.sh -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docker/Dockerfile -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docker/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docker/deploy.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docker/deploy.Dockerfile -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docker/docker-compose.yml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/Makefile -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/_static/css/custom.css -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/conf.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/index.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/checkpoint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/checkpoint.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/config.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/data.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/data_transforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/data_transforms.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/engine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/engine.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/evaluation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/evaluation.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/export.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/export.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/fvcore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/fvcore.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/index.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/layers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/layers.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/model_zoo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/model_zoo.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/modeling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/modeling.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/solver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/solver.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/structures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/structures.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/modules/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/modules/utils.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/notes/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/notes/benchmarks.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/notes/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/notes/changelog.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/notes/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/notes/compatibility.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/notes/contributing.md: -------------------------------------------------------------------------------- 1 | ../../.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/notes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/notes/index.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/requirements.txt -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/augmentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/augmentation.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/builtin_datasets.md: -------------------------------------------------------------------------------- 1 | ../../datasets/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/configs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/configs.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/data_loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/data_loading.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/datasets.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/deployment.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/evaluation.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/extend.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/getting_started.md: -------------------------------------------------------------------------------- 1 | ../../GETTING_STARTED.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/index.rst -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/install.md: -------------------------------------------------------------------------------- 1 | ../../INSTALL.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/lazyconfigs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/lazyconfigs.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/models.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/training.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/docs/tutorials/write-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/docs/tutorials/write-models.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/.gitignore -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/__init__.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/config.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/custom_build_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/custom_build_augmentation.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/custom_dataset_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/custom_dataset_dataloader.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/datasets/coco.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/datasets/nuimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/datasets/nuimages.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/datasets/objects365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/datasets/objects365.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/transforms/custom_augmentation_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/transforms/custom_augmentation_impl.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/transforms/custom_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/data/transforms/custom_transform.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/backbone/bifpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/backbone/bifpn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/backbone/bifpn_fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/backbone/bifpn_fcos.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/backbone/dla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/backbone/dla.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/backbone/dlafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/backbone/dlafpn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/backbone/fpn_p5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/backbone/fpn_p5.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/backbone/res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/backbone/res2net.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/debug.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/dense_heads/centernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/dense_heads/centernet.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/dense_heads/centernet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/dense_heads/centernet_head.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/dense_heads/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/dense_heads/utils.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/layers/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/layers/deform_conv.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/layers/heatmap_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/layers/heatmap_focal_loss.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/layers/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/layers/iou_loss.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/layers/ml_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/layers/ml_nms.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/meta_arch/centernet_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/meta_arch/centernet_detector.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/roi_heads/custom_fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/roi_heads/custom_fast_rcnn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/roi_heads/custom_roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/roi_heads/custom_roi_heads.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/roi_heads/fed_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet/modeling/roi_heads/fed_loss.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet2_docs/MODEL_ZOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/centernet2_docs/MODEL_ZOO.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/Base-CenterNet-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/Base-CenterNet-FPN.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/Base-CenterNet2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/Base-CenterNet2.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/Base_S4_DLA.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/Base_S4_DLA.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet-FPN_R50_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet-FPN_R50_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet-S4_DLA_8x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet-S4_DLA_8x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2-F_R50_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2-F_R50_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_DLA-BiFPN-P3_24x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_DLA-BiFPN-P3_24x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_DLA-BiFPN-P3_4x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_DLA-BiFPN-P3_4x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_DLA-BiFPN-P5_640_16x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_DLA-BiFPN-P5_640_16x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_DLA-BiFPN-P5_640_16x_ST.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_DLA-BiFPN-P5_640_16x_ST.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_DLA-fcosBiFPN-P5_640_16x_ST.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_DLA-fcosBiFPN-P5_640_16x_ST.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_R2-101-DCN-BiFPN_1280_4x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_R2-101-DCN-BiFPN_1280_4x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_R2-101-DCN-BiFPN_4x+4x_1560_ST.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_R2-101-DCN-BiFPN_4x+4x_1560_ST.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_R2-101-DCN_896_4x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_R2-101-DCN_896_4x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_R50_1x.yaml: -------------------------------------------------------------------------------- 1 | _BASE_: "Base-CenterNet2.yaml" 2 | -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_X101-DCN_2x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/CenterNet2_X101-DCN_2x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/LVIS_CenterNet2_R50_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/LVIS_CenterNet2_R50_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/LVIS_CenterNet2_R50_Fed_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/LVIS_CenterNet2_R50_Fed_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/O365_CenterNet2_R50_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/O365_CenterNet2_R50_1x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/nuImages_CenterNet2_DLA_640_8x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/configs/nuImages_CenterNet2_DLA_640_8x.yaml -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/demo.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/predictor.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/projects/CenterNet2/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/projects/CenterNet2/train_net.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/setup.cfg -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/setup.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/config/dir1/dir1_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/config/dir1/dir1_a.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/config/dir1/dir1_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/config/dir1/dir1_b.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/config/root_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/config/root_cfg.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/config/test_instantiate_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/config/test_instantiate_config.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/config/test_lazy_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/config/test_lazy_config.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/config/test_yacs_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/config/test_yacs_config.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/data/test_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/data/test_coco.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/data/test_coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/data/test_coco_evaluation.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/data/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/data/test_dataset.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/data/test_detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/data/test_detection_utils.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/data/test_rotation_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/data/test_rotation_transform.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/data/test_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/data/test_sampler.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/data/test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/data/test_transforms.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/layers/test_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/layers/test_blocks.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/layers/test_deformable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/layers/test_deformable.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/layers/test_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/layers/test_losses.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/layers/test_mask_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/layers/test_mask_ops.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/layers/test_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/layers/test_nms.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/layers/test_nms_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/layers/test_nms_rotated.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/layers/test_roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/layers/test_roi_align.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/layers/test_roi_align_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/layers/test_roi_align_rotated.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/modeling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/modeling/test_anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/modeling/test_anchor_generator.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/modeling/test_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/modeling/test_backbone.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/modeling/test_box2box_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/modeling/test_box2box_transform.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/modeling/test_fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/modeling/test_fast_rcnn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/modeling/test_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/modeling/test_matcher.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/modeling/test_mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/modeling/test_mmdet.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/modeling/test_model_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/modeling/test_model_e2e.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/modeling/test_roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/modeling/test_roi_heads.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/modeling/test_roi_pooler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/modeling/test_roi_pooler.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/modeling/test_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/modeling/test_rpn.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/structures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/structures/test_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/structures/test_boxes.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/structures/test_imagelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/structures/test_imagelist.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/structures/test_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/structures/test_instances.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/structures/test_keypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/structures/test_keypoints.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/structures/test_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/structures/test_masks.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/structures/test_rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/structures/test_rotated_boxes.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/test_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/test_checkpoint.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/test_engine.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/test_events.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/test_export_caffe2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/test_export_caffe2.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/test_export_torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/test_export_torchscript.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/test_model_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/test_model_analysis.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/test_model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/test_model_zoo.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/test_packaging.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/test_registry.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/test_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/test_scheduler.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/test_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/test_solver.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tests/test_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tests/test_visualizer.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/analyze_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/analyze_model.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/benchmark.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/convert-torchvision-to-d2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/convert-torchvision-to-d2.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/deploy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/deploy/CMakeLists.txt -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/deploy/README.md -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/deploy/export_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/deploy/export_model.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/deploy/torchscript_mask_rcnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/deploy/torchscript_mask_rcnn.cpp -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/lazyconfig_train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/lazyconfig_train_net.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/lightning_train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/lightning_train_net.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/plain_train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/plain_train_net.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/train_net.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/visualize_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/visualize_data.py -------------------------------------------------------------------------------- /models/grit_src/third_party/CenterNet2/tools/visualize_json_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/grit_src/third_party/CenterNet2/tools/visualize_json_results.py -------------------------------------------------------------------------------- /models/image_text_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/image_text_transformation.py -------------------------------------------------------------------------------- /models/region_semantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/region_semantic.py -------------------------------------------------------------------------------- /models/segment_models/__pycache__/edit_anything_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/segment_models/__pycache__/edit_anything_model.cpython-38.pyc -------------------------------------------------------------------------------- /models/segment_models/__pycache__/semantic_segment_anything_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/segment_models/__pycache__/semantic_segment_anything_model.cpython-38.pyc -------------------------------------------------------------------------------- /models/segment_models/__pycache__/semgent_anything_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/segment_models/__pycache__/semgent_anything_model.cpython-38.pyc -------------------------------------------------------------------------------- /models/segment_models/configs/__init__.py: -------------------------------------------------------------------------------- 1 | from . import * -------------------------------------------------------------------------------- /models/segment_models/configs/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/segment_models/configs/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /models/segment_models/configs/__pycache__/ade20k_id2label.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/segment_models/configs/__pycache__/ade20k_id2label.cpython-38.pyc -------------------------------------------------------------------------------- /models/segment_models/configs/__pycache__/coco_id2label.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/segment_models/configs/__pycache__/coco_id2label.cpython-38.pyc -------------------------------------------------------------------------------- /models/segment_models/configs/ade20k_id2label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/segment_models/configs/ade20k_id2label.py -------------------------------------------------------------------------------- /models/segment_models/configs/coco_id2label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/segment_models/configs/coco_id2label.py -------------------------------------------------------------------------------- /models/segment_models/edit_anything_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/segment_models/edit_anything_model.py -------------------------------------------------------------------------------- /models/segment_models/edit_anything_model_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/segment_models/edit_anything_model_old.py -------------------------------------------------------------------------------- /models/segment_models/semantic_segment_anything_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/segment_models/semantic_segment_anything_model.py -------------------------------------------------------------------------------- /models/segment_models/semgent_anything_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/models/segment_models/semgent_anything_model.py -------------------------------------------------------------------------------- /output/1_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/output/1_result.jpg -------------------------------------------------------------------------------- /output/2_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/output/2_result.png -------------------------------------------------------------------------------- /output/3_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/output/3_result.jpg -------------------------------------------------------------------------------- /output/3_result_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/output/3_result_2.jpg -------------------------------------------------------------------------------- /output/4_result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/output/4_result.jpg -------------------------------------------------------------------------------- /output/5_result_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/output/5_result_2.jpg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/utils/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/util.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/utils/__pycache__/util.cpython-39.pyc -------------------------------------------------------------------------------- /utils/ignore_large_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/utils/ignore_large_files.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/Image2Paragraph/HEAD/utils/util.py --------------------------------------------------------------------------------