├── .gitignore ├── DiG ├── .gitignore ├── LICENSE ├── README.md ├── custom_optim │ ├── __init__.py │ ├── _functional.py │ ├── adamw.py │ └── optimizer.py ├── dataset │ ├── __init__.py │ ├── concatdatasets.py │ ├── dataset_folder.py │ ├── dataset_image.py │ ├── dataset_lmdb.py │ ├── datasets.py │ └── dist_multisrc_batch_sampler.py ├── engine_for_finetuning.py ├── engine_for_pretraining_moco.py ├── environment.txt ├── environment.yml ├── evaluation_metric │ ├── __init__.py │ ├── metrics.py │ └── multi_label_metrics.py ├── loss │ ├── __init__.py │ ├── emaLoss.py │ ├── msnLoss.py │ ├── seqCrossEntropyLoss.py │ ├── seqLabelSmoothingCrossEntropyLoss.py │ └── seqSimCLRLoss.py ├── masking_generator.py ├── modeling_finetune.py ├── modeling_pretrain_moco_mim_ori.py ├── modeling_pretrain_vit.py ├── models │ ├── __init__.py │ ├── attn_decoder.py │ ├── decoder.py │ ├── encoder.py │ ├── model_builder.py │ └── transformer_layer.py ├── optim_factory.py ├── run_class_finetuning.py ├── run_mae_pretraining_moco.py ├── run_mae_pretraining_moco_multiMachine.py ├── tools │ ├── create_cvl_lmdb.py │ ├── create_iam_lmdb.py │ ├── create_iam_lmdb_from_fullImg.py │ ├── create_mae_lmdb.py │ ├── create_opentext_lmdb.py │ └── gen_voc.py ├── transforms.py └── utils │ ├── __init__.py │ ├── logging.py │ ├── mix_dataloader.py │ └── utils.py ├── README.md ├── adet ├── __init__.py ├── checkpoint │ ├── __init__.py │ └── adet_checkpoint.py ├── config │ ├── __init__.py │ ├── config.py │ └── defaults.py ├── data │ ├── __init__.py │ ├── augmentation.py │ ├── builtin.py │ ├── dataset_mapper.py │ ├── datasets │ │ └── text.py │ └── detection_utils.py ├── evaluation │ ├── __init__.py │ ├── lexicon_procesor.py │ ├── rrc_evaluation_funcs.py │ ├── rrc_evaluation_funcs_det.py │ ├── text_eval_script.py │ ├── text_eval_script_det.py │ ├── text_evaluation.py │ └── text_evaluation_det.py ├── layers │ ├── __init__.py │ ├── csrc │ │ ├── DeformAttn │ │ │ ├── ms_deform_attn.h │ │ │ ├── ms_deform_attn_cpu.cpp │ │ │ ├── ms_deform_attn_cpu.h │ │ │ ├── ms_deform_attn_cuda.cu │ │ │ ├── ms_deform_attn_cuda.h │ │ │ └── ms_deform_im2col_cuda.cuh │ │ ├── cuda_version.cu │ │ └── vision.cpp │ ├── deformable_transformer.py │ ├── deformable_transformer_det.py │ ├── feat_shuffling.py │ ├── mamba_vision.py │ ├── ms_deform_attn.py │ ├── pos_encoding.py │ └── registry.py ├── modeling │ ├── DPtext_detr.py │ ├── TESTR.py │ ├── __init__.py │ ├── adapter.py │ ├── bridge.py │ ├── dptext_detr │ │ ├── __init__.py │ │ ├── losses.py │ │ ├── matcher.py │ │ ├── models.py │ │ └── utils.py │ └── testr │ │ ├── __init__.py │ │ ├── losses.py │ │ ├── matcher.py │ │ └── models.py └── utils │ ├── __init__.py │ ├── comm.py │ ├── misc.py │ ├── util.py │ └── visualizer.py ├── aggregations ├── __init__.py └── boq.py ├── backbone.py ├── configs └── Bridge │ ├── Base.yaml │ └── TotalText │ └── R_50_poly.yaml ├── datasets ├── __init__.py ├── dataset_utils.py ├── maze_with_text.py └── pca_dataset.py ├── detectron2 ├── .circleci │ ├── config.yml │ └── import-tests.sh ├── .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 ├── 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 │ │ │ └── constants.py │ │ ├── models │ │ │ ├── cascade_rcnn.py │ │ │ ├── fcos.py │ │ │ ├── keypoint_rcnn_fpn.py │ │ │ ├── mask_rcnn_c4.py │ │ │ ├── mask_rcnn_fpn.py │ │ │ ├── mask_rcnn_vitdet.py │ │ │ ├── panoptic_fpn.py │ │ │ └── retinanet.py │ │ ├── optim.py │ │ └── train.py │ ├── new_baselines │ │ ├── mask_rcnn_R_101_FPN_100ep_LSJ.py │ │ ├── mask_rcnn_R_101_FPN_200ep_LSJ.py │ │ ├── mask_rcnn_R_101_FPN_400ep_LSJ.py │ │ ├── mask_rcnn_R_50_FPN_100ep_LSJ.py │ │ ├── mask_rcnn_R_50_FPN_200ep_LSJ.py │ │ ├── mask_rcnn_R_50_FPN_400ep_LSJ.py │ │ ├── mask_rcnn_R_50_FPN_50ep_LSJ.py │ │ ├── mask_rcnn_regnetx_4gf_dds_FPN_100ep_LSJ.py │ │ ├── mask_rcnn_regnetx_4gf_dds_FPN_200ep_LSJ.py │ │ ├── mask_rcnn_regnetx_4gf_dds_FPN_400ep_LSJ.py │ │ ├── mask_rcnn_regnety_4gf_dds_FPN_100ep_LSJ.py │ │ ├── mask_rcnn_regnety_4gf_dds_FPN_200ep_LSJ.py │ │ └── mask_rcnn_regnety_4gf_dds_FPN_400ep_LSJ.py │ └── quick_schedules │ │ ├── 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 │ ├── 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 │ │ │ ├── lvis_v1_category_image_count.py │ │ │ ├── pascal_voc.py │ │ │ └── register_coco.py │ │ ├── detection_utils.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── distributed_sampler.py │ │ │ └── grouped_batch_sampler.py │ │ └── transforms │ │ │ ├── __init__.py │ │ │ ├── augmentation.py │ │ │ ├── augmentation_impl.py │ │ │ └── transform.py │ ├── engine │ │ ├── __init__.py │ │ ├── defaults.py │ │ ├── hooks.py │ │ ├── launch.py │ │ └── train_loop.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── cityscapes_evaluation.py │ │ ├── coco_evaluation.py │ │ ├── evaluator.py │ │ ├── fast_eval_api.py │ │ ├── lvis_evaluation.py │ │ ├── panoptic_evaluation.py │ │ ├── pascal_voc_evaluation.py │ │ ├── rotated_coco_evaluation.py │ │ ├── sem_seg_evaluation.py │ │ └── testing.py │ ├── export │ │ ├── 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 │ │ │ ├── mvit.py │ │ │ ├── regnet.py │ │ │ ├── resnet.py │ │ │ ├── swin.py │ │ │ ├── utils.py │ │ │ └── vit.py │ │ ├── box_regression.py │ │ ├── matcher.py │ │ ├── meta_arch │ │ │ ├── __init__.py │ │ │ ├── build.py │ │ │ ├── dense_detector.py │ │ │ ├── fcos.py │ │ │ ├── panoptic_fpn.py │ │ │ ├── rcnn.py │ │ │ ├── retinanet.py │ │ │ └── semantic_seg.py │ │ ├── mmdet_wrapper.py │ │ ├── poolers.py │ │ ├── postprocessing.py │ │ ├── proposal_generator │ │ │ ├── __init__.py │ │ │ ├── build.py │ │ │ ├── proposal_utils.py │ │ │ ├── rpn.py │ │ │ └── rrpn.py │ │ ├── roi_heads │ │ │ ├── __init__.py │ │ │ ├── box_head.py │ │ │ ├── cascade_rcnn.py │ │ │ ├── fast_rcnn.py │ │ │ ├── keypoint_head.py │ │ │ ├── mask_head.py │ │ │ ├── roi_heads.py │ │ │ └── rotated_fast_rcnn.py │ │ ├── sampling.py │ │ └── test_time_augmentation.py │ ├── projects │ │ ├── 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 │ ├── tracking │ │ ├── __init__.py │ │ ├── base_tracker.py │ │ ├── bbox_iou_tracker.py │ │ ├── hungarian_tracker.py │ │ ├── iou_weighted_hungarian_bbox_iou_tracker.py │ │ ├── utils.py │ │ └── vanilla_hungarian_bbox_iou_tracker.py │ └── utils │ │ ├── README.md │ │ ├── __init__.py │ │ ├── analysis.py │ │ ├── collect_env.py │ │ ├── colormap.py │ │ ├── comm.py │ │ ├── develop.py │ │ ├── env.py │ │ ├── events.py │ │ ├── file_io.py │ │ ├── logger.py │ │ ├── memory.py │ │ ├── registry.py │ │ ├── serialize.py │ │ ├── testing.py │ │ ├── tracing.py │ │ ├── video_visualizer.py │ │ └── visualizer.py ├── 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 │ ├── DeepLab │ │ ├── README.md │ │ ├── configs │ │ │ └── Cityscapes-SemanticSegmentation │ │ │ │ ├── Base-DeepLabV3-OS16-Semantic.yaml │ │ │ │ ├── deeplab_v3_R_103_os16_mg124_poly_90k_bs16.yaml │ │ │ │ └── deeplab_v3_plus_R_103_os16_mg124_poly_90k_bs16.yaml │ │ ├── deeplab │ │ │ ├── __init__.py │ │ │ ├── build_solver.py │ │ │ ├── config.py │ │ │ ├── loss.py │ │ │ ├── lr_scheduler.py │ │ │ ├── resnet.py │ │ │ └── semantic_seg.py │ │ └── train_net.py │ ├── DensePose │ │ ├── README.md │ │ ├── apply_net.py │ │ ├── configs │ │ │ ├── Base-DensePose-RCNN-FPN.yaml │ │ │ ├── HRNet │ │ │ │ ├── densepose_rcnn_HRFPN_HRNet_w32_s1x.yaml │ │ │ │ ├── densepose_rcnn_HRFPN_HRNet_w40_s1x.yaml │ │ │ │ └── densepose_rcnn_HRFPN_HRNet_w48_s1x.yaml │ │ │ ├── cse │ │ │ │ ├── Base-DensePose-RCNN-FPN-Human.yaml │ │ │ │ ├── Base-DensePose-RCNN-FPN.yaml │ │ │ │ ├── densepose_rcnn_R_101_FPN_DL_s1x.yaml │ │ │ │ ├── densepose_rcnn_R_101_FPN_DL_soft_s1x.yaml │ │ │ │ ├── densepose_rcnn_R_101_FPN_s1x.yaml │ │ │ │ ├── densepose_rcnn_R_101_FPN_soft_s1x.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_DL_s1x.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_DL_soft_s1x.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_s1x.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_soft_animals_CA_finetune_16k.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_soft_animals_CA_finetune_4k.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_soft_animals_I0_finetune_16k.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_soft_animals_I0_finetune_i2m_16k.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_soft_animals_I0_finetune_m2m_16k.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_soft_animals_finetune_16k.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_soft_animals_finetune_4k.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_soft_animals_finetune_maskonly_24k.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_soft_chimps_finetune_4k.yaml │ │ │ │ └── densepose_rcnn_R_50_FPN_soft_s1x.yaml │ │ │ ├── densepose_rcnn_R_101_FPN_DL_WC1M_s1x.yaml │ │ │ ├── densepose_rcnn_R_101_FPN_DL_WC1_s1x.yaml │ │ │ ├── densepose_rcnn_R_101_FPN_DL_WC2M_s1x.yaml │ │ │ ├── densepose_rcnn_R_101_FPN_DL_WC2_s1x.yaml │ │ │ ├── densepose_rcnn_R_101_FPN_DL_s1x.yaml │ │ │ ├── densepose_rcnn_R_101_FPN_WC1M_s1x.yaml │ │ │ ├── densepose_rcnn_R_101_FPN_WC1_s1x.yaml │ │ │ ├── densepose_rcnn_R_101_FPN_WC2M_s1x.yaml │ │ │ ├── densepose_rcnn_R_101_FPN_WC2_s1x.yaml │ │ │ ├── densepose_rcnn_R_101_FPN_s1x.yaml │ │ │ ├── densepose_rcnn_R_101_FPN_s1x_legacy.yaml │ │ │ ├── densepose_rcnn_R_50_FPN_DL_WC1M_s1x.yaml │ │ │ ├── densepose_rcnn_R_50_FPN_DL_WC1_s1x.yaml │ │ │ ├── densepose_rcnn_R_50_FPN_DL_WC2M_s1x.yaml │ │ │ ├── densepose_rcnn_R_50_FPN_DL_WC2_s1x.yaml │ │ │ ├── densepose_rcnn_R_50_FPN_DL_s1x.yaml │ │ │ ├── densepose_rcnn_R_50_FPN_WC1M_s1x.yaml │ │ │ ├── densepose_rcnn_R_50_FPN_WC1_s1x.yaml │ │ │ ├── densepose_rcnn_R_50_FPN_WC2M_s1x.yaml │ │ │ ├── densepose_rcnn_R_50_FPN_WC2_s1x.yaml │ │ │ ├── densepose_rcnn_R_50_FPN_s1x.yaml │ │ │ ├── densepose_rcnn_R_50_FPN_s1x_legacy.yaml │ │ │ ├── evolution │ │ │ │ ├── Base-RCNN-FPN-Atop10P_CA.yaml │ │ │ │ ├── densepose_R_50_FPN_DL_WC1M_3x_Atop10P_CA.yaml │ │ │ │ ├── densepose_R_50_FPN_DL_WC1M_3x_Atop10P_CA_B_coarsesegm.yaml │ │ │ │ ├── densepose_R_50_FPN_DL_WC1M_3x_Atop10P_CA_B_finesegm.yaml │ │ │ │ ├── densepose_R_50_FPN_DL_WC1M_3x_Atop10P_CA_B_uniform.yaml │ │ │ │ └── densepose_R_50_FPN_DL_WC1M_3x_Atop10P_CA_B_uv.yaml │ │ │ └── quick_schedules │ │ │ │ ├── cse │ │ │ │ ├── densepose_rcnn_R_50_FPN_DL_instant_test.yaml │ │ │ │ └── densepose_rcnn_R_50_FPN_soft_animals_finetune_instant_test.yaml │ │ │ │ ├── densepose_rcnn_HRFPN_HRNet_w32_instant_test.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_DL_instant_test.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_TTA_inference_acc_test.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_WC1_instant_test.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_WC2_instant_test.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_inference_acc_test.yaml │ │ │ │ ├── densepose_rcnn_R_50_FPN_instant_test.yaml │ │ │ │ └── densepose_rcnn_R_50_FPN_training_acc_test.yaml │ │ ├── densepose │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── converters │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── builtin.py │ │ │ │ ├── chart_output_hflip.py │ │ │ │ ├── chart_output_to_chart_result.py │ │ │ │ ├── hflip.py │ │ │ │ ├── segm_to_mask.py │ │ │ │ ├── to_chart_result.py │ │ │ │ └── to_mask.py │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── build.py │ │ │ │ ├── combined_loader.py │ │ │ │ ├── dataset_mapper.py │ │ │ │ ├── datasets │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── builtin.py │ │ │ │ │ ├── chimpnsee.py │ │ │ │ │ ├── coco.py │ │ │ │ │ ├── dataset_type.py │ │ │ │ │ └── lvis.py │ │ │ │ ├── image_list_dataset.py │ │ │ │ ├── inference_based_loader.py │ │ │ │ ├── meshes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── builtin.py │ │ │ │ │ └── catalog.py │ │ │ │ ├── samplers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── densepose_base.py │ │ │ │ │ ├── densepose_confidence_based.py │ │ │ │ │ ├── densepose_cse_base.py │ │ │ │ │ ├── densepose_cse_confidence_based.py │ │ │ │ │ ├── densepose_cse_uniform.py │ │ │ │ │ ├── densepose_uniform.py │ │ │ │ │ ├── mask_from_densepose.py │ │ │ │ │ └── prediction_to_gt.py │ │ │ │ ├── transform │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── image.py │ │ │ │ ├── utils.py │ │ │ │ └── video │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── frame_selector.py │ │ │ │ │ └── video_keyframe_dataset.py │ │ │ ├── engine │ │ │ │ ├── __init__.py │ │ │ │ └── trainer.py │ │ │ ├── evaluation │ │ │ │ ├── __init__.py │ │ │ │ ├── d2_evaluator_adapter.py │ │ │ │ ├── densepose_coco_evaluation.py │ │ │ │ ├── evaluator.py │ │ │ │ ├── mesh_alignment_evaluator.py │ │ │ │ └── tensor_storage.py │ │ │ ├── modeling │ │ │ │ ├── __init__.py │ │ │ │ ├── build.py │ │ │ │ ├── confidence.py │ │ │ │ ├── cse │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── embedder.py │ │ │ │ │ ├── utils.py │ │ │ │ │ ├── vertex_direct_embedder.py │ │ │ │ │ └── vertex_feature_embedder.py │ │ │ │ ├── densepose_checkpoint.py │ │ │ │ ├── filter.py │ │ │ │ ├── hrfpn.py │ │ │ │ ├── hrnet.py │ │ │ │ ├── inference.py │ │ │ │ ├── losses │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── chart.py │ │ │ │ │ ├── chart_with_confidences.py │ │ │ │ │ ├── cse.py │ │ │ │ │ ├── cycle_pix2shape.py │ │ │ │ │ ├── cycle_shape2shape.py │ │ │ │ │ ├── embed.py │ │ │ │ │ ├── embed_utils.py │ │ │ │ │ ├── mask.py │ │ │ │ │ ├── mask_or_segm.py │ │ │ │ │ ├── registry.py │ │ │ │ │ ├── segm.py │ │ │ │ │ ├── soft_embed.py │ │ │ │ │ └── utils.py │ │ │ │ ├── predictors │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── chart.py │ │ │ │ │ ├── chart_confidence.py │ │ │ │ │ ├── chart_with_confidence.py │ │ │ │ │ ├── cse.py │ │ │ │ │ ├── cse_confidence.py │ │ │ │ │ ├── cse_with_confidence.py │ │ │ │ │ └── registry.py │ │ │ │ ├── roi_heads │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── deeplab.py │ │ │ │ │ ├── registry.py │ │ │ │ │ ├── roi_head.py │ │ │ │ │ └── v1convx.py │ │ │ │ ├── test_time_augmentation.py │ │ │ │ └── utils.py │ │ │ ├── structures │ │ │ │ ├── __init__.py │ │ │ │ ├── chart.py │ │ │ │ ├── chart_confidence.py │ │ │ │ ├── chart_result.py │ │ │ │ ├── cse.py │ │ │ │ ├── cse_confidence.py │ │ │ │ ├── data_relative.py │ │ │ │ ├── list.py │ │ │ │ ├── mesh.py │ │ │ │ └── transform_data.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── dbhelper.py │ │ │ │ ├── logger.py │ │ │ │ └── transform.py │ │ ├── dev │ │ │ ├── README.md │ │ │ ├── run_inference_tests.sh │ │ │ └── run_instant_tests.sh │ │ ├── doc │ │ │ ├── BOOTSTRAPPING_PIPELINE.md │ │ │ ├── DENSEPOSE_CSE.md │ │ │ ├── DENSEPOSE_DATASETS.md │ │ │ ├── DENSEPOSE_IUV.md │ │ │ ├── GETTING_STARTED.md │ │ │ ├── RELEASE_2020_04.md │ │ │ ├── RELEASE_2021_03.md │ │ │ ├── RELEASE_2021_06.md │ │ │ ├── TOOL_APPLY_NET.md │ │ │ └── TOOL_QUERY_DB.md │ │ ├── query_db.py │ │ ├── setup.py │ │ ├── tests │ │ │ ├── common.py │ │ │ ├── test_chart_based_annotations_accumulator.py │ │ │ ├── test_combine_data_loader.py │ │ │ ├── test_cse_annotations_accumulator.py │ │ │ ├── test_dataset_loaded_annotations.py │ │ │ ├── test_frame_selector.py │ │ │ ├── test_image_list_dataset.py │ │ │ ├── test_image_resize_transform.py │ │ │ ├── test_model_e2e.py │ │ │ ├── test_setup.py │ │ │ ├── test_structures.py │ │ │ ├── test_tensor_storage.py │ │ │ └── test_video_keyframe_dataset.py │ │ └── train_net.py │ ├── MViTv2 │ │ ├── README.md │ │ └── configs │ │ │ ├── cascade_mask_rcnn_mvitv2_b_3x.py │ │ │ ├── cascade_mask_rcnn_mvitv2_b_in21k_3x.py │ │ │ ├── cascade_mask_rcnn_mvitv2_h_in21k_lsj_3x.py │ │ │ ├── cascade_mask_rcnn_mvitv2_l_in21k_lsj_50ep.py │ │ │ ├── cascade_mask_rcnn_mvitv2_s_3x.py │ │ │ ├── cascade_mask_rcnn_mvitv2_t_3x.py │ │ │ ├── common │ │ │ ├── coco_loader.py │ │ │ └── coco_loader_lsj.py │ │ │ └── mask_rcnn_mvitv2_t_3x.py │ ├── Panoptic-DeepLab │ │ ├── README.md │ │ ├── configs │ │ │ ├── COCO-PanopticSegmentation │ │ │ │ └── panoptic_deeplab_R_52_os16_mg124_poly_200k_bs64_crop_640_640_coco_dsconv.yaml │ │ │ └── Cityscapes-PanopticSegmentation │ │ │ │ ├── Base-PanopticDeepLab-OS16.yaml │ │ │ │ ├── panoptic_deeplab_R_52_os16_mg124_poly_90k_bs32_crop_512_1024.yaml │ │ │ │ └── panoptic_deeplab_R_52_os16_mg124_poly_90k_bs32_crop_512_1024_dsconv.yaml │ │ ├── panoptic_deeplab │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── dataset_mapper.py │ │ │ ├── panoptic_seg.py │ │ │ ├── post_processing.py │ │ │ └── target_generator.py │ │ └── train_net.py │ ├── PointRend │ │ ├── README.md │ │ ├── configs │ │ │ ├── InstanceSegmentation │ │ │ │ ├── Base-Implicit-PointRend.yaml │ │ │ │ ├── Base-PointRend-RCNN-FPN.yaml │ │ │ │ ├── implicit_pointrend_R_50_FPN_1x_coco.yaml │ │ │ │ ├── implicit_pointrend_R_50_FPN_3x_coco.yaml │ │ │ │ ├── pointrend_rcnn_R_101_FPN_3x_coco.yaml │ │ │ │ ├── pointrend_rcnn_R_50_FPN_1x_cityscapes.yaml │ │ │ │ ├── pointrend_rcnn_R_50_FPN_1x_coco.yaml │ │ │ │ ├── pointrend_rcnn_R_50_FPN_3x_coco.yaml │ │ │ │ └── pointrend_rcnn_X_101_32x8d_FPN_3x_coco.yaml │ │ │ └── SemanticSegmentation │ │ │ │ ├── Base-PointRend-Semantic-FPN.yaml │ │ │ │ └── pointrend_semantic_R_101_FPN_1x_cityscapes.yaml │ │ ├── point_rend │ │ │ ├── __init__.py │ │ │ ├── color_augmentation.py │ │ │ ├── config.py │ │ │ ├── mask_head.py │ │ │ ├── point_features.py │ │ │ ├── point_head.py │ │ │ ├── roi_heads.py │ │ │ └── semantic_seg.py │ │ └── train_net.py │ ├── PointSup │ │ ├── README.md │ │ ├── configs │ │ │ ├── implicit_pointrend_R_50_FPN_3x_point_sup_point_aug_coco.yaml │ │ │ ├── mask_rcnn_R_50_FPN_3x_point_sup_coco.yaml │ │ │ └── mask_rcnn_R_50_FPN_3x_point_sup_point_aug_coco.yaml │ │ ├── point_sup │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── dataset_mapper.py │ │ │ ├── detection_utils.py │ │ │ ├── mask_head.py │ │ │ ├── point_utils.py │ │ │ └── register_point_annotations.py │ │ ├── tools │ │ │ └── prepare_coco_point_annotations_without_masks.py │ │ └── train_net.py │ ├── README.md │ ├── Rethinking-BatchNorm │ │ ├── README.md │ │ ├── configs │ │ │ ├── mask_rcnn_BNhead.py │ │ │ ├── mask_rcnn_BNhead_batch_stats.py │ │ │ ├── mask_rcnn_BNhead_shuffle.py │ │ │ ├── mask_rcnn_SyncBNhead.py │ │ │ ├── retinanet_SyncBNhead.py │ │ │ └── retinanet_SyncBNhead_SharedTraining.py │ │ └── retinanet-eval-domain-specific.py │ ├── TensorMask │ │ ├── README.md │ │ ├── configs │ │ │ ├── Base-TensorMask.yaml │ │ │ ├── tensormask_R_50_FPN_1x.yaml │ │ │ └── tensormask_R_50_FPN_6x.yaml │ │ ├── setup.py │ │ ├── tensormask │ │ │ ├── __init__.py │ │ │ ├── arch.py │ │ │ ├── config.py │ │ │ └── layers │ │ │ │ ├── __init__.py │ │ │ │ ├── csrc │ │ │ │ ├── SwapAlign2Nat │ │ │ │ │ ├── SwapAlign2Nat.h │ │ │ │ │ └── SwapAlign2Nat_cuda.cu │ │ │ │ └── vision.cpp │ │ │ │ └── swap_align2nat.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ └── test_swap_align2nat.py │ │ └── train_net.py │ ├── TridentNet │ │ ├── README.md │ │ ├── configs │ │ │ ├── Base-TridentNet-Fast-C4.yaml │ │ │ ├── tridentnet_fast_R_101_C4_3x.yaml │ │ │ ├── tridentnet_fast_R_50_C4_1x.yaml │ │ │ └── tridentnet_fast_R_50_C4_3x.yaml │ │ ├── train_net.py │ │ └── tridentnet │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── trident_backbone.py │ │ │ ├── trident_conv.py │ │ │ ├── trident_rcnn.py │ │ │ └── trident_rpn.py │ └── ViTDet │ │ ├── README.md │ │ └── configs │ │ ├── COCO │ │ ├── cascade_mask_rcnn_mvitv2_b_in21k_100ep.py │ │ ├── cascade_mask_rcnn_mvitv2_h_in21k_36ep.py │ │ ├── cascade_mask_rcnn_mvitv2_l_in21k_50ep.py │ │ ├── cascade_mask_rcnn_swin_b_in21k_50ep.py │ │ ├── cascade_mask_rcnn_swin_l_in21k_50ep.py │ │ ├── cascade_mask_rcnn_vitdet_b_100ep.py │ │ ├── cascade_mask_rcnn_vitdet_h_75ep.py │ │ ├── cascade_mask_rcnn_vitdet_l_100ep.py │ │ ├── mask_rcnn_vitdet_b_100ep.py │ │ ├── mask_rcnn_vitdet_h_75ep.py │ │ └── mask_rcnn_vitdet_l_100ep.py │ │ ├── LVIS │ │ ├── cascade_mask_rcnn_mvitv2_b_in21k_100ep.py │ │ ├── cascade_mask_rcnn_mvitv2_h_in21k_50ep.py │ │ ├── cascade_mask_rcnn_mvitv2_l_in21k_50ep.py │ │ ├── cascade_mask_rcnn_swin_b_in21k_50ep.py │ │ ├── cascade_mask_rcnn_swin_l_in21k_50ep.py │ │ ├── cascade_mask_rcnn_vitdet_b_100ep.py │ │ ├── cascade_mask_rcnn_vitdet_h_100ep.py │ │ ├── cascade_mask_rcnn_vitdet_l_100ep.py │ │ ├── mask_rcnn_vitdet_b_100ep.py │ │ ├── mask_rcnn_vitdet_h_100ep.py │ │ └── mask_rcnn_vitdet_l_100ep.py │ │ └── common │ │ └── coco_loader_lsj.py ├── setup.cfg ├── setup.py ├── tests │ ├── README.md │ ├── __init__.py │ ├── config │ │ ├── dir1 │ │ │ ├── bad_import.py │ │ │ ├── bad_import2.py │ │ │ ├── dir1_a.py │ │ │ ├── dir1_b.py │ │ │ └── load_rel.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 │ ├── export │ │ └── test_c10.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_onnx.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 │ ├── tracking │ │ ├── __init__.py │ │ ├── test_bbox_iou_tracker.py │ │ ├── test_hungarian_tracker.py │ │ ├── test_iou_weighted_hungarian_bbox_iou_tracker.py │ │ └── test_vanilla_hungarian_bbox_iou_tracker.py │ └── utils │ │ └── test_tensorboardx.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 ├── eval.py ├── figures └── TextInPlace.png ├── network.py ├── requirements.txt ├── setup.py └── utils ├── __init__.py ├── commons.py ├── parser.py ├── rerank.py ├── test.py ├── util.py └── visualizations.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/.gitignore -------------------------------------------------------------------------------- /DiG/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/.gitignore -------------------------------------------------------------------------------- /DiG/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/LICENSE -------------------------------------------------------------------------------- /DiG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/README.md -------------------------------------------------------------------------------- /DiG/custom_optim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/custom_optim/__init__.py -------------------------------------------------------------------------------- /DiG/custom_optim/_functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/custom_optim/_functional.py -------------------------------------------------------------------------------- /DiG/custom_optim/adamw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/custom_optim/adamw.py -------------------------------------------------------------------------------- /DiG/custom_optim/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/custom_optim/optimizer.py -------------------------------------------------------------------------------- /DiG/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DiG/dataset/concatdatasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/dataset/concatdatasets.py -------------------------------------------------------------------------------- /DiG/dataset/dataset_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/dataset/dataset_folder.py -------------------------------------------------------------------------------- /DiG/dataset/dataset_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/dataset/dataset_image.py -------------------------------------------------------------------------------- /DiG/dataset/dataset_lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/dataset/dataset_lmdb.py -------------------------------------------------------------------------------- /DiG/dataset/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/dataset/datasets.py -------------------------------------------------------------------------------- /DiG/dataset/dist_multisrc_batch_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/dataset/dist_multisrc_batch_sampler.py -------------------------------------------------------------------------------- /DiG/engine_for_finetuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/engine_for_finetuning.py -------------------------------------------------------------------------------- /DiG/engine_for_pretraining_moco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/engine_for_pretraining_moco.py -------------------------------------------------------------------------------- /DiG/environment.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/environment.txt -------------------------------------------------------------------------------- /DiG/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/environment.yml -------------------------------------------------------------------------------- /DiG/evaluation_metric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/evaluation_metric/__init__.py -------------------------------------------------------------------------------- /DiG/evaluation_metric/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/evaluation_metric/metrics.py -------------------------------------------------------------------------------- /DiG/evaluation_metric/multi_label_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/evaluation_metric/multi_label_metrics.py -------------------------------------------------------------------------------- /DiG/loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/loss/__init__.py -------------------------------------------------------------------------------- /DiG/loss/emaLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/loss/emaLoss.py -------------------------------------------------------------------------------- /DiG/loss/msnLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/loss/msnLoss.py -------------------------------------------------------------------------------- /DiG/loss/seqCrossEntropyLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/loss/seqCrossEntropyLoss.py -------------------------------------------------------------------------------- /DiG/loss/seqLabelSmoothingCrossEntropyLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/loss/seqLabelSmoothingCrossEntropyLoss.py -------------------------------------------------------------------------------- /DiG/loss/seqSimCLRLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/loss/seqSimCLRLoss.py -------------------------------------------------------------------------------- /DiG/masking_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/masking_generator.py -------------------------------------------------------------------------------- /DiG/modeling_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/modeling_finetune.py -------------------------------------------------------------------------------- /DiG/modeling_pretrain_moco_mim_ori.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/modeling_pretrain_moco_mim_ori.py -------------------------------------------------------------------------------- /DiG/modeling_pretrain_vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/modeling_pretrain_vit.py -------------------------------------------------------------------------------- /DiG/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DiG/models/attn_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/models/attn_decoder.py -------------------------------------------------------------------------------- /DiG/models/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/models/decoder.py -------------------------------------------------------------------------------- /DiG/models/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/models/encoder.py -------------------------------------------------------------------------------- /DiG/models/model_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/models/model_builder.py -------------------------------------------------------------------------------- /DiG/models/transformer_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/models/transformer_layer.py -------------------------------------------------------------------------------- /DiG/optim_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/optim_factory.py -------------------------------------------------------------------------------- /DiG/run_class_finetuning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/run_class_finetuning.py -------------------------------------------------------------------------------- /DiG/run_mae_pretraining_moco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/run_mae_pretraining_moco.py -------------------------------------------------------------------------------- /DiG/run_mae_pretraining_moco_multiMachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/run_mae_pretraining_moco_multiMachine.py -------------------------------------------------------------------------------- /DiG/tools/create_cvl_lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/tools/create_cvl_lmdb.py -------------------------------------------------------------------------------- /DiG/tools/create_iam_lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/tools/create_iam_lmdb.py -------------------------------------------------------------------------------- /DiG/tools/create_iam_lmdb_from_fullImg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/tools/create_iam_lmdb_from_fullImg.py -------------------------------------------------------------------------------- /DiG/tools/create_mae_lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/tools/create_mae_lmdb.py -------------------------------------------------------------------------------- /DiG/tools/create_opentext_lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/tools/create_opentext_lmdb.py -------------------------------------------------------------------------------- /DiG/tools/gen_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/tools/gen_voc.py -------------------------------------------------------------------------------- /DiG/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/transforms.py -------------------------------------------------------------------------------- /DiG/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/utils/__init__.py -------------------------------------------------------------------------------- /DiG/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/utils/logging.py -------------------------------------------------------------------------------- /DiG/utils/mix_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/utils/mix_dataloader.py -------------------------------------------------------------------------------- /DiG/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/DiG/utils/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/README.md -------------------------------------------------------------------------------- /adet/__init__.py: -------------------------------------------------------------------------------- 1 | from adet import modeling 2 | 3 | __version__ = "0.1.1" 4 | -------------------------------------------------------------------------------- /adet/checkpoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/checkpoint/__init__.py -------------------------------------------------------------------------------- /adet/checkpoint/adet_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/checkpoint/adet_checkpoint.py -------------------------------------------------------------------------------- /adet/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/config/__init__.py -------------------------------------------------------------------------------- /adet/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/config/config.py -------------------------------------------------------------------------------- /adet/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/config/defaults.py -------------------------------------------------------------------------------- /adet/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/data/__init__.py -------------------------------------------------------------------------------- /adet/data/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/data/augmentation.py -------------------------------------------------------------------------------- /adet/data/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/data/builtin.py -------------------------------------------------------------------------------- /adet/data/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/data/dataset_mapper.py -------------------------------------------------------------------------------- /adet/data/datasets/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/data/datasets/text.py -------------------------------------------------------------------------------- /adet/data/detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/data/detection_utils.py -------------------------------------------------------------------------------- /adet/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/evaluation/__init__.py -------------------------------------------------------------------------------- /adet/evaluation/lexicon_procesor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/evaluation/lexicon_procesor.py -------------------------------------------------------------------------------- /adet/evaluation/rrc_evaluation_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/evaluation/rrc_evaluation_funcs.py -------------------------------------------------------------------------------- /adet/evaluation/rrc_evaluation_funcs_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/evaluation/rrc_evaluation_funcs_det.py -------------------------------------------------------------------------------- /adet/evaluation/text_eval_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/evaluation/text_eval_script.py -------------------------------------------------------------------------------- /adet/evaluation/text_eval_script_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/evaluation/text_eval_script_det.py -------------------------------------------------------------------------------- /adet/evaluation/text_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/evaluation/text_evaluation.py -------------------------------------------------------------------------------- /adet/evaluation/text_evaluation_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/evaluation/text_evaluation_det.py -------------------------------------------------------------------------------- /adet/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/__init__.py -------------------------------------------------------------------------------- /adet/layers/csrc/DeformAttn/ms_deform_attn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/csrc/DeformAttn/ms_deform_attn.h -------------------------------------------------------------------------------- /adet/layers/csrc/DeformAttn/ms_deform_attn_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/csrc/DeformAttn/ms_deform_attn_cpu.cpp -------------------------------------------------------------------------------- /adet/layers/csrc/DeformAttn/ms_deform_attn_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/csrc/DeformAttn/ms_deform_attn_cpu.h -------------------------------------------------------------------------------- /adet/layers/csrc/DeformAttn/ms_deform_attn_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/csrc/DeformAttn/ms_deform_attn_cuda.cu -------------------------------------------------------------------------------- /adet/layers/csrc/DeformAttn/ms_deform_attn_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/csrc/DeformAttn/ms_deform_attn_cuda.h -------------------------------------------------------------------------------- /adet/layers/csrc/DeformAttn/ms_deform_im2col_cuda.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/csrc/DeformAttn/ms_deform_im2col_cuda.cuh -------------------------------------------------------------------------------- /adet/layers/csrc/cuda_version.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/csrc/cuda_version.cu -------------------------------------------------------------------------------- /adet/layers/csrc/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/csrc/vision.cpp -------------------------------------------------------------------------------- /adet/layers/deformable_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/deformable_transformer.py -------------------------------------------------------------------------------- /adet/layers/deformable_transformer_det.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/deformable_transformer_det.py -------------------------------------------------------------------------------- /adet/layers/feat_shuffling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/feat_shuffling.py -------------------------------------------------------------------------------- /adet/layers/mamba_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/mamba_vision.py -------------------------------------------------------------------------------- /adet/layers/ms_deform_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/ms_deform_attn.py -------------------------------------------------------------------------------- /adet/layers/pos_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/pos_encoding.py -------------------------------------------------------------------------------- /adet/layers/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/layers/registry.py -------------------------------------------------------------------------------- /adet/modeling/DPtext_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/modeling/DPtext_detr.py -------------------------------------------------------------------------------- /adet/modeling/TESTR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/modeling/TESTR.py -------------------------------------------------------------------------------- /adet/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/modeling/__init__.py -------------------------------------------------------------------------------- /adet/modeling/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/modeling/adapter.py -------------------------------------------------------------------------------- /adet/modeling/bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/modeling/bridge.py -------------------------------------------------------------------------------- /adet/modeling/dptext_detr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adet/modeling/dptext_detr/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/modeling/dptext_detr/losses.py -------------------------------------------------------------------------------- /adet/modeling/dptext_detr/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/modeling/dptext_detr/matcher.py -------------------------------------------------------------------------------- /adet/modeling/dptext_detr/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/modeling/dptext_detr/models.py -------------------------------------------------------------------------------- /adet/modeling/dptext_detr/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/modeling/dptext_detr/utils.py -------------------------------------------------------------------------------- /adet/modeling/testr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adet/modeling/testr/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/modeling/testr/losses.py -------------------------------------------------------------------------------- /adet/modeling/testr/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/modeling/testr/matcher.py -------------------------------------------------------------------------------- /adet/modeling/testr/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/modeling/testr/models.py -------------------------------------------------------------------------------- /adet/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adet/utils/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/utils/comm.py -------------------------------------------------------------------------------- /adet/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/utils/misc.py -------------------------------------------------------------------------------- /adet/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/utils/util.py -------------------------------------------------------------------------------- /adet/utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/adet/utils/visualizer.py -------------------------------------------------------------------------------- /aggregations/__init__.py: -------------------------------------------------------------------------------- 1 | from .boq import BoQ -------------------------------------------------------------------------------- /aggregations/boq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/aggregations/boq.py -------------------------------------------------------------------------------- /backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/backbone.py -------------------------------------------------------------------------------- /configs/Bridge/Base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/configs/Bridge/Base.yaml -------------------------------------------------------------------------------- /configs/Bridge/TotalText/R_50_poly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/configs/Bridge/TotalText/R_50_poly.yaml -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datasets/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/datasets/dataset_utils.py -------------------------------------------------------------------------------- /datasets/maze_with_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/datasets/maze_with_text.py -------------------------------------------------------------------------------- /datasets/pca_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/datasets/pca_dataset.py -------------------------------------------------------------------------------- /detectron2/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.circleci/config.yml -------------------------------------------------------------------------------- /detectron2/.circleci/import-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.circleci/import-tests.sh -------------------------------------------------------------------------------- /detectron2/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.clang-format -------------------------------------------------------------------------------- /detectron2/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.flake8 -------------------------------------------------------------------------------- /detectron2/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /detectron2/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /detectron2/.github/Detectron2-Logo-Horz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/Detectron2-Logo-Horz.svg -------------------------------------------------------------------------------- /detectron2/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /detectron2/.github/ISSUE_TEMPLATE/bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/ISSUE_TEMPLATE/bugs.md -------------------------------------------------------------------------------- /detectron2/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /detectron2/.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /detectron2/.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /detectron2/.github/ISSUE_TEMPLATE/unexpected-problems-bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/ISSUE_TEMPLATE/unexpected-problems-bugs.md -------------------------------------------------------------------------------- /detectron2/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/pull_request_template.md -------------------------------------------------------------------------------- /detectron2/.github/workflows/check-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/workflows/check-template.yml -------------------------------------------------------------------------------- /detectron2/.github/workflows/levenshtein.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/workflows/levenshtein.js -------------------------------------------------------------------------------- /detectron2/.github/workflows/needs-reply.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/workflows/needs-reply.yml -------------------------------------------------------------------------------- /detectron2/.github/workflows/remove-needs-reply.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/workflows/remove-needs-reply.yml -------------------------------------------------------------------------------- /detectron2/.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /detectron2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/.gitignore -------------------------------------------------------------------------------- /detectron2/GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/GETTING_STARTED.md -------------------------------------------------------------------------------- /detectron2/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/INSTALL.md -------------------------------------------------------------------------------- /detectron2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/LICENSE -------------------------------------------------------------------------------- /detectron2/MODEL_ZOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/MODEL_ZOO.md -------------------------------------------------------------------------------- /detectron2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/README.md -------------------------------------------------------------------------------- /detectron2/configs/Base-RCNN-C4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Base-RCNN-C4.yaml -------------------------------------------------------------------------------- /detectron2/configs/Base-RCNN-DilatedC5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Base-RCNN-DilatedC5.yaml -------------------------------------------------------------------------------- /detectron2/configs/Base-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Base-RCNN-FPN.yaml -------------------------------------------------------------------------------- /detectron2/configs/Base-RetinaNet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Base-RetinaNet.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/fast_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/fast_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/faster_rcnn_R_101_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/faster_rcnn_R_101_C4_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/faster_rcnn_R_101_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/faster_rcnn_R_101_DC5_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/faster_rcnn_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/faster_rcnn_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/faster_rcnn_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/faster_rcnn_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/faster_rcnn_R_50_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/faster_rcnn_R_50_C4_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/faster_rcnn_R_50_DC5_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/faster_rcnn_R_50_DC5_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/faster_rcnn_R_50_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/faster_rcnn_R_50_DC5_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/faster_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/faster_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/faster_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/faster_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/faster_rcnn_X_101_32x8d_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/faster_rcnn_X_101_32x8d_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/fcos_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/fcos_R_50_FPN_1x.py -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/retinanet_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/retinanet_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/retinanet_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/retinanet_R_50_FPN_1x.py -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/retinanet_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/retinanet_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/retinanet_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/retinanet_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/rpn_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/rpn_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Detection/rpn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Detection/rpn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_C4_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_DC5_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.py -------------------------------------------------------------------------------- /detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.py -------------------------------------------------------------------------------- /detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Keypoints/Base-Keypoint-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Keypoints/Base-Keypoint-RCNN-FPN.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.py -------------------------------------------------------------------------------- /detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-Keypoints/keypoint_rcnn_X_101_32x8d_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-Keypoints/keypoint_rcnn_X_101_32x8d_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-PanopticSegmentation/Base-Panoptic-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-PanopticSegmentation/Base-Panoptic-FPN.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_101_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_101_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.py -------------------------------------------------------------------------------- /detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/Cityscapes/mask_rcnn_R_50_FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Cityscapes/mask_rcnn_R_50_FPN.yaml -------------------------------------------------------------------------------- /detectron2/configs/Detectron1-Comparisons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Detectron1-Comparisons/README.md -------------------------------------------------------------------------------- /detectron2/configs/Detectron1-Comparisons/keypoint_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Detectron1-Comparisons/keypoint_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/Detectron1-Comparisons/mask_rcnn_R_50_FPN_noaug_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Detectron1-Comparisons/mask_rcnn_R_50_FPN_noaug_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/LVISv1-InstanceSegmentation/mask_rcnn_R_101_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/LVISv1-InstanceSegmentation/mask_rcnn_R_101_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/LVISv1-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/LVISv1-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/cascade_mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/cascade_mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/cascade_mask_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/cascade_mask_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/mask_rcnn_R_50_FPN_1x_cls_agnostic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/mask_rcnn_R_50_FPN_1x_cls_agnostic.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/mask_rcnn_R_50_FPN_1x_dconv_c3-c5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/mask_rcnn_R_50_FPN_1x_dconv_c3-c5.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/mask_rcnn_R_50_FPN_3x_dconv_c3-c5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/mask_rcnn_R_50_FPN_3x_dconv_c3-c5.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/mask_rcnn_R_50_FPN_3x_gn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/mask_rcnn_R_50_FPN_3x_gn.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/mask_rcnn_R_50_FPN_3x_syncbn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/mask_rcnn_R_50_FPN_3x_syncbn.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/mmdet_mask_rcnn_R_50_FPN_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/mmdet_mask_rcnn_R_50_FPN_1x.py -------------------------------------------------------------------------------- /detectron2/configs/Misc/panoptic_fpn_R_101_dconv_cascade_gn_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/panoptic_fpn_R_101_dconv_cascade_gn_3x.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/scratch_mask_rcnn_R_50_FPN_3x_gn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/scratch_mask_rcnn_R_50_FPN_3x_gn.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_gn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_gn.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_syncbn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_syncbn.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/semantic_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/semantic_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/configs/Misc/torchvision_imagenet_R_50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/Misc/torchvision_imagenet_R_50.py -------------------------------------------------------------------------------- /detectron2/configs/PascalVOC-Detection/faster_rcnn_R_50_C4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/PascalVOC-Detection/faster_rcnn_R_50_C4.yaml -------------------------------------------------------------------------------- /detectron2/configs/PascalVOC-Detection/faster_rcnn_R_50_FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/PascalVOC-Detection/faster_rcnn_R_50_FPN.yaml -------------------------------------------------------------------------------- /detectron2/configs/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/README.md -------------------------------------------------------------------------------- /detectron2/configs/common/coco_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/coco_schedule.py -------------------------------------------------------------------------------- /detectron2/configs/common/data/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/data/coco.py -------------------------------------------------------------------------------- /detectron2/configs/common/data/coco_keypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/data/coco_keypoint.py -------------------------------------------------------------------------------- /detectron2/configs/common/data/coco_panoptic_separated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/data/coco_panoptic_separated.py -------------------------------------------------------------------------------- /detectron2/configs/common/data/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/data/constants.py -------------------------------------------------------------------------------- /detectron2/configs/common/models/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/models/cascade_rcnn.py -------------------------------------------------------------------------------- /detectron2/configs/common/models/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/models/fcos.py -------------------------------------------------------------------------------- /detectron2/configs/common/models/keypoint_rcnn_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/models/keypoint_rcnn_fpn.py -------------------------------------------------------------------------------- /detectron2/configs/common/models/mask_rcnn_c4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/models/mask_rcnn_c4.py -------------------------------------------------------------------------------- /detectron2/configs/common/models/mask_rcnn_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/models/mask_rcnn_fpn.py -------------------------------------------------------------------------------- /detectron2/configs/common/models/mask_rcnn_vitdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/models/mask_rcnn_vitdet.py -------------------------------------------------------------------------------- /detectron2/configs/common/models/panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/models/panoptic_fpn.py -------------------------------------------------------------------------------- /detectron2/configs/common/models/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/models/retinanet.py -------------------------------------------------------------------------------- /detectron2/configs/common/optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/optim.py -------------------------------------------------------------------------------- /detectron2/configs/common/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/common/train.py -------------------------------------------------------------------------------- /detectron2/configs/new_baselines/mask_rcnn_R_101_FPN_100ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/new_baselines/mask_rcnn_R_101_FPN_100ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/configs/new_baselines/mask_rcnn_R_101_FPN_200ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/new_baselines/mask_rcnn_R_101_FPN_200ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/configs/new_baselines/mask_rcnn_R_101_FPN_400ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/new_baselines/mask_rcnn_R_101_FPN_400ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/configs/new_baselines/mask_rcnn_R_50_FPN_100ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/new_baselines/mask_rcnn_R_50_FPN_100ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/configs/new_baselines/mask_rcnn_R_50_FPN_200ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/new_baselines/mask_rcnn_R_50_FPN_200ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/configs/new_baselines/mask_rcnn_R_50_FPN_400ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/new_baselines/mask_rcnn_R_50_FPN_400ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/configs/new_baselines/mask_rcnn_R_50_FPN_50ep_LSJ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/new_baselines/mask_rcnn_R_50_FPN_50ep_LSJ.py -------------------------------------------------------------------------------- /detectron2/configs/quick_schedules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/quick_schedules/README.md -------------------------------------------------------------------------------- /detectron2/configs/quick_schedules/fast_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/quick_schedules/fast_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/configs/quick_schedules/mask_rcnn_R_50_C4_GCV_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/quick_schedules/mask_rcnn_R_50_C4_GCV_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/configs/quick_schedules/mask_rcnn_R_50_C4_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/quick_schedules/mask_rcnn_R_50_C4_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/configs/quick_schedules/mask_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/quick_schedules/mask_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/configs/quick_schedules/panoptic_fpn_R_50_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/quick_schedules/panoptic_fpn_R_50_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/configs/quick_schedules/retinanet_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/quick_schedules/retinanet_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/configs/quick_schedules/rpn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/quick_schedules/rpn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /detectron2/configs/quick_schedules/rpn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/quick_schedules/rpn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/configs/quick_schedules/semantic_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/configs/quick_schedules/semantic_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /detectron2/datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/datasets/README.md -------------------------------------------------------------------------------- /detectron2/datasets/prepare_ade20k_sem_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/datasets/prepare_ade20k_sem_seg.py -------------------------------------------------------------------------------- /detectron2/datasets/prepare_cocofied_lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/datasets/prepare_cocofied_lvis.py -------------------------------------------------------------------------------- /detectron2/datasets/prepare_for_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/datasets/prepare_for_tests.sh -------------------------------------------------------------------------------- /detectron2/datasets/prepare_panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/datasets/prepare_panoptic_fpn.py -------------------------------------------------------------------------------- /detectron2/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/demo/README.md -------------------------------------------------------------------------------- /detectron2/demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/demo/demo.py -------------------------------------------------------------------------------- /detectron2/demo/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/demo/predictor.py -------------------------------------------------------------------------------- /detectron2/detectron2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/checkpoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/checkpoint/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/checkpoint/c2_model_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/checkpoint/c2_model_loading.py -------------------------------------------------------------------------------- /detectron2/detectron2/checkpoint/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/checkpoint/catalog.py -------------------------------------------------------------------------------- /detectron2/detectron2/checkpoint/detection_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/checkpoint/detection_checkpoint.py -------------------------------------------------------------------------------- /detectron2/detectron2/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/config/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/config/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/config/compat.py -------------------------------------------------------------------------------- /detectron2/detectron2/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/config/config.py -------------------------------------------------------------------------------- /detectron2/detectron2/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/config/defaults.py -------------------------------------------------------------------------------- /detectron2/detectron2/config/instantiate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/config/instantiate.py -------------------------------------------------------------------------------- /detectron2/detectron2/config/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/config/lazy.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/benchmark.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/build.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/catalog.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/common.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/dataset_mapper.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/README.md -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/builtin.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/builtin_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/builtin_meta.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/cityscapes.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/cityscapes_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/cityscapes_panoptic.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/coco.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/lvis.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/lvis_v0_5_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/lvis_v0_5_categories.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/lvis_v1_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/lvis_v1_categories.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/lvis_v1_category_image_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/lvis_v1_category_image_count.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/pascal_voc.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/datasets/register_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/datasets/register_coco.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/detection_utils.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/samplers/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/samplers/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/samplers/distributed_sampler.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/samplers/grouped_batch_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/samplers/grouped_batch_sampler.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/transforms/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/transforms/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/transforms/augmentation.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/transforms/augmentation_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/transforms/augmentation_impl.py -------------------------------------------------------------------------------- /detectron2/detectron2/data/transforms/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/data/transforms/transform.py -------------------------------------------------------------------------------- /detectron2/detectron2/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/engine/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/engine/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/engine/defaults.py -------------------------------------------------------------------------------- /detectron2/detectron2/engine/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/engine/hooks.py -------------------------------------------------------------------------------- /detectron2/detectron2/engine/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/engine/launch.py -------------------------------------------------------------------------------- /detectron2/detectron2/engine/train_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/engine/train_loop.py -------------------------------------------------------------------------------- /detectron2/detectron2/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/evaluation/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/evaluation/cityscapes_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/evaluation/cityscapes_evaluation.py -------------------------------------------------------------------------------- /detectron2/detectron2/evaluation/coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/evaluation/coco_evaluation.py -------------------------------------------------------------------------------- /detectron2/detectron2/evaluation/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/evaluation/evaluator.py -------------------------------------------------------------------------------- /detectron2/detectron2/evaluation/fast_eval_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/evaluation/fast_eval_api.py -------------------------------------------------------------------------------- /detectron2/detectron2/evaluation/lvis_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/evaluation/lvis_evaluation.py -------------------------------------------------------------------------------- /detectron2/detectron2/evaluation/panoptic_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/evaluation/panoptic_evaluation.py -------------------------------------------------------------------------------- /detectron2/detectron2/evaluation/pascal_voc_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/evaluation/pascal_voc_evaluation.py -------------------------------------------------------------------------------- /detectron2/detectron2/evaluation/rotated_coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/evaluation/rotated_coco_evaluation.py -------------------------------------------------------------------------------- /detectron2/detectron2/evaluation/sem_seg_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/evaluation/sem_seg_evaluation.py -------------------------------------------------------------------------------- /detectron2/detectron2/evaluation/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/evaluation/testing.py -------------------------------------------------------------------------------- /detectron2/detectron2/export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/export/README.md -------------------------------------------------------------------------------- /detectron2/detectron2/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/export/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/export/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/export/api.py -------------------------------------------------------------------------------- /detectron2/detectron2/export/c10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/export/c10.py -------------------------------------------------------------------------------- /detectron2/detectron2/export/caffe2_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/export/caffe2_export.py -------------------------------------------------------------------------------- /detectron2/detectron2/export/caffe2_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/export/caffe2_inference.py -------------------------------------------------------------------------------- /detectron2/detectron2/export/caffe2_modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/export/caffe2_modeling.py -------------------------------------------------------------------------------- /detectron2/detectron2/export/caffe2_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/export/caffe2_patch.py -------------------------------------------------------------------------------- /detectron2/detectron2/export/flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/export/flatten.py -------------------------------------------------------------------------------- /detectron2/detectron2/export/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/export/shared.py -------------------------------------------------------------------------------- /detectron2/detectron2/export/torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/export/torchscript.py -------------------------------------------------------------------------------- /detectron2/detectron2/export/torchscript_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/export/torchscript_patch.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/aspp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/aspp.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/batch_norm.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/blocks.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/README.md -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/ROIAlignRotated/ROIAlignRotated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/ROIAlignRotated/ROIAlignRotated.h -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/ROIAlignRotated/ROIAlignRotated_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/ROIAlignRotated/ROIAlignRotated_cpu.cpp -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/ROIAlignRotated/ROIAlignRotated_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/ROIAlignRotated/ROIAlignRotated_cuda.cu -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated.h -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated_cpu.cpp -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated_cuda.cu -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/box_iou_rotated/box_iou_rotated_utils.h -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/cocoeval/cocoeval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/cocoeval/cocoeval.cpp -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/cocoeval/cocoeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/cocoeval/cocoeval.h -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/cuda_version.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/cuda_version.cu -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/deformable/deform_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/deformable/deform_conv.h -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/deformable/deform_conv_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/deformable/deform_conv_cuda.cu -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/deformable/deform_conv_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/deformable/deform_conv_cuda_kernel.cu -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/nms_rotated/nms_rotated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/nms_rotated/nms_rotated.h -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/nms_rotated/nms_rotated_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/nms_rotated/nms_rotated_cpu.cpp -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/nms_rotated/nms_rotated_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/nms_rotated/nms_rotated_cuda.cu -------------------------------------------------------------------------------- /detectron2/detectron2/layers/csrc/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/csrc/vision.cpp -------------------------------------------------------------------------------- /detectron2/detectron2/layers/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/deform_conv.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/losses.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/mask_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/mask_ops.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/nms.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/roi_align.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/roi_align_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/roi_align_rotated.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/rotated_boxes.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/shape_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/shape_spec.py -------------------------------------------------------------------------------- /detectron2/detectron2/layers/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/layers/wrappers.py -------------------------------------------------------------------------------- /detectron2/detectron2/model_zoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/model_zoo/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/model_zoo/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/model_zoo/model_zoo.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/anchor_generator.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/backbone/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/backbone/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/backbone/backbone.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/backbone/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/backbone/build.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/backbone/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/backbone/fpn.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/backbone/mvit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/backbone/mvit.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/backbone/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/backbone/regnet.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/backbone/resnet.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/backbone/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/backbone/swin.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/backbone/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/backbone/utils.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/backbone/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/backbone/vit.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/box_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/box_regression.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/matcher.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/meta_arch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/meta_arch/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/meta_arch/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/meta_arch/build.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/meta_arch/dense_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/meta_arch/dense_detector.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/meta_arch/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/meta_arch/fcos.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/meta_arch/panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/meta_arch/panoptic_fpn.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/meta_arch/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/meta_arch/rcnn.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/meta_arch/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/meta_arch/retinanet.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/meta_arch/semantic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/meta_arch/semantic_seg.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/mmdet_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/mmdet_wrapper.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/poolers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/poolers.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/postprocessing.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/proposal_generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/proposal_generator/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/proposal_generator/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/proposal_generator/build.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/proposal_generator/proposal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/proposal_generator/proposal_utils.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/proposal_generator/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/proposal_generator/rpn.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/proposal_generator/rrpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/proposal_generator/rrpn.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/roi_heads/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/roi_heads/box_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/roi_heads/box_head.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/roi_heads/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/roi_heads/cascade_rcnn.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/roi_heads/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/roi_heads/fast_rcnn.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/roi_heads/keypoint_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/roi_heads/keypoint_head.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/roi_heads/mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/roi_heads/mask_head.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/roi_heads/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/roi_heads/roi_heads.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/roi_heads/rotated_fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/roi_heads/rotated_fast_rcnn.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/sampling.py -------------------------------------------------------------------------------- /detectron2/detectron2/modeling/test_time_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/modeling/test_time_augmentation.py -------------------------------------------------------------------------------- /detectron2/detectron2/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/projects/README.md -------------------------------------------------------------------------------- /detectron2/detectron2/projects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/projects/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/solver/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/solver/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/solver/build.py -------------------------------------------------------------------------------- /detectron2/detectron2/solver/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/solver/lr_scheduler.py -------------------------------------------------------------------------------- /detectron2/detectron2/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/structures/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/structures/boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/structures/boxes.py -------------------------------------------------------------------------------- /detectron2/detectron2/structures/image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/structures/image_list.py -------------------------------------------------------------------------------- /detectron2/detectron2/structures/instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/structures/instances.py -------------------------------------------------------------------------------- /detectron2/detectron2/structures/keypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/structures/keypoints.py -------------------------------------------------------------------------------- /detectron2/detectron2/structures/masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/structures/masks.py -------------------------------------------------------------------------------- /detectron2/detectron2/structures/rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/structures/rotated_boxes.py -------------------------------------------------------------------------------- /detectron2/detectron2/tracking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/tracking/__init__.py -------------------------------------------------------------------------------- /detectron2/detectron2/tracking/base_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/tracking/base_tracker.py -------------------------------------------------------------------------------- /detectron2/detectron2/tracking/bbox_iou_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/tracking/bbox_iou_tracker.py -------------------------------------------------------------------------------- /detectron2/detectron2/tracking/hungarian_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/tracking/hungarian_tracker.py -------------------------------------------------------------------------------- /detectron2/detectron2/tracking/iou_weighted_hungarian_bbox_iou_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/tracking/iou_weighted_hungarian_bbox_iou_tracker.py -------------------------------------------------------------------------------- /detectron2/detectron2/tracking/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/tracking/utils.py -------------------------------------------------------------------------------- /detectron2/detectron2/tracking/vanilla_hungarian_bbox_iou_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/tracking/vanilla_hungarian_bbox_iou_tracker.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/README.md -------------------------------------------------------------------------------- /detectron2/detectron2/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /detectron2/detectron2/utils/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/analysis.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/collect_env.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/colormap.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/comm.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/develop.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/env.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/events.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/file_io.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/logger.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/memory.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/registry.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/serialize.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/testing.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/tracing.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/video_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/video_visualizer.py -------------------------------------------------------------------------------- /detectron2/detectron2/utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/detectron2/utils/visualizer.py -------------------------------------------------------------------------------- /detectron2/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/dev/README.md -------------------------------------------------------------------------------- /detectron2/dev/linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/dev/linter.sh -------------------------------------------------------------------------------- /detectron2/dev/packaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/dev/packaging/README.md -------------------------------------------------------------------------------- /detectron2/dev/packaging/build_all_wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/dev/packaging/build_all_wheels.sh -------------------------------------------------------------------------------- /detectron2/dev/packaging/build_wheel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/dev/packaging/build_wheel.sh -------------------------------------------------------------------------------- /detectron2/dev/packaging/gen_install_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/dev/packaging/gen_install_table.py -------------------------------------------------------------------------------- /detectron2/dev/packaging/gen_wheel_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/dev/packaging/gen_wheel_index.sh -------------------------------------------------------------------------------- /detectron2/dev/packaging/pkg_helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/dev/packaging/pkg_helpers.bash -------------------------------------------------------------------------------- /detectron2/dev/parse_results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/dev/parse_results.sh -------------------------------------------------------------------------------- /detectron2/dev/run_inference_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/dev/run_inference_tests.sh -------------------------------------------------------------------------------- /detectron2/dev/run_instant_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/dev/run_instant_tests.sh -------------------------------------------------------------------------------- /detectron2/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docker/Dockerfile -------------------------------------------------------------------------------- /detectron2/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docker/README.md -------------------------------------------------------------------------------- /detectron2/docker/deploy.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docker/deploy.Dockerfile -------------------------------------------------------------------------------- /detectron2/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docker/docker-compose.yml -------------------------------------------------------------------------------- /detectron2/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /detectron2/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/Makefile -------------------------------------------------------------------------------- /detectron2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/README.md -------------------------------------------------------------------------------- /detectron2/docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/_static/css/custom.css -------------------------------------------------------------------------------- /detectron2/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/conf.py -------------------------------------------------------------------------------- /detectron2/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/index.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/checkpoint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/checkpoint.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/config.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/data.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/data_transforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/data_transforms.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/engine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/engine.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/evaluation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/evaluation.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/export.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/export.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/fvcore.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/fvcore.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/index.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/layers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/layers.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/model_zoo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/model_zoo.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/modeling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/modeling.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/solver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/solver.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/structures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/structures.rst -------------------------------------------------------------------------------- /detectron2/docs/modules/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/modules/utils.rst -------------------------------------------------------------------------------- /detectron2/docs/notes/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/notes/benchmarks.md -------------------------------------------------------------------------------- /detectron2/docs/notes/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/notes/changelog.md -------------------------------------------------------------------------------- /detectron2/docs/notes/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/notes/compatibility.md -------------------------------------------------------------------------------- /detectron2/docs/notes/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/notes/contributing.md -------------------------------------------------------------------------------- /detectron2/docs/notes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/notes/index.rst -------------------------------------------------------------------------------- /detectron2/docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/requirements.txt -------------------------------------------------------------------------------- /detectron2/docs/tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/README.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/augmentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/augmentation.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/builtin_datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/builtin_datasets.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/configs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/configs.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/data_loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/data_loading.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/datasets.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/deployment.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/evaluation.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/extend.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/getting_started.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/index.rst -------------------------------------------------------------------------------- /detectron2/docs/tutorials/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/install.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/lazyconfigs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/lazyconfigs.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/models.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/training.md -------------------------------------------------------------------------------- /detectron2/docs/tutorials/write-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/docs/tutorials/write-models.md -------------------------------------------------------------------------------- /detectron2/projects/DeepLab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DeepLab/README.md -------------------------------------------------------------------------------- /detectron2/projects/DeepLab/deeplab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DeepLab/deeplab/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DeepLab/deeplab/build_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DeepLab/deeplab/build_solver.py -------------------------------------------------------------------------------- /detectron2/projects/DeepLab/deeplab/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DeepLab/deeplab/config.py -------------------------------------------------------------------------------- /detectron2/projects/DeepLab/deeplab/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DeepLab/deeplab/loss.py -------------------------------------------------------------------------------- /detectron2/projects/DeepLab/deeplab/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DeepLab/deeplab/lr_scheduler.py -------------------------------------------------------------------------------- /detectron2/projects/DeepLab/deeplab/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DeepLab/deeplab/resnet.py -------------------------------------------------------------------------------- /detectron2/projects/DeepLab/deeplab/semantic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DeepLab/deeplab/semantic_seg.py -------------------------------------------------------------------------------- /detectron2/projects/DeepLab/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DeepLab/train_net.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/README.md -------------------------------------------------------------------------------- /detectron2/projects/DensePose/apply_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/apply_net.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/configs/Base-DensePose-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/configs/Base-DensePose-RCNN-FPN.yaml -------------------------------------------------------------------------------- /detectron2/projects/DensePose/configs/cse/Base-DensePose-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/configs/cse/Base-DensePose-RCNN-FPN.yaml -------------------------------------------------------------------------------- /detectron2/projects/DensePose/configs/cse/densepose_rcnn_R_50_FPN_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/configs/cse/densepose_rcnn_R_50_FPN_s1x.yaml -------------------------------------------------------------------------------- /detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_DL_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_DL_s1x.yaml -------------------------------------------------------------------------------- /detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_s1x.yaml -------------------------------------------------------------------------------- /detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_DL_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_DL_s1x.yaml -------------------------------------------------------------------------------- /detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_WC1_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_WC1_s1x.yaml -------------------------------------------------------------------------------- /detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_WC2_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_WC2_s1x.yaml -------------------------------------------------------------------------------- /detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_s1x.yaml -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/config.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/converters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/converters/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/converters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/converters/base.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/converters/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/converters/builtin.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/converters/chart_output_hflip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/converters/chart_output_hflip.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/converters/hflip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/converters/hflip.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/converters/segm_to_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/converters/segm_to_mask.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/converters/to_chart_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/converters/to_chart_result.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/converters/to_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/converters/to_mask.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/build.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/combined_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/combined_loader.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/dataset_mapper.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/datasets/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/datasets/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/datasets/builtin.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/datasets/chimpnsee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/datasets/chimpnsee.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/datasets/coco.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/datasets/dataset_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/datasets/dataset_type.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/datasets/lvis.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/image_list_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/image_list_dataset.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/inference_based_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/inference_based_loader.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/meshes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/meshes/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/meshes/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/meshes/builtin.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/meshes/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/meshes/catalog.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/samplers/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/samplers/densepose_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/samplers/densepose_base.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/transform/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/transform/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/transform/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/transform/image.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/utils.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/video/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/video/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/data/video/frame_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/data/video/frame_selector.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/engine/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/engine/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/engine/trainer.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/evaluation/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/evaluation/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/evaluation/evaluator.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/evaluation/tensor_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/evaluation/tensor_storage.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/build.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/confidence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/confidence.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/cse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/cse/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/cse/embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/cse/embedder.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/cse/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/cse/utils.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/densepose_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/densepose_checkpoint.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/filter.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/hrfpn.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/hrnet.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/inference.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/losses/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/losses/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/losses/chart.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/losses/cse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/losses/cse.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/losses/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/losses/embed.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/losses/embed_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/losses/embed_utils.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/losses/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/losses/mask.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/losses/mask_or_segm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/losses/mask_or_segm.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/losses/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/losses/registry.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/losses/segm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/losses/segm.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/losses/soft_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/losses/soft_embed.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/losses/utils.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/predictors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/predictors/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/predictors/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/predictors/chart.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/predictors/cse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/predictors/cse.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/predictors/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/predictors/registry.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/roi_heads/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/roi_heads/deeplab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/roi_heads/deeplab.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/roi_heads/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/roi_heads/registry.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/roi_heads/roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/roi_heads/roi_head.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/roi_heads/v1convx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/roi_heads/v1convx.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/modeling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/modeling/utils.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/structures/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/structures/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/structures/chart.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/structures/chart_confidence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/structures/chart_confidence.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/structures/chart_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/structures/chart_result.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/structures/cse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/structures/cse.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/structures/cse_confidence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/structures/cse_confidence.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/structures/data_relative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/structures/data_relative.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/structures/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/structures/list.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/structures/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/structures/mesh.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/structures/transform_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/structures/transform_data.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/utils/dbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/utils/dbhelper.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/utils/logger.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/densepose/utils/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/densepose/utils/transform.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/dev/README.md -------------------------------------------------------------------------------- /detectron2/projects/DensePose/dev/run_inference_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/dev/run_inference_tests.sh -------------------------------------------------------------------------------- /detectron2/projects/DensePose/dev/run_instant_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/dev/run_instant_tests.sh -------------------------------------------------------------------------------- /detectron2/projects/DensePose/doc/BOOTSTRAPPING_PIPELINE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/doc/BOOTSTRAPPING_PIPELINE.md -------------------------------------------------------------------------------- /detectron2/projects/DensePose/doc/DENSEPOSE_CSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/doc/DENSEPOSE_CSE.md -------------------------------------------------------------------------------- /detectron2/projects/DensePose/doc/DENSEPOSE_DATASETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/doc/DENSEPOSE_DATASETS.md -------------------------------------------------------------------------------- /detectron2/projects/DensePose/doc/DENSEPOSE_IUV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/doc/DENSEPOSE_IUV.md -------------------------------------------------------------------------------- /detectron2/projects/DensePose/doc/GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/doc/GETTING_STARTED.md -------------------------------------------------------------------------------- /detectron2/projects/DensePose/doc/RELEASE_2020_04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/doc/RELEASE_2020_04.md -------------------------------------------------------------------------------- /detectron2/projects/DensePose/doc/RELEASE_2021_03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/doc/RELEASE_2021_03.md -------------------------------------------------------------------------------- /detectron2/projects/DensePose/doc/RELEASE_2021_06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/doc/RELEASE_2021_06.md -------------------------------------------------------------------------------- /detectron2/projects/DensePose/doc/TOOL_APPLY_NET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/doc/TOOL_APPLY_NET.md -------------------------------------------------------------------------------- /detectron2/projects/DensePose/doc/TOOL_QUERY_DB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/doc/TOOL_QUERY_DB.md -------------------------------------------------------------------------------- /detectron2/projects/DensePose/query_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/query_db.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/setup.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/tests/common.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/tests/test_combine_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/tests/test_combine_data_loader.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/tests/test_cse_annotations_accumulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/tests/test_cse_annotations_accumulator.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/tests/test_dataset_loaded_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/tests/test_dataset_loaded_annotations.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/tests/test_frame_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/tests/test_frame_selector.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/tests/test_image_list_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/tests/test_image_list_dataset.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/tests/test_image_resize_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/tests/test_image_resize_transform.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/tests/test_model_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/tests/test_model_e2e.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/tests/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/tests/test_setup.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/tests/test_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/tests/test_structures.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/tests/test_tensor_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/tests/test_tensor_storage.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/tests/test_video_keyframe_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/tests/test_video_keyframe_dataset.py -------------------------------------------------------------------------------- /detectron2/projects/DensePose/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/DensePose/train_net.py -------------------------------------------------------------------------------- /detectron2/projects/MViTv2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/MViTv2/README.md -------------------------------------------------------------------------------- /detectron2/projects/MViTv2/configs/cascade_mask_rcnn_mvitv2_b_3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/MViTv2/configs/cascade_mask_rcnn_mvitv2_b_3x.py -------------------------------------------------------------------------------- /detectron2/projects/MViTv2/configs/cascade_mask_rcnn_mvitv2_s_3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/MViTv2/configs/cascade_mask_rcnn_mvitv2_s_3x.py -------------------------------------------------------------------------------- /detectron2/projects/MViTv2/configs/cascade_mask_rcnn_mvitv2_t_3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/MViTv2/configs/cascade_mask_rcnn_mvitv2_t_3x.py -------------------------------------------------------------------------------- /detectron2/projects/MViTv2/configs/common/coco_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/MViTv2/configs/common/coco_loader.py -------------------------------------------------------------------------------- /detectron2/projects/MViTv2/configs/common/coco_loader_lsj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/MViTv2/configs/common/coco_loader_lsj.py -------------------------------------------------------------------------------- /detectron2/projects/MViTv2/configs/mask_rcnn_mvitv2_t_3x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/MViTv2/configs/mask_rcnn_mvitv2_t_3x.py -------------------------------------------------------------------------------- /detectron2/projects/Panoptic-DeepLab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/Panoptic-DeepLab/README.md -------------------------------------------------------------------------------- /detectron2/projects/Panoptic-DeepLab/panoptic_deeplab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/Panoptic-DeepLab/panoptic_deeplab/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/Panoptic-DeepLab/panoptic_deeplab/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/Panoptic-DeepLab/panoptic_deeplab/config.py -------------------------------------------------------------------------------- /detectron2/projects/Panoptic-DeepLab/panoptic_deeplab/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/Panoptic-DeepLab/panoptic_deeplab/dataset_mapper.py -------------------------------------------------------------------------------- /detectron2/projects/Panoptic-DeepLab/panoptic_deeplab/panoptic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/Panoptic-DeepLab/panoptic_deeplab/panoptic_seg.py -------------------------------------------------------------------------------- /detectron2/projects/Panoptic-DeepLab/panoptic_deeplab/post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/Panoptic-DeepLab/panoptic_deeplab/post_processing.py -------------------------------------------------------------------------------- /detectron2/projects/Panoptic-DeepLab/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/Panoptic-DeepLab/train_net.py -------------------------------------------------------------------------------- /detectron2/projects/PointRend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointRend/README.md -------------------------------------------------------------------------------- /detectron2/projects/PointRend/point_rend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointRend/point_rend/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/PointRend/point_rend/color_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointRend/point_rend/color_augmentation.py -------------------------------------------------------------------------------- /detectron2/projects/PointRend/point_rend/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointRend/point_rend/config.py -------------------------------------------------------------------------------- /detectron2/projects/PointRend/point_rend/mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointRend/point_rend/mask_head.py -------------------------------------------------------------------------------- /detectron2/projects/PointRend/point_rend/point_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointRend/point_rend/point_features.py -------------------------------------------------------------------------------- /detectron2/projects/PointRend/point_rend/point_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointRend/point_rend/point_head.py -------------------------------------------------------------------------------- /detectron2/projects/PointRend/point_rend/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointRend/point_rend/roi_heads.py -------------------------------------------------------------------------------- /detectron2/projects/PointRend/point_rend/semantic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointRend/point_rend/semantic_seg.py -------------------------------------------------------------------------------- /detectron2/projects/PointRend/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointRend/train_net.py -------------------------------------------------------------------------------- /detectron2/projects/PointSup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointSup/README.md -------------------------------------------------------------------------------- /detectron2/projects/PointSup/configs/mask_rcnn_R_50_FPN_3x_point_sup_point_aug_coco.yaml: -------------------------------------------------------------------------------- 1 | _BASE_: "mask_rcnn_R_50_FPN_3x_point_sup_coco.yaml" 2 | INPUT: 3 | SAMPLE_POINTS: 5 4 | -------------------------------------------------------------------------------- /detectron2/projects/PointSup/point_sup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointSup/point_sup/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/PointSup/point_sup/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointSup/point_sup/config.py -------------------------------------------------------------------------------- /detectron2/projects/PointSup/point_sup/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointSup/point_sup/dataset_mapper.py -------------------------------------------------------------------------------- /detectron2/projects/PointSup/point_sup/detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointSup/point_sup/detection_utils.py -------------------------------------------------------------------------------- /detectron2/projects/PointSup/point_sup/mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointSup/point_sup/mask_head.py -------------------------------------------------------------------------------- /detectron2/projects/PointSup/point_sup/point_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointSup/point_sup/point_utils.py -------------------------------------------------------------------------------- /detectron2/projects/PointSup/point_sup/register_point_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointSup/point_sup/register_point_annotations.py -------------------------------------------------------------------------------- /detectron2/projects/PointSup/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/PointSup/train_net.py -------------------------------------------------------------------------------- /detectron2/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/README.md -------------------------------------------------------------------------------- /detectron2/projects/Rethinking-BatchNorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/Rethinking-BatchNorm/README.md -------------------------------------------------------------------------------- /detectron2/projects/Rethinking-BatchNorm/configs/mask_rcnn_BNhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/Rethinking-BatchNorm/configs/mask_rcnn_BNhead.py -------------------------------------------------------------------------------- /detectron2/projects/Rethinking-BatchNorm/configs/mask_rcnn_SyncBNhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/Rethinking-BatchNorm/configs/mask_rcnn_SyncBNhead.py -------------------------------------------------------------------------------- /detectron2/projects/Rethinking-BatchNorm/configs/retinanet_SyncBNhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/Rethinking-BatchNorm/configs/retinanet_SyncBNhead.py -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/README.md -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/configs/Base-TensorMask.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/configs/Base-TensorMask.yaml -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/configs/tensormask_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/configs/tensormask_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/configs/tensormask_R_50_FPN_6x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/configs/tensormask_R_50_FPN_6x.yaml -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/setup.py -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/tensormask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/tensormask/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/tensormask/arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/tensormask/arch.py -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/tensormask/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/tensormask/config.py -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/tensormask/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/tensormask/layers/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/tensormask/layers/csrc/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/tensormask/layers/csrc/vision.cpp -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/tensormask/layers/swap_align2nat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/tensormask/layers/swap_align2nat.py -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/tests/test_swap_align2nat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/tests/test_swap_align2nat.py -------------------------------------------------------------------------------- /detectron2/projects/TensorMask/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TensorMask/train_net.py -------------------------------------------------------------------------------- /detectron2/projects/TridentNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TridentNet/README.md -------------------------------------------------------------------------------- /detectron2/projects/TridentNet/configs/Base-TridentNet-Fast-C4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TridentNet/configs/Base-TridentNet-Fast-C4.yaml -------------------------------------------------------------------------------- /detectron2/projects/TridentNet/configs/tridentnet_fast_R_101_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TridentNet/configs/tridentnet_fast_R_101_C4_3x.yaml -------------------------------------------------------------------------------- /detectron2/projects/TridentNet/configs/tridentnet_fast_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TridentNet/configs/tridentnet_fast_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /detectron2/projects/TridentNet/configs/tridentnet_fast_R_50_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TridentNet/configs/tridentnet_fast_R_50_C4_3x.yaml -------------------------------------------------------------------------------- /detectron2/projects/TridentNet/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TridentNet/train_net.py -------------------------------------------------------------------------------- /detectron2/projects/TridentNet/tridentnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TridentNet/tridentnet/__init__.py -------------------------------------------------------------------------------- /detectron2/projects/TridentNet/tridentnet/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TridentNet/tridentnet/config.py -------------------------------------------------------------------------------- /detectron2/projects/TridentNet/tridentnet/trident_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TridentNet/tridentnet/trident_backbone.py -------------------------------------------------------------------------------- /detectron2/projects/TridentNet/tridentnet/trident_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TridentNet/tridentnet/trident_conv.py -------------------------------------------------------------------------------- /detectron2/projects/TridentNet/tridentnet/trident_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TridentNet/tridentnet/trident_rcnn.py -------------------------------------------------------------------------------- /detectron2/projects/TridentNet/tridentnet/trident_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/TridentNet/tridentnet/trident_rpn.py -------------------------------------------------------------------------------- /detectron2/projects/ViTDet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/ViTDet/README.md -------------------------------------------------------------------------------- /detectron2/projects/ViTDet/configs/COCO/mask_rcnn_vitdet_b_100ep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/ViTDet/configs/COCO/mask_rcnn_vitdet_b_100ep.py -------------------------------------------------------------------------------- /detectron2/projects/ViTDet/configs/COCO/mask_rcnn_vitdet_h_75ep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/ViTDet/configs/COCO/mask_rcnn_vitdet_h_75ep.py -------------------------------------------------------------------------------- /detectron2/projects/ViTDet/configs/COCO/mask_rcnn_vitdet_l_100ep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/ViTDet/configs/COCO/mask_rcnn_vitdet_l_100ep.py -------------------------------------------------------------------------------- /detectron2/projects/ViTDet/configs/LVIS/mask_rcnn_vitdet_b_100ep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/ViTDet/configs/LVIS/mask_rcnn_vitdet_b_100ep.py -------------------------------------------------------------------------------- /detectron2/projects/ViTDet/configs/LVIS/mask_rcnn_vitdet_h_100ep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/ViTDet/configs/LVIS/mask_rcnn_vitdet_h_100ep.py -------------------------------------------------------------------------------- /detectron2/projects/ViTDet/configs/LVIS/mask_rcnn_vitdet_l_100ep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/ViTDet/configs/LVIS/mask_rcnn_vitdet_l_100ep.py -------------------------------------------------------------------------------- /detectron2/projects/ViTDet/configs/common/coco_loader_lsj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/projects/ViTDet/configs/common/coco_loader_lsj.py -------------------------------------------------------------------------------- /detectron2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/setup.cfg -------------------------------------------------------------------------------- /detectron2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/setup.py -------------------------------------------------------------------------------- /detectron2/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/README.md -------------------------------------------------------------------------------- /detectron2/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /detectron2/tests/config/dir1/bad_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/config/dir1/bad_import.py -------------------------------------------------------------------------------- /detectron2/tests/config/dir1/bad_import2.py: -------------------------------------------------------------------------------- 1 | from .does_not_exist import x 2 | -------------------------------------------------------------------------------- /detectron2/tests/config/dir1/dir1_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/config/dir1/dir1_a.py -------------------------------------------------------------------------------- /detectron2/tests/config/dir1/dir1_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/config/dir1/dir1_b.py -------------------------------------------------------------------------------- /detectron2/tests/config/dir1/load_rel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/config/dir1/load_rel.py -------------------------------------------------------------------------------- /detectron2/tests/config/root_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/config/root_cfg.py -------------------------------------------------------------------------------- /detectron2/tests/config/test_instantiate_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/config/test_instantiate_config.py -------------------------------------------------------------------------------- /detectron2/tests/config/test_lazy_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/config/test_lazy_config.py -------------------------------------------------------------------------------- /detectron2/tests/config/test_yacs_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/config/test_yacs_config.py -------------------------------------------------------------------------------- /detectron2/tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detectron2/tests/data/test_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/data/test_coco.py -------------------------------------------------------------------------------- /detectron2/tests/data/test_coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/data/test_coco_evaluation.py -------------------------------------------------------------------------------- /detectron2/tests/data/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/data/test_dataset.py -------------------------------------------------------------------------------- /detectron2/tests/data/test_detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/data/test_detection_utils.py -------------------------------------------------------------------------------- /detectron2/tests/data/test_rotation_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/data/test_rotation_transform.py -------------------------------------------------------------------------------- /detectron2/tests/data/test_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/data/test_sampler.py -------------------------------------------------------------------------------- /detectron2/tests/data/test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/data/test_transforms.py -------------------------------------------------------------------------------- /detectron2/tests/export/test_c10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/export/test_c10.py -------------------------------------------------------------------------------- /detectron2/tests/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detectron2/tests/layers/test_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/layers/test_blocks.py -------------------------------------------------------------------------------- /detectron2/tests/layers/test_deformable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/layers/test_deformable.py -------------------------------------------------------------------------------- /detectron2/tests/layers/test_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/layers/test_losses.py -------------------------------------------------------------------------------- /detectron2/tests/layers/test_mask_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/layers/test_mask_ops.py -------------------------------------------------------------------------------- /detectron2/tests/layers/test_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/layers/test_nms.py -------------------------------------------------------------------------------- /detectron2/tests/layers/test_nms_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/layers/test_nms_rotated.py -------------------------------------------------------------------------------- /detectron2/tests/layers/test_roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/layers/test_roi_align.py -------------------------------------------------------------------------------- /detectron2/tests/layers/test_roi_align_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/layers/test_roi_align_rotated.py -------------------------------------------------------------------------------- /detectron2/tests/modeling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detectron2/tests/modeling/test_anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/modeling/test_anchor_generator.py -------------------------------------------------------------------------------- /detectron2/tests/modeling/test_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/modeling/test_backbone.py -------------------------------------------------------------------------------- /detectron2/tests/modeling/test_box2box_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/modeling/test_box2box_transform.py -------------------------------------------------------------------------------- /detectron2/tests/modeling/test_fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/modeling/test_fast_rcnn.py -------------------------------------------------------------------------------- /detectron2/tests/modeling/test_matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/modeling/test_matcher.py -------------------------------------------------------------------------------- /detectron2/tests/modeling/test_mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/modeling/test_mmdet.py -------------------------------------------------------------------------------- /detectron2/tests/modeling/test_model_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/modeling/test_model_e2e.py -------------------------------------------------------------------------------- /detectron2/tests/modeling/test_roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/modeling/test_roi_heads.py -------------------------------------------------------------------------------- /detectron2/tests/modeling/test_roi_pooler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/modeling/test_roi_pooler.py -------------------------------------------------------------------------------- /detectron2/tests/modeling/test_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/modeling/test_rpn.py -------------------------------------------------------------------------------- /detectron2/tests/structures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detectron2/tests/structures/test_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/structures/test_boxes.py -------------------------------------------------------------------------------- /detectron2/tests/structures/test_imagelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/structures/test_imagelist.py -------------------------------------------------------------------------------- /detectron2/tests/structures/test_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/structures/test_instances.py -------------------------------------------------------------------------------- /detectron2/tests/structures/test_keypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/structures/test_keypoints.py -------------------------------------------------------------------------------- /detectron2/tests/structures/test_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/structures/test_masks.py -------------------------------------------------------------------------------- /detectron2/tests/structures/test_rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/structures/test_rotated_boxes.py -------------------------------------------------------------------------------- /detectron2/tests/test_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_checkpoint.py -------------------------------------------------------------------------------- /detectron2/tests/test_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_engine.py -------------------------------------------------------------------------------- /detectron2/tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_events.py -------------------------------------------------------------------------------- /detectron2/tests/test_export_caffe2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_export_caffe2.py -------------------------------------------------------------------------------- /detectron2/tests/test_export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_export_onnx.py -------------------------------------------------------------------------------- /detectron2/tests/test_export_torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_export_torchscript.py -------------------------------------------------------------------------------- /detectron2/tests/test_model_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_model_analysis.py -------------------------------------------------------------------------------- /detectron2/tests/test_model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_model_zoo.py -------------------------------------------------------------------------------- /detectron2/tests/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_packaging.py -------------------------------------------------------------------------------- /detectron2/tests/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_registry.py -------------------------------------------------------------------------------- /detectron2/tests/test_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_scheduler.py -------------------------------------------------------------------------------- /detectron2/tests/test_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_solver.py -------------------------------------------------------------------------------- /detectron2/tests/test_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/test_visualizer.py -------------------------------------------------------------------------------- /detectron2/tests/tracking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detectron2/tests/tracking/test_bbox_iou_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/tracking/test_bbox_iou_tracker.py -------------------------------------------------------------------------------- /detectron2/tests/tracking/test_hungarian_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/tracking/test_hungarian_tracker.py -------------------------------------------------------------------------------- /detectron2/tests/tracking/test_vanilla_hungarian_bbox_iou_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/tracking/test_vanilla_hungarian_bbox_iou_tracker.py -------------------------------------------------------------------------------- /detectron2/tests/utils/test_tensorboardx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tests/utils/test_tensorboardx.py -------------------------------------------------------------------------------- /detectron2/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/README.md -------------------------------------------------------------------------------- /detectron2/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detectron2/tools/analyze_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/analyze_model.py -------------------------------------------------------------------------------- /detectron2/tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/benchmark.py -------------------------------------------------------------------------------- /detectron2/tools/convert-torchvision-to-d2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/convert-torchvision-to-d2.py -------------------------------------------------------------------------------- /detectron2/tools/deploy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/deploy/CMakeLists.txt -------------------------------------------------------------------------------- /detectron2/tools/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/deploy/README.md -------------------------------------------------------------------------------- /detectron2/tools/deploy/export_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/deploy/export_model.py -------------------------------------------------------------------------------- /detectron2/tools/deploy/torchscript_mask_rcnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/deploy/torchscript_mask_rcnn.cpp -------------------------------------------------------------------------------- /detectron2/tools/lazyconfig_train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/lazyconfig_train_net.py -------------------------------------------------------------------------------- /detectron2/tools/lightning_train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/lightning_train_net.py -------------------------------------------------------------------------------- /detectron2/tools/plain_train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/plain_train_net.py -------------------------------------------------------------------------------- /detectron2/tools/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/train_net.py -------------------------------------------------------------------------------- /detectron2/tools/visualize_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/visualize_data.py -------------------------------------------------------------------------------- /detectron2/tools/visualize_json_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/detectron2/tools/visualize_json_results.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/eval.py -------------------------------------------------------------------------------- /figures/TextInPlace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/figures/TextInPlace.png -------------------------------------------------------------------------------- /network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/network.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/setup.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/utils/commons.py -------------------------------------------------------------------------------- /utils/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/utils/parser.py -------------------------------------------------------------------------------- /utils/rerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/utils/rerank.py -------------------------------------------------------------------------------- /utils/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/utils/test.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/utils/util.py -------------------------------------------------------------------------------- /utils/visualizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HqiTao/TextInPlace/HEAD/utils/visualizations.py --------------------------------------------------------------------------------