├── .gitignore ├── LICENSE ├── README.md ├── assets ├── Imagic.jpeg ├── a-painting-of-a-fire.png ├── a-photograph-of-a-fire.png ├── a-shirt-with-a-fire-printed-on-it.png ├── a-shirt-with-the-inscription-'fire'.png ├── a-watercolor-painting-of-a-fire.png ├── birdhouse.png ├── fire.png ├── gradio_variations.jpeg ├── im-vars-thin.jpg ├── im-vars.jpg ├── img-vars.jpg ├── inpainting.png ├── modelfigure.png ├── pokemontage.jpg ├── reconstruction1.png ├── reconstruction2.png ├── results.gif ├── samples │ ├── grid-0001.png │ ├── grid-0006.png │ ├── grid-0007.png │ └── grid-0008.png ├── the-earth-is-on-fire,-oil-on-canvas.png ├── txt2img-convsample.png └── txt2img-preview.png ├── configs ├── autoencoder │ ├── autoencoder_kl_16x16x16.yaml │ ├── autoencoder_kl_32x32x4.yaml │ ├── autoencoder_kl_64x64x3.yaml │ └── autoencoder_kl_8x8x64.yaml ├── latent-diffusion │ ├── celebahq-ldm-vq-4.yaml │ ├── cin-ldm-vq-f8.yaml │ ├── cin256-v2.yaml │ ├── ffhq-ldm-vq-4.yaml │ ├── lsun_bedrooms-ldm-vq-4.yaml │ ├── lsun_churches-ldm-kl-8.yaml │ └── txt2img-1p4B-eval.yaml ├── sd-finetune │ └── coco_base.yaml └── stable-diffusion │ ├── dev.yaml │ ├── dev_mn.yaml │ ├── dev_mn_dummy.yaml │ ├── inpainting │ ├── v1-edgeinpainting.yaml │ ├── v1-finetune-for-inpainting-laion-aesthetic-larger-masks-and-ucfg.yaml │ ├── v1-finetune-for-inpainting-laion-aesthetic-larger-masks.yaml │ └── v1-finetune-for-inpainting-laion-iaesthe.yaml │ ├── pokemon.yaml │ ├── sd-image-condition-attn-finetune.yaml │ ├── sd-image-condition-finetune.yaml │ ├── txt2img-1p4B-multinode-clip-encoder-high-res-512.yaml │ ├── txt2img-1p4B-multinode-clip-encoder.yaml │ ├── txt2img-1p4B-multinode-t5-encoder.yaml │ ├── txt2img-1p4B-multinode.yaml │ ├── txt2img-clip-encoder-dev.yaml │ ├── txt2img-ldm-frozen-dev.yaml │ ├── txt2img-ldm-unfrozen-dev.yaml │ ├── txt2img-ldm-vae-f8.yaml │ ├── txt2img-multinode-clip-encoder-f16-1024-laion-hr.yaml │ ├── txt2img-multinode-clip-encoder-f16-256-pretraining.yaml │ ├── txt2img-multinode-clip-encoder-f16-768-laion-hr-inference.yaml │ ├── txt2img-multinode-clip-encoder-f16-768-laion-hr.yaml │ ├── txt2img-multinode-clip-encoder-f16-768.yaml │ ├── txt2img-t5-encoder-dev.yaml │ ├── txt2img-upscale-clip-encoder-f16-1024-dev.yaml │ ├── txt2img-upscale-clip-encoder-f16-1024.yaml │ ├── txt2img-v2-clip-encoder-improved_aesthetics-256-dev.yaml │ ├── txt2img-v2-clip-encoder-improved_aesthetics-256.yaml │ ├── txt2img-v2-clip-encoder-improved_aesthetics-512-dev.yaml │ ├── txt2img-v2-clip-encoder-improved_aesthetics-512.yaml │ ├── upscaling │ └── upscale-v1-with-f16.yaml │ ├── upscaling_256.yaml │ ├── upscaling_512.yaml │ ├── v1-inference.yaml │ ├── v1-inference_ema.yaml │ ├── v1_improvedaesthetics.yaml │ ├── v1_laionhr.yaml │ ├── v2_laionhr1024.yaml │ ├── v2_laionhr1024_2.yaml │ ├── v2_pretraining.yaml │ └── v3_pretraining.yaml ├── data ├── DejaVuSans.ttf ├── captions_val2014.json ├── example_conditioning │ ├── superresolution │ │ └── sample_0.jpg │ └── text_conditional │ │ └── sample_0.txt ├── imagenet_clsidx_to_label.txt ├── imagenet_train_hr_indices.p ├── imagenet_val_hr_indices.p ├── index_synset.yaml └── inpainting_examples │ ├── 6458524847_2f4c361183_k.png │ ├── 6458524847_2f4c361183_k_mask.png │ ├── 8399166846_f6fb4e4b8e_k.png │ ├── 8399166846_f6fb4e4b8e_k_mask.png │ ├── alex-iby-G_Pk4D9rMLs.png │ ├── alex-iby-G_Pk4D9rMLs_mask.png │ ├── bench2.png │ ├── bench2_mask.png │ ├── bertrand-gabioud-CpuFzIsHYJ0.png │ ├── bertrand-gabioud-CpuFzIsHYJ0_mask.png │ ├── billow926-12-Wc-Zgx6Y.png │ ├── billow926-12-Wc-Zgx6Y_mask.png │ ├── overture-creations-5sI6fQgYIuo.png │ ├── overture-creations-5sI6fQgYIuo_mask.png │ ├── photo-1583445095369-9c651e7e5d34.png │ └── photo-1583445095369-9c651e7e5d34_mask.png ├── examples └── prior_2_sd.ipynb ├── instagen_scripts ├── demo_instagen.sh ├── finetune_sdm.sh ├── generate_base_ann.py ├── generate_base_ann.sh ├── generate_class_embedding.py ├── generate_class_embedding.sh ├── generate_image.py ├── generate_image.sh ├── generate_novel_ann.py ├── generate_novel_ann.sh ├── infer_detector.sh ├── infer_instagen.sh ├── train_detector.sh └── train_instagen.sh ├── ldm ├── data │ ├── __init__.py │ ├── base.py │ ├── coco.py │ ├── coco_crop.py │ ├── dummy.py │ ├── imagenet.py │ ├── inpainting │ │ ├── __init__.py │ │ └── synthetic_mask.py │ ├── laion.py │ ├── lsun.py │ └── simple.py ├── extras.py ├── guidance.py ├── lr_scheduler.py ├── models │ ├── autoencoder.py │ └── diffusion │ │ ├── __init__.py │ │ ├── classifier.py │ │ ├── ddim.py │ │ ├── ddpm.py │ │ ├── plms.py │ │ └── sampling_util.py ├── modules │ ├── attention.py │ ├── diffusionmodules │ │ ├── __init__.py │ │ ├── model.py │ │ ├── openaimodel.py │ │ └── util.py │ ├── distributions │ │ ├── __init__.py │ │ └── distributions.py │ ├── ema.py │ ├── encoders │ │ ├── __init__.py │ │ └── modules.py │ ├── evaluate │ │ ├── adm_evaluator.py │ │ ├── evaluate_perceptualsim.py │ │ ├── frechet_video_distance.py │ │ ├── ssim.py │ │ └── torch_frechet_video_distance.py │ ├── image_degradation │ │ ├── __init__.py │ │ ├── bsrgan.py │ │ ├── bsrgan_light.py │ │ ├── utils │ │ │ └── test.png │ │ └── utils_image.py │ ├── losses │ │ ├── __init__.py │ │ ├── contperceptual.py │ │ └── vqperceptual.py │ └── x_transformer.py ├── thirdp │ └── psp │ │ ├── helpers.py │ │ ├── id_loss.py │ │ └── model_irse.py └── util.py ├── main.py ├── mmdetection ├── .circleci │ ├── config.yml │ ├── docker │ │ └── Dockerfile │ └── test.yml ├── .dev_scripts │ ├── batch_test_list.py │ ├── batch_train_list.txt │ ├── benchmark_filter.py │ ├── benchmark_full_models.txt │ ├── benchmark_inference_fps.py │ ├── benchmark_options.py │ ├── benchmark_test.py │ ├── benchmark_test_image.py │ ├── benchmark_train.py │ ├── benchmark_train_models.txt │ ├── benchmark_valid_flops.py │ ├── check_links.py │ ├── convert_test_benchmark_script.py │ ├── convert_train_benchmark_script.py │ ├── covignore.cfg │ ├── diff_coverage_test.sh │ ├── download_checkpoints.py │ ├── gather_models.py │ ├── gather_test_benchmark_metric.py │ ├── gather_train_benchmark_metric.py │ ├── linter.sh │ ├── test_benchmark.sh │ ├── test_init_backbone.py │ └── train_benchmark.sh ├── .github │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE │ │ ├── config.yml │ │ ├── error-report.md │ │ ├── feature_request.md │ │ ├── general_questions.md │ │ └── reimplementation_questions.md │ ├── pull_request_template.md │ └── workflows │ │ └── deploy.yml ├── .gitignore ├── .owners.yml ├── .pre-commit-config-zh-cn.yaml ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CITATION.cff ├── LICENSE ├── MANIFEST.in ├── README.md ├── README_zh-CN.md ├── configs │ ├── _base_ │ │ ├── datasets │ │ │ ├── cityscapes_detection.py │ │ │ ├── cityscapes_instance.py │ │ │ ├── coco_detection.py │ │ │ ├── coco_instance.py │ │ │ ├── coco_instance_semantic.py │ │ │ ├── coco_panoptic.py │ │ │ ├── deepfashion.py │ │ │ ├── lvis_v0.5_instance.py │ │ │ ├── lvis_v1_instance.py │ │ │ ├── objects365v1_detection.py │ │ │ ├── objects365v2_detection.py │ │ │ ├── openimages_detection.py │ │ │ ├── semi_coco_detection.py │ │ │ ├── voc0712.py │ │ │ └── wider_face.py │ │ ├── default_runtime.py │ │ ├── models │ │ │ ├── cascade-mask-rcnn_r50_fpn.py │ │ │ ├── cascade-rcnn_r50_fpn.py │ │ │ ├── fast-rcnn_r50_fpn.py │ │ │ ├── faster-rcnn_r50-caffe-c4.py │ │ │ ├── faster-rcnn_r50-caffe-dc5.py │ │ │ ├── faster-rcnn_r50_fpn.py │ │ │ ├── mask-rcnn_r50-caffe-c4.py │ │ │ ├── mask-rcnn_r50_fpn.py │ │ │ ├── retinanet_r50_fpn.py │ │ │ ├── rpn_r50-caffe-c4.py │ │ │ ├── rpn_r50_fpn.py │ │ │ └── ssd300.py │ │ └── schedules │ │ │ ├── schedule_1x.py │ │ │ ├── schedule_20e.py │ │ │ └── schedule_2x.py │ ├── albu_example │ │ ├── README.md │ │ ├── mask-rcnn_r50_fpn_albu-1x_coco.py │ │ └── metafile.yml │ ├── atss │ │ ├── README.md │ │ ├── atss_r101_fpn_1x_coco.py │ │ ├── atss_r101_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── atss_r18_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── atss_r50_fpn_1x_coco.py │ │ ├── atss_r50_fpn_8xb8-amp-lsj-200e_coco.py │ │ └── metafile.yml │ ├── autoassign │ │ ├── README.md │ │ ├── autoassign_r50-caffe_fpn_1x_coco.py │ │ └── metafile.yml │ ├── boxinst │ │ ├── README.md │ │ ├── boxinst_r101_fpn_ms-90k_coco.py │ │ ├── boxinst_r50_fpn_ms-90k_coco.py │ │ └── metafile.yml │ ├── carafe │ │ ├── README.md │ │ ├── faster-rcnn_r50_fpn-carafe_1x_coco.py │ │ ├── mask-rcnn_r50_fpn-carafe_1x_coco.py │ │ └── metafile.yml │ ├── cascade_rcnn │ │ ├── README.md │ │ ├── cascade-mask-rcnn_r101-caffe_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_r101-caffe_fpn_ms-3x_coco.py │ │ ├── cascade-mask-rcnn_r101_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_r101_fpn_20e_coco.py │ │ ├── cascade-mask-rcnn_r101_fpn_ms-3x_coco.py │ │ ├── cascade-mask-rcnn_r50-caffe_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_r50-caffe_fpn_ms-3x_coco.py │ │ ├── cascade-mask-rcnn_r50_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_r50_fpn_20e_coco.py │ │ ├── cascade-mask-rcnn_r50_fpn_ms-3x_coco.py │ │ ├── cascade-mask-rcnn_x101-32x4d_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_x101-32x4d_fpn_20e_coco.py │ │ ├── cascade-mask-rcnn_x101-32x4d_fpn_ms-3x_coco.py │ │ ├── cascade-mask-rcnn_x101-32x8d_fpn_ms-3x_coco.py │ │ ├── cascade-mask-rcnn_x101-64x4d_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_x101-64x4d_fpn_20e_coco.py │ │ ├── cascade-mask-rcnn_x101-64x4d_fpn_ms-3x_coco.py │ │ ├── cascade-rcnn_r101-caffe_fpn_1x_coco.py │ │ ├── cascade-rcnn_r101_fpn_1x_coco.py │ │ ├── cascade-rcnn_r101_fpn_20e_coco.py │ │ ├── cascade-rcnn_r101_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── cascade-rcnn_r18_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── cascade-rcnn_r50-caffe_fpn_1x_coco.py │ │ ├── cascade-rcnn_r50_fpn_1x_coco.py │ │ ├── cascade-rcnn_r50_fpn_20e_coco.py │ │ ├── cascade-rcnn_r50_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── cascade-rcnn_x101-32x4d_fpn_1x_coco.py │ │ ├── cascade-rcnn_x101-32x4d_fpn_20e_coco.py │ │ ├── cascade-rcnn_x101-64x4d_fpn_1x_coco.py │ │ ├── cascade-rcnn_x101_64x4d_fpn_20e_coco.py │ │ └── metafile.yml │ ├── cascade_rpn │ │ ├── README.md │ │ ├── cascade-rpn_fast-rcnn_r50-caffe_fpn_1x_coco.py │ │ ├── cascade-rpn_faster-rcnn_r50-caffe_fpn_1x_coco.py │ │ ├── cascade-rpn_r50-caffe_fpn_1x_coco.py │ │ └── metafile.yml │ ├── centernet │ │ ├── README.md │ │ ├── centernet-update_r101_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── centernet-update_r18_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── centernet-update_r50-caffe_fpn_ms-1x_coco.py │ │ ├── centernet-update_r50_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── centernet_r18-dcnv2_8xb16-crop512-140e_coco.py │ │ ├── centernet_r18_8xb16-crop512-140e_coco.py │ │ ├── centernet_tta.py │ │ └── metafile.yml │ ├── centripetalnet │ │ ├── README.md │ │ ├── centripetalnet_hourglass104_16xb6-crop511-210e-mstest_coco.py │ │ └── metafile.yml │ ├── cityscapes │ │ ├── README.md │ │ ├── faster-rcnn_r50_fpn_1x_cityscapes.py │ │ └── mask-rcnn_r50_fpn_1x_cityscapes.py │ ├── common │ │ ├── lsj-100e_coco-detection.py │ │ ├── lsj-100e_coco-instance.py │ │ ├── lsj-200e_coco-detection.py │ │ ├── lsj-200e_coco-instance.py │ │ ├── ms-90k_coco.py │ │ ├── ms-poly-90k_coco-instance.py │ │ ├── ms-poly_3x_coco-instance.py │ │ ├── ms_3x_coco-instance.py │ │ ├── ms_3x_coco.py │ │ ├── ssj_270k_coco-instance.py │ │ └── ssj_scp_270k_coco-instance.py │ ├── condinst │ │ ├── README.md │ │ ├── condinst_r50_fpn_ms-poly-90k_coco_instance.py │ │ └── metafile.yml │ ├── conditional_detr │ │ ├── README.md │ │ ├── conditional-detr_r50_8xb2-50e_coco.py │ │ └── metafile.yml │ ├── convnext │ │ ├── README.md │ │ ├── cascade-mask-rcnn_convnext-s-p4-w7_fpn_4conv1fc-giou_amp-ms-crop-3x_coco.py │ │ ├── cascade-mask-rcnn_convnext-t-p4-w7_fpn_4conv1fc-giou_amp-ms-crop-3x_coco.py │ │ ├── mask-rcnn_convnext-t-p4-w7_fpn_amp-ms-crop-3x_coco.py │ │ └── metafile.yml │ ├── cornernet │ │ ├── README.md │ │ ├── cornernet_hourglass104_10xb5-crop511-210e-mstest_coco.py │ │ ├── cornernet_hourglass104_32xb3-210e-mstest_coco.py │ │ ├── cornernet_hourglass104_8xb6-210e-mstest_coco.py │ │ └── metafile.yml │ ├── crowddet │ │ ├── README.md │ │ ├── crowddet-rcnn_r50_fpn_8xb2-30e_crowdhuman.py │ │ ├── crowddet-rcnn_refine_r50_fpn_8xb2-30e_crowdhuman.py │ │ └── metafile.yml │ ├── dab_detr │ │ ├── README.md │ │ ├── dab-detr_r50_8xb2-50e_coco.py │ │ └── metafile.yml │ ├── dcn │ │ ├── README.md │ │ ├── cascade-mask-rcnn_r101-dconv-c3-c5_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_r50-dconv-c3-c5_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_x101-32x4d-dconv-c3-c5_fpn_1x_coco.py │ │ ├── cascade-rcnn_r101-dconv-c3-c5_fpn_1x_coco.py │ │ ├── cascade-rcnn_r50-dconv-c3-c5_fpn_1x_coco.py │ │ ├── faster-rcnn_r101-dconv-c3-c5_fpn_1x_coco.py │ │ ├── faster-rcnn_r50-dconv-c3-c5_fpn_1x_coco.py │ │ ├── faster-rcnn_r50_fpn_dpool_1x_coco.py │ │ ├── faster-rcnn_x101-32x4d-dconv-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_r101-dconv-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_r50-dconv-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_r50-dconv-c3-c5_fpn_amp-1x_coco.py │ │ └── metafile.yml │ ├── dcnv2 │ │ ├── README.md │ │ ├── faster-rcnn_r50-mdconv-c3-c5_fpn_1x_coco.py │ │ ├── faster-rcnn_r50-mdconv-group4-c3-c5_fpn_1x_coco.py │ │ ├── faster-rcnn_r50_fpn_mdpool_1x_coco.py │ │ ├── mask-rcnn_r50-mdconv-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_r50-mdconv-c3-c5_fpn_amp-1x_coco.py │ │ └── metafile.yml │ ├── ddod │ │ ├── README.md │ │ ├── ddod_r50_fpn_1x_coco.py │ │ └── metafile.yml │ ├── deepfashion │ │ ├── README.md │ │ └── mask-rcnn_r50_fpn_15e_deepfashion.py │ ├── deformable_detr │ │ ├── README.md │ │ ├── deformable-detr-refine-twostage_r50_16xb2-50e_coco.py │ │ ├── deformable-detr-refine_r50_16xb2-50e_coco.py │ │ ├── deformable-detr_r50_16xb2-50e_coco.py │ │ └── metafile.yml │ ├── detectors │ │ ├── README.md │ │ ├── cascade-rcnn_r50-rfp_1x_coco.py │ │ ├── cascade-rcnn_r50-sac_1x_coco.py │ │ ├── detectors_cascade-rcnn_r50_1x_coco.py │ │ ├── detectors_htc-r101_20e_coco.py │ │ ├── detectors_htc-r50_1x_coco.py │ │ ├── htc_r50-rfp_1x_coco.py │ │ ├── htc_r50-sac_1x_coco.py │ │ └── metafile.yml │ ├── detr │ │ ├── README.md │ │ ├── detr_r101_8xb2-500e_coco.py │ │ ├── detr_r18_8xb2-500e_coco.py │ │ ├── detr_r50_8xb2-150e_coco.py │ │ ├── detr_r50_8xb2-500e_coco.py │ │ └── metafile.yml │ ├── dino │ │ ├── README.md │ │ ├── dino-4scale_r50_8xb2-12e_coco.py │ │ ├── dino-4scale_r50_8xb2-24e_coco.py │ │ ├── dino-4scale_r50_8xb2-36e_coco.py │ │ ├── dino-5scale_swin-l_8xb2-12e_coco.py │ │ ├── dino-5scale_swin-l_8xb2-36e_coco.py │ │ └── metafile.yml │ ├── double_heads │ │ ├── README.md │ │ ├── dh-faster-rcnn_r50_fpn_1x_coco.py │ │ └── metafile.yml │ ├── dyhead │ │ ├── README.md │ │ ├── atss_r50-caffe_fpn_dyhead_1x_coco.py │ │ ├── atss_r50_fpn_dyhead_1x_coco.py │ │ ├── atss_swin-l-p4-w12_fpn_dyhead_ms-2x_coco.py │ │ └── metafile.yml │ ├── dynamic_rcnn │ │ ├── README.md │ │ ├── dynamic-rcnn_r50_fpn_1x_coco.py │ │ └── metafile.yml │ ├── efficientnet │ │ ├── README.md │ │ ├── metafile.yml │ │ └── retinanet_effb3_fpn_8xb4-crop896-1x_coco.py │ ├── empirical_attention │ │ ├── README.md │ │ ├── faster-rcnn_r50-attn0010-dcn_fpn_1x_coco.py │ │ ├── faster-rcnn_r50-attn0010_fpn_1x_coco.py │ │ ├── faster-rcnn_r50-attn1111-dcn_fpn_1x_coco.py │ │ ├── faster-rcnn_r50-attn1111_fpn_1x_coco.py │ │ └── metafile.yml │ ├── fast_rcnn │ │ ├── README.md │ │ ├── fast-rcnn_r101-caffe_fpn_1x_coco.py │ │ ├── fast-rcnn_r101_fpn_1x_coco.py │ │ ├── fast-rcnn_r101_fpn_2x_coco.py │ │ ├── fast-rcnn_r50-caffe_fpn_1x_coco.py │ │ ├── fast-rcnn_r50_fpn_1x_coco.py │ │ └── fast-rcnn_r50_fpn_2x_coco.py │ ├── faster_rcnn │ │ ├── README.md │ │ ├── faster-rcnn_r101-caffe_fpn_1x_coco.py │ │ ├── faster-rcnn_r101-caffe_fpn_ms-3x_coco.py │ │ ├── faster-rcnn_r101_fpn_1x_coco.py │ │ ├── faster-rcnn_r101_fpn_2x_coco.py │ │ ├── faster-rcnn_r101_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── faster-rcnn_r101_fpn_ms-3x_coco.py │ │ ├── faster-rcnn_r18_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── faster-rcnn_r50-caffe-c4_ms-1x_coco.py │ │ ├── faster-rcnn_r50-caffe-dc5_1x_coco.py │ │ ├── faster-rcnn_r50-caffe-dc5_ms-1x_coco.py │ │ ├── faster-rcnn_r50-caffe-dc5_ms-3x_coco.py │ │ ├── faster-rcnn_r50-caffe_c4-1x_coco.py │ │ ├── faster-rcnn_r50-caffe_fpn_1x_coco.py │ │ ├── faster-rcnn_r50-caffe_fpn_90k_coco.py │ │ ├── faster-rcnn_r50-caffe_fpn_ms-1x_coco-person-bicycle-car.py │ │ ├── faster-rcnn_r50-caffe_fpn_ms-1x_coco-person.py │ │ ├── faster-rcnn_r50-caffe_fpn_ms-1x_coco.py │ │ ├── faster-rcnn_r50-caffe_fpn_ms-2x_coco.py │ │ ├── faster-rcnn_r50-caffe_fpn_ms-3x_coco.py │ │ ├── faster-rcnn_r50-caffe_fpn_ms-90k_coco.py │ │ ├── faster-rcnn_r50-tnr-pre_fpn_1x_coco.py │ │ ├── faster-rcnn_r50_fpn_1x_coco.py │ │ ├── faster-rcnn_r50_fpn_2x_coco.py │ │ ├── faster-rcnn_r50_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── faster-rcnn_r50_fpn_amp-1x_coco.py │ │ ├── faster-rcnn_r50_fpn_bounded-iou_1x_coco.py │ │ ├── faster-rcnn_r50_fpn_ciou_1x_coco.py │ │ ├── faster-rcnn_r50_fpn_fcos-rpn_1x_coco.py │ │ ├── faster-rcnn_r50_fpn_giou_1x_coco.py │ │ ├── faster-rcnn_r50_fpn_iou_1x_coco.py │ │ ├── faster-rcnn_r50_fpn_ms-3x_coco.py │ │ ├── faster-rcnn_r50_fpn_ohem_1x_coco.py │ │ ├── faster-rcnn_r50_fpn_soft-nms_1x_coco.py │ │ ├── faster-rcnn_x101-32x4d_fpn_1x_coco.py │ │ ├── faster-rcnn_x101-32x4d_fpn_2x_coco.py │ │ ├── faster-rcnn_x101-32x4d_fpn_ms-3x_coco.py │ │ ├── faster-rcnn_x101-32x8d_fpn_ms-3x_coco.py │ │ ├── faster-rcnn_x101-64x4d_fpn_1x_coco.py │ │ ├── faster-rcnn_x101-64x4d_fpn_2x_coco.py │ │ ├── faster-rcnn_x101-64x4d_fpn_ms-3x_coco.py │ │ └── metafile.yml │ ├── fcos │ │ ├── README.md │ │ ├── fcos_r101-caffe_fpn_gn-head-1x_coco.py │ │ ├── fcos_r101-caffe_fpn_gn-head_ms-640-800-2x_coco.py │ │ ├── fcos_r101_fpn_gn-head-center-normbbox-centeronreg-giou_8xb8-amp-lsj-200e_coco.py │ │ ├── fcos_r18_fpn_gn-head-center-normbbox-centeronreg-giou_8xb8-amp-lsj-200e_coco.py │ │ ├── fcos_r50-caffe_fpn_gn-head-center-normbbox-centeronreg-giou_1x_coco.py │ │ ├── fcos_r50-caffe_fpn_gn-head-center_1x_coco.py │ │ ├── fcos_r50-caffe_fpn_gn-head_1x_coco.py │ │ ├── fcos_r50-caffe_fpn_gn-head_4xb4-1x_coco.py │ │ ├── fcos_r50-caffe_fpn_gn-head_ms-640-800-2x_coco.py │ │ ├── fcos_r50-dcn-caffe_fpn_gn-head-center-normbbox-centeronreg-giou_1x_coco.py │ │ ├── fcos_r50_fpn_gn-head-center-normbbox-centeronreg-giou_8xb8-amp-lsj-200e_coco.py │ │ ├── fcos_x101-64x4d_fpn_gn-head_ms-640-800-2x_coco.py │ │ └── metafile.yml │ ├── foveabox │ │ ├── README.md │ │ ├── fovea_r101_fpn_4xb4-1x_coco.py │ │ ├── fovea_r101_fpn_4xb4-2x_coco.py │ │ ├── fovea_r101_fpn_gn-head-align_4xb4-2x_coco.py │ │ ├── fovea_r101_fpn_gn-head-align_ms-640-800-4xb4-2x_coco.py │ │ ├── fovea_r50_fpn_4xb4-1x_coco.py │ │ ├── fovea_r50_fpn_4xb4-2x_coco.py │ │ ├── fovea_r50_fpn_gn-head-align_4xb4-2x_coco.py │ │ ├── fovea_r50_fpn_gn-head-align_ms-640-800-4xb4-2x_coco.py │ │ └── metafile.yml │ ├── fpg │ │ ├── README.md │ │ ├── faster-rcnn_r50_fpg-chn128_crop640-50e_coco.py │ │ ├── faster-rcnn_r50_fpg_crop640-50e_coco.py │ │ ├── faster-rcnn_r50_fpn_crop640-50e_coco.py │ │ ├── mask-rcnn_r50_fpg-chn128_crop640-50e_coco.py │ │ ├── mask-rcnn_r50_fpg_crop640-50e_coco.py │ │ ├── mask-rcnn_r50_fpn_crop640-50e_coco.py │ │ ├── metafile.yml │ │ ├── retinanet_r50_fpg-chn128_crop640_50e_coco.py │ │ └── retinanet_r50_fpg_crop640_50e_coco.py │ ├── free_anchor │ │ ├── README.md │ │ ├── freeanchor_r101_fpn_1x_coco.py │ │ ├── freeanchor_r50_fpn_1x_coco.py │ │ ├── freeanchor_x101-32x4d_fpn_1x_coco.py │ │ └── metafile.yml │ ├── fsaf │ │ ├── README.md │ │ ├── fsaf_r101_fpn_1x_coco.py │ │ ├── fsaf_r50_fpn_1x_coco.py │ │ ├── fsaf_x101-64x4d_fpn_1x_coco.py │ │ └── metafile.yml │ ├── gcnet │ │ ├── README.md │ │ ├── cascade-mask-rcnn_x101-32x4d-syncbn-dconv-c3-c5-r16-gcb-c3-c5_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_x101-32x4d-syncbn-dconv-c3-c5-r4-gcb-c3-c5_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_x101-32x4d-syncbn-dconv-c3-c5_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_x101-32x4d-syncbn-r16-gcb-c3-c5_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_x101-32x4d-syncbn-r4-gcb-c3-c5_fpn_1x_coco.py │ │ ├── cascade-mask-rcnn_x101-32x4d-syncbn_fpn_1x_coco.py │ │ ├── mask-rcnn_r101-gcb-r16-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_r101-gcb-r4-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_r101-syncbn-gcb-r16-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_r101-syncbn-gcb-r4-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_r101-syncbn_fpn_1x_coco.py │ │ ├── mask-rcnn_r50-gcb-r16-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_r50-gcb-r4-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_r50-syncbn-gcb-r16-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_r50-syncbn-gcb-r4-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_r50-syncbn_fpn_1x_coco.py │ │ ├── mask-rcnn_x101-32x4d-syncbn-gcb-r16-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_x101-32x4d-syncbn-gcb-r4-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_x101-32x4d-syncbn_fpn_1x_coco.py │ │ └── metafile.yml │ ├── gfl │ │ ├── README.md │ │ ├── gfl_r101-dconv-c3-c5_fpn_ms-2x_coco.py │ │ ├── gfl_r101_fpn_ms-2x_coco.py │ │ ├── gfl_r50_fpn_1x_coco.py │ │ ├── gfl_r50_fpn_ms-2x_coco.py │ │ ├── gfl_x101-32x4d-dconv-c4-c5_fpn_ms-2x_coco.py │ │ ├── gfl_x101-32x4d_fpn_ms-2x_coco.py │ │ └── metafile.yml │ ├── ghm │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── retinanet_r101_fpn_ghm-1x_coco.py │ │ ├── retinanet_r50_fpn_ghm-1x_coco.py │ │ ├── retinanet_x101-32x4d_fpn_ghm-1x_coco.py │ │ └── retinanet_x101-64x4d_fpn_ghm-1x_coco.py │ ├── gn+ws │ │ ├── README.md │ │ ├── faster-rcnn_r101_fpn_gn-ws-all_1x_coco.py │ │ ├── faster-rcnn_r50_fpn_gn-ws-all_1x_coco.py │ │ ├── faster-rcnn_x101-32x4d_fpn_gn-ws-all_1x_coco.py │ │ ├── faster-rcnn_x50-32x4d_fpn_gn-ws-all_1x_coco.py │ │ ├── mask-rcnn_r101_fpn_gn-ws-all_20-23-24e_coco.py │ │ ├── mask-rcnn_r101_fpn_gn-ws-all_2x_coco.py │ │ ├── mask-rcnn_r50_fpn_gn-ws-all_20-23-24e_coco.py │ │ ├── mask-rcnn_r50_fpn_gn-ws-all_2x_coco.py │ │ ├── mask-rcnn_x101-32x4d_fpn_gn-ws-all_20-23-24e_coco.py │ │ ├── mask-rcnn_x101-32x4d_fpn_gn-ws-all_2x_coco.py │ │ ├── mask-rcnn_x50-32x4d_fpn_gn-ws-all_20-23-24e_coco.py │ │ ├── mask-rcnn_x50-32x4d_fpn_gn-ws-all_2x_coco.py │ │ └── metafile.yml │ ├── gn │ │ ├── README.md │ │ ├── mask-rcnn_r101_fpn_gn-all_2x_coco.py │ │ ├── mask-rcnn_r101_fpn_gn-all_3x_coco.py │ │ ├── mask-rcnn_r50-contrib_fpn_gn-all_2x_coco.py │ │ ├── mask-rcnn_r50-contrib_fpn_gn-all_3x_coco.py │ │ ├── mask-rcnn_r50_fpn_gn-all_2x_coco.py │ │ ├── mask-rcnn_r50_fpn_gn-all_3x_coco.py │ │ └── metafile.yml │ ├── grid_rcnn │ │ ├── README.md │ │ ├── grid-rcnn_r101_fpn_gn-head_2x_coco.py │ │ ├── grid-rcnn_r50_fpn_gn-head_1x_coco.py │ │ ├── grid-rcnn_r50_fpn_gn-head_2x_coco.py │ │ ├── grid-rcnn_x101-32x4d_fpn_gn-head_2x_coco.py │ │ ├── grid-rcnn_x101-64x4d_fpn_gn-head_2x_coco.py │ │ └── metafile.yml │ ├── groie │ │ ├── README.md │ │ ├── faste-rcnn_r50_fpn_groie_1x_coco.py │ │ ├── grid-rcnn_r50_fpn_gn-head-groie_1x_coco.py │ │ ├── mask-rcnn_r101_fpn_syncbn-r4-gcb_c3-c5-groie_1x_coco.py │ │ ├── mask-rcnn_r50_fpn_groie_1x_coco.py │ │ ├── mask-rcnn_r50_fpn_syncbn-r4-gcb-c3-c5-groie_1x_coco.py │ │ └── metafile.yml │ ├── guided_anchoring │ │ ├── README.md │ │ ├── ga-fast-rcnn_r50-caffe_fpn_1x_coco.py │ │ ├── ga-faster-rcnn_r101-caffe_fpn_1x_coco.py │ │ ├── ga-faster-rcnn_r50-caffe_fpn_1x_coco.py │ │ ├── ga-faster-rcnn_r50_fpn_1x_coco.py │ │ ├── ga-faster-rcnn_x101-32x4d_fpn_1x_coco.py │ │ ├── ga-faster-rcnn_x101-64x4d_fpn_1x_coco.py │ │ ├── ga-retinanet_r101-caffe_fpn_1x_coco.py │ │ ├── ga-retinanet_r101-caffe_fpn_ms-2x.py │ │ ├── ga-retinanet_r50-caffe_fpn_1x_coco.py │ │ ├── ga-retinanet_r50_fpn_1x_coco.py │ │ ├── ga-retinanet_x101-32x4d_fpn_1x_coco.py │ │ ├── ga-retinanet_x101-64x4d_fpn_1x_coco.py │ │ ├── ga-rpn_r101-caffe_fpn_1x_coco.py │ │ ├── ga-rpn_r50-caffe_fpn_1x_coco.py │ │ ├── ga-rpn_r50_fpn_1x_coco.py │ │ ├── ga-rpn_x101-32x4d_fpn_1x_coco.py │ │ ├── ga-rpn_x101-64x4d_fpn_1x_coco.py │ │ └── metafile.yml │ ├── hrnet │ │ ├── README.md │ │ ├── cascade-mask-rcnn_hrnetv2p-w18_20e_coco.py │ │ ├── cascade-mask-rcnn_hrnetv2p-w32_20e_coco.py │ │ ├── cascade-mask-rcnn_hrnetv2p-w40-20e_coco.py │ │ ├── cascade-rcnn_hrnetv2p-w18-20e_coco.py │ │ ├── cascade-rcnn_hrnetv2p-w32-20e_coco.py │ │ ├── cascade-rcnn_hrnetv2p-w40-20e_coco.py │ │ ├── faster-rcnn_hrnetv2p-w18-1x_coco.py │ │ ├── faster-rcnn_hrnetv2p-w18-2x_coco.py │ │ ├── faster-rcnn_hrnetv2p-w32-1x_coco.py │ │ ├── faster-rcnn_hrnetv2p-w32_2x_coco.py │ │ ├── faster-rcnn_hrnetv2p-w40-1x_coco.py │ │ ├── faster-rcnn_hrnetv2p-w40_2x_coco.py │ │ ├── fcos_hrnetv2p-w18-gn-head_4xb4-1x_coco.py │ │ ├── fcos_hrnetv2p-w18-gn-head_4xb4-2x_coco.py │ │ ├── fcos_hrnetv2p-w18-gn-head_ms-640-800-4xb4-2x_coco.py │ │ ├── fcos_hrnetv2p-w32-gn-head_4xb4-1x_coco.py │ │ ├── fcos_hrnetv2p-w32-gn-head_4xb4-2x_coco.py │ │ ├── fcos_hrnetv2p-w32-gn-head_ms-640-800-4xb4-2x_coco.py │ │ ├── fcos_hrnetv2p-w40-gn-head_ms-640-800-4xb4-2x_coco.py │ │ ├── htc_hrnetv2p-w18_20e_coco.py │ │ ├── htc_hrnetv2p-w32_20e_coco.py │ │ ├── htc_hrnetv2p-w40_20e_coco.py │ │ ├── htc_hrnetv2p-w40_28e_coco.py │ │ ├── htc_x101-64x4d_fpn_16xb1-28e_coco.py │ │ ├── mask-rcnn_hrnetv2p-w18-1x_coco.py │ │ ├── mask-rcnn_hrnetv2p-w18-2x_coco.py │ │ ├── mask-rcnn_hrnetv2p-w32-1x_coco.py │ │ ├── mask-rcnn_hrnetv2p-w32-2x_coco.py │ │ ├── mask-rcnn_hrnetv2p-w40-2x_coco.py │ │ ├── mask-rcnn_hrnetv2p-w40_1x_coco.py │ │ └── metafile.yml │ ├── htc │ │ ├── README.md │ │ ├── htc-without-semantic_r50_fpn_1x_coco.py │ │ ├── htc_r101_fpn_20e_coco.py │ │ ├── htc_r50_fpn_1x_coco.py │ │ ├── htc_r50_fpn_20e_coco.py │ │ ├── htc_x101-32x4d_fpn_16xb1-20e_coco.py │ │ ├── htc_x101-64x4d-dconv-c3-c5_fpn_ms-400-1400-16xb1-20e_coco.py │ │ ├── htc_x101-64x4d_fpn_16xb1-20e_coco.py │ │ └── metafile.yml │ ├── instaboost │ │ ├── README.md │ │ ├── cascade-mask-rcnn_r101_fpn_instaboost-4x_coco.py │ │ ├── cascade-mask-rcnn_r50_fpn_instaboost-4x_coco.py │ │ ├── cascade-mask-rcnn_x101-64x4d_fpn_instaboost-4x_coco.py │ │ ├── mask-rcnn_r101_fpn_instaboost-4x_coco.py │ │ ├── mask-rcnn_r50_fpn_instaboost-4x_coco.py │ │ ├── mask-rcnn_x101-64x4d_fpn_instaboost-4x_coco.py │ │ └── metafile.yml │ ├── instagen │ │ ├── faster-rcnn_r50-caffe_c4-1x_coco-ovd_instagen-dataset.py │ │ ├── instagen-4scale_fd_8xb2-12e_coco.py │ │ ├── instagen-4scale_fd_8xb2-12e_coco_demo.py │ │ └── instagen-4scale_fd_8xb2-12e_coco_infer.py │ ├── lad │ │ ├── README.md │ │ ├── lad_r101-paa-r50_fpn_2xb8_coco_1x.py │ │ ├── lad_r50-paa-r101_fpn_2xb8_coco_1x.py │ │ └── metafile.yml │ ├── ld │ │ ├── README.md │ │ ├── ld_r101-gflv1-r101-dcn_fpn_2x_coco.py │ │ ├── ld_r18-gflv1-r101_fpn_1x_coco.py │ │ ├── ld_r34-gflv1-r101_fpn_1x_coco.py │ │ ├── ld_r50-gflv1-r101_fpn_1x_coco.py │ │ └── metafile.yml │ ├── legacy_1.x │ │ ├── README.md │ │ ├── cascade-mask-rcnn_r50_fpn_1x_coco_v1.py │ │ ├── faster-rcnn_r50_fpn_1x_coco_v1.py │ │ ├── mask-rcnn_r50_fpn_1x_coco_v1.py │ │ ├── retinanet_r50-caffe_fpn_1x_coco_v1.py │ │ ├── retinanet_r50_fpn_1x_coco_v1.py │ │ └── ssd300_coco_v1.py │ ├── libra_rcnn │ │ ├── README.md │ │ ├── libra-fast-rcnn_r50_fpn_1x_coco.py │ │ ├── libra-faster-rcnn_r101_fpn_1x_coco.py │ │ ├── libra-faster-rcnn_r50_fpn_1x_coco.py │ │ ├── libra-faster-rcnn_x101-64x4d_fpn_1x_coco.py │ │ ├── libra-retinanet_r50_fpn_1x_coco.py │ │ └── metafile.yml │ ├── lvis │ │ ├── README.md │ │ ├── mask-rcnn_r101_fpn_sample1e-3_ms-1x_lvis-v1.py │ │ ├── mask-rcnn_r101_fpn_sample1e-3_ms-2x_lvis-v0.5.py │ │ ├── mask-rcnn_r50_fpn_sample1e-3_ms-1x_lvis-v1.py │ │ ├── mask-rcnn_r50_fpn_sample1e-3_ms-2x_lvis-v0.5.py │ │ ├── mask-rcnn_x101-32x4d_fpn_sample1e-3_ms-1x_lvis-v1.py │ │ ├── mask-rcnn_x101-32x4d_fpn_sample1e-3_ms-2x_lvis-v0.5.py │ │ ├── mask-rcnn_x101-64x4d_fpn_sample1e-3_ms-1x_lvis-v1.py │ │ ├── mask-rcnn_x101-64x4d_fpn_sample1e-3_ms-2x_lvis-v0.5.py │ │ └── metafile.yml │ ├── mask2former │ │ ├── README.md │ │ ├── mask2former_r101_8xb2-lsj-50e_coco-panoptic.py │ │ ├── mask2former_r101_8xb2-lsj-50e_coco.py │ │ ├── mask2former_r50_8xb2-lsj-50e_coco-panoptic.py │ │ ├── mask2former_r50_8xb2-lsj-50e_coco.py │ │ ├── mask2former_swin-b-p4-w12-384-in21k_8xb2-lsj-50e_coco-panoptic.py │ │ ├── mask2former_swin-b-p4-w12-384_8xb2-lsj-50e_coco-panoptic.py │ │ ├── mask2former_swin-l-p4-w12-384-in21k_16xb1-lsj-100e_coco-panoptic.py │ │ ├── mask2former_swin-s-p4-w7-224_8xb2-lsj-50e_coco-panoptic.py │ │ ├── mask2former_swin-s-p4-w7-224_8xb2-lsj-50e_coco.py │ │ ├── mask2former_swin-t-p4-w7-224_8xb2-lsj-50e_coco-panoptic.py │ │ ├── mask2former_swin-t-p4-w7-224_8xb2-lsj-50e_coco.py │ │ └── metafile.yml │ ├── mask_rcnn │ │ ├── README.md │ │ ├── mask-rcnn_r101-caffe_fpn_1x_coco.py │ │ ├── mask-rcnn_r101-caffe_fpn_ms-poly-3x_coco.py │ │ ├── mask-rcnn_r101_fpn_1x_coco.py │ │ ├── mask-rcnn_r101_fpn_2x_coco.py │ │ ├── mask-rcnn_r101_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── mask-rcnn_r101_fpn_ms-poly-3x_coco.py │ │ ├── mask-rcnn_r18_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── mask-rcnn_r50-caffe-c4_1x_coco.py │ │ ├── mask-rcnn_r50-caffe_fpn_1x_coco.py │ │ ├── mask-rcnn_r50-caffe_fpn_ms-1x_coco.py │ │ ├── mask-rcnn_r50-caffe_fpn_ms-poly-1x_coco.py │ │ ├── mask-rcnn_r50-caffe_fpn_ms-poly-2x_coco.py │ │ ├── mask-rcnn_r50-caffe_fpn_ms-poly-3x_coco.py │ │ ├── mask-rcnn_r50-caffe_fpn_poly-1x_coco_v1.py │ │ ├── mask-rcnn_r50_fpn_1x-wandb_coco.py │ │ ├── mask-rcnn_r50_fpn_1x_coco.py │ │ ├── mask-rcnn_r50_fpn_2x_coco.py │ │ ├── mask-rcnn_r50_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── mask-rcnn_r50_fpn_amp-1x_coco.py │ │ ├── mask-rcnn_r50_fpn_ms-poly-3x_coco.py │ │ ├── mask-rcnn_r50_fpn_poly-1x_coco.py │ │ ├── mask-rcnn_x101-32x4d_fpn_1x_coco.py │ │ ├── mask-rcnn_x101-32x4d_fpn_2x_coco.py │ │ ├── mask-rcnn_x101-32x4d_fpn_ms-poly-3x_coco.py │ │ ├── mask-rcnn_x101-32x8d_fpn_1x_coco.py │ │ ├── mask-rcnn_x101-32x8d_fpn_ms-poly-1x_coco.py │ │ ├── mask-rcnn_x101-32x8d_fpn_ms-poly-3x_coco.py │ │ ├── mask-rcnn_x101-64x4d_fpn_1x_coco.py │ │ ├── mask-rcnn_x101-64x4d_fpn_2x_coco.py │ │ ├── mask-rcnn_x101-64x4d_fpn_ms-poly_3x_coco.py │ │ └── metafile.yml │ ├── maskformer │ │ ├── README.md │ │ ├── maskformer_r50_ms-16xb1-75e_coco.py │ │ ├── maskformer_swin-l-p4-w12_64xb1-ms-300e_coco.py │ │ └── metafile.yml │ ├── misc │ │ ├── d2_faster-rcnn_r50-caffe_fpn_ms-90k_coco.py │ │ ├── d2_mask-rcnn_r50-caffe_fpn_ms-90k_coco.py │ │ └── d2_retinanet_r50-caffe_fpn_ms-90k_coco.py │ ├── ms_rcnn │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── ms-rcnn_r101-caffe_fpn_1x_coco.py │ │ ├── ms-rcnn_r101-caffe_fpn_2x_coco.py │ │ ├── ms-rcnn_r50-caffe_fpn_1x_coco.py │ │ ├── ms-rcnn_r50-caffe_fpn_2x_coco.py │ │ ├── ms-rcnn_r50_fpn_1x_coco.py │ │ ├── ms-rcnn_x101-32x4d_fpn_1x_coco.py │ │ ├── ms-rcnn_x101-64x4d_fpn_1x_coco.py │ │ └── ms-rcnn_x101-64x4d_fpn_2x_coco.py │ ├── nas_fcos │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── nas-fcos_r50-caffe_fpn_fcoshead-gn-head_4xb4-1x_coco.py │ │ └── nas-fcos_r50-caffe_fpn_nashead-gn-head_4xb4-1x_coco.py │ ├── nas_fpn │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── retinanet_r50_fpn_crop640-50e_coco.py │ │ └── retinanet_r50_nasfpn_crop640-50e_coco.py │ ├── objects365 │ │ ├── README.md │ │ ├── faster-rcnn_r50-syncbn_fpn_1350k_objects365v1.py │ │ ├── faster-rcnn_r50_fpn_16xb4-1x_objects365v1.py │ │ ├── faster-rcnn_r50_fpn_16xb4-1x_objects365v2.py │ │ ├── metafile.yml │ │ ├── retinanet_r50-syncbn_fpn_1350k_objects365v1.py │ │ ├── retinanet_r50_fpn_1x_objects365v1.py │ │ └── retinanet_r50_fpn_1x_objects365v2.py │ ├── openimages │ │ ├── README.md │ │ ├── faster-rcnn_r50_fpn_32xb2-1x_openimages-challenge.py │ │ ├── faster-rcnn_r50_fpn_32xb2-1x_openimages.py │ │ ├── faster-rcnn_r50_fpn_32xb2-cas-1x_openimages-challenge.py │ │ ├── faster-rcnn_r50_fpn_32xb2-cas-1x_openimages.py │ │ ├── metafile.yml │ │ ├── retinanet_r50_fpn_32xb2-1x_openimages.py │ │ └── ssd300_32xb8-36e_openimages.py │ ├── paa │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── paa_r101_fpn_1x_coco.py │ │ ├── paa_r101_fpn_2x_coco.py │ │ ├── paa_r101_fpn_ms-3x_coco.py │ │ ├── paa_r50_fpn_1.5x_coco.py │ │ ├── paa_r50_fpn_1x_coco.py │ │ ├── paa_r50_fpn_2x_coco.py │ │ └── paa_r50_fpn_ms-3x_coco.py │ ├── pafpn │ │ ├── README.md │ │ ├── faster-rcnn_r50_pafpn_1x_coco.py │ │ └── metafile.yml │ ├── panoptic_fpn │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── panoptic-fpn_r101_fpn_1x_coco.py │ │ ├── panoptic-fpn_r101_fpn_ms-3x_coco.py │ │ ├── panoptic-fpn_r50_fpn_1x_coco.py │ │ └── panoptic-fpn_r50_fpn_ms-3x_coco.py │ ├── pascal_voc │ │ ├── README.md │ │ ├── faster-rcnn_r50-caffe-c4_ms-18k_voc0712.py │ │ ├── faster-rcnn_r50_fpn_1x_voc0712-cocofmt.py │ │ ├── faster-rcnn_r50_fpn_1x_voc0712.py │ │ ├── retinanet_r50_fpn_1x_voc0712.py │ │ ├── ssd300_voc0712.py │ │ └── ssd512_voc0712.py │ ├── pisa │ │ ├── README.md │ │ ├── faster-rcnn_r50_fpn_pisa_1x_coco.py │ │ ├── faster-rcnn_x101-32x4d_fpn_pisa_1x_coco.py │ │ ├── mask-rcnn_r50_fpn_pisa_1x_coco.py │ │ ├── mask-rcnn_x101-32x4d_fpn_pisa_1x_coco.py │ │ ├── metafile.yml │ │ ├── retinanet-r50_fpn_pisa_1x_coco.py │ │ ├── retinanet_x101-32x4d_fpn_pisa_1x_coco.py │ │ ├── ssd300_pisa_coco.py │ │ └── ssd512_pisa_coco.py │ ├── point_rend │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── point-rend_r50-caffe_fpn_ms-1x_coco.py │ │ └── point-rend_r50-caffe_fpn_ms-3x_coco.py │ ├── pvt │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── retinanet_pvt-l_fpn_1x_coco.py │ │ ├── retinanet_pvt-m_fpn_1x_coco.py │ │ ├── retinanet_pvt-s_fpn_1x_coco.py │ │ ├── retinanet_pvt-t_fpn_1x_coco.py │ │ ├── retinanet_pvtv2-b0_fpn_1x_coco.py │ │ ├── retinanet_pvtv2-b1_fpn_1x_coco.py │ │ ├── retinanet_pvtv2-b2_fpn_1x_coco.py │ │ ├── retinanet_pvtv2-b3_fpn_1x_coco.py │ │ ├── retinanet_pvtv2-b4_fpn_1x_coco.py │ │ └── retinanet_pvtv2-b5_fpn_1x_coco.py │ ├── queryinst │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── queryinst_r101_fpn_300-proposals_crop-ms-480-800-3x_coco.py │ │ ├── queryinst_r101_fpn_ms-480-800-3x_coco.py │ │ ├── queryinst_r50_fpn_1x_coco.py │ │ ├── queryinst_r50_fpn_300-proposals_crop-ms-480-800-3x_coco.py │ │ └── queryinst_r50_fpn_ms-480-800-3x_coco.py │ ├── regnet │ │ ├── README.md │ │ ├── cascade-mask-rcnn_regnetx-1.6GF_fpn_ms-3x_coco.py │ │ ├── cascade-mask-rcnn_regnetx-3.2GF_fpn_ms-3x_coco.py │ │ ├── cascade-mask-rcnn_regnetx-400MF_fpn_ms-3x_coco.py │ │ ├── cascade-mask-rcnn_regnetx-4GF_fpn_ms-3x_coco.py │ │ ├── cascade-mask-rcnn_regnetx-800MF_fpn_ms-3x_coco.py │ │ ├── faster-rcnn_regnetx-1.6GF_fpn_ms-3x_coco.py │ │ ├── faster-rcnn_regnetx-3.2GF_fpn_1x_coco.py │ │ ├── faster-rcnn_regnetx-3.2GF_fpn_2x_coco.py │ │ ├── faster-rcnn_regnetx-3.2GF_fpn_ms-3x_coco.py │ │ ├── faster-rcnn_regnetx-400MF_fpn_ms-3x_coco.py │ │ ├── faster-rcnn_regnetx-4GF_fpn_ms-3x_coco.py │ │ ├── faster-rcnn_regnetx-800MF_fpn_ms-3x_coco.py │ │ ├── mask-rcnn_regnetx-1.6GF_fpn_ms-poly-3x_coco.py │ │ ├── mask-rcnn_regnetx-12GF_fpn_1x_coco.py │ │ ├── mask-rcnn_regnetx-3.2GF-mdconv-c3-c5_fpn_1x_coco.py │ │ ├── mask-rcnn_regnetx-3.2GF_fpn_1x_coco.py │ │ ├── mask-rcnn_regnetx-3.2GF_fpn_ms-3x_coco.py │ │ ├── mask-rcnn_regnetx-400MF_fpn_ms-poly-3x_coco.py │ │ ├── mask-rcnn_regnetx-4GF_fpn_1x_coco.py │ │ ├── mask-rcnn_regnetx-4GF_fpn_ms-poly-3x_coco.py │ │ ├── mask-rcnn_regnetx-6.4GF_fpn_1x_coco.py │ │ ├── mask-rcnn_regnetx-800MF_fpn_ms-poly-3x_coco.py │ │ ├── mask-rcnn_regnetx-8GF_fpn_1x_coco.py │ │ ├── metafile.yml │ │ ├── retinanet_regnetx-1.6GF_fpn_1x_coco.py │ │ ├── retinanet_regnetx-3.2GF_fpn_1x_coco.py │ │ └── retinanet_regnetx-800MF_fpn_1x_coco.py │ ├── reppoints │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── reppoints-bbox_r50-center_fpn-gn_head-gn-grid_1x_coco.py │ │ ├── reppoints-bbox_r50_fpn-gn_head-gn-grid_1x_coco.py │ │ ├── reppoints-minmax_r50_fpn-gn_head-gn_1x_coco.py │ │ ├── reppoints-moment_r101-dconv-c3-c5_fpn-gn_head-gn_2x_coco.py │ │ ├── reppoints-moment_r101_fpn-gn_head-gn_2x_coco.py │ │ ├── reppoints-moment_r50_fpn-gn_head-gn_1x_coco.py │ │ ├── reppoints-moment_r50_fpn-gn_head-gn_2x_coco.py │ │ ├── reppoints-moment_r50_fpn_1x_coco.py │ │ ├── reppoints-moment_x101-dconv-c3-c5_fpn-gn_head-gn_2x_coco.py │ │ ├── reppoints-partial-minmax_r50_fpn-gn_head-gn_1x_coco.py │ │ └── reppoints.png │ ├── res2net │ │ ├── README.md │ │ ├── cascade-mask-rcnn_res2net-101_fpn_20e_coco.py │ │ ├── cascade-rcnn_res2net-101_fpn_20e_coco.py │ │ ├── faster-rcnn_res2net-101_fpn_2x_coco.py │ │ ├── htc_res2net-101_fpn_20e_coco.py │ │ ├── mask-rcnn_res2net-101_fpn_2x_coco.py │ │ └── metafile.yml │ ├── resnest │ │ ├── README.md │ │ ├── cascade-mask-rcnn_s101_fpn_syncbn-backbone+head_ms-1x_coco.py │ │ ├── cascade-mask-rcnn_s50_fpn_syncbn-backbone+head_ms-1x_coco.py │ │ ├── cascade-rcnn_s101_fpn_syncbn-backbone+head_ms-range-1x_coco.py │ │ ├── cascade-rcnn_s50_fpn_syncbn-backbone+head_ms-range-1x_coco.py │ │ ├── faster-rcnn_s101_fpn_syncbn-backbone+head_ms-range-1x_coco.py │ │ ├── faster-rcnn_s50_fpn_syncbn-backbone+head_ms-range-1x_coco.py │ │ ├── mask-rcnn_s101_fpn_syncbn-backbone+head_ms-1x_coco.py │ │ ├── mask-rcnn_s50_fpn_syncbn-backbone+head_ms-1x_coco.py │ │ └── metafile.yml │ ├── resnet_strikes_back │ │ ├── README.md │ │ ├── cascade-mask-rcnn_r50-rsb-pre_fpn_1x_coco.py │ │ ├── faster-rcnn_r50-rsb-pre_fpn_1x_coco.py │ │ ├── mask-rcnn_r50-rsb-pre_fpn_1x_coco.py │ │ ├── metafile.yml │ │ └── retinanet_r50-rsb-pre_fpn_1x_coco.py │ ├── retinanet │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── retinanet_r101-caffe_fpn_1x_coco.py │ │ ├── retinanet_r101-caffe_fpn_ms-3x_coco.py │ │ ├── retinanet_r101_fpn_1x_coco.py │ │ ├── retinanet_r101_fpn_2x_coco.py │ │ ├── retinanet_r101_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── retinanet_r101_fpn_ms-640-800-3x_coco.py │ │ ├── retinanet_r18_fpn_1x_coco.py │ │ ├── retinanet_r18_fpn_1xb8-1x_coco.py │ │ ├── retinanet_r18_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── retinanet_r50-caffe_fpn_1x_coco.py │ │ ├── retinanet_r50-caffe_fpn_ms-1x_coco.py │ │ ├── retinanet_r50-caffe_fpn_ms-2x_coco.py │ │ ├── retinanet_r50-caffe_fpn_ms-3x_coco.py │ │ ├── retinanet_r50_fpn_1x_coco.py │ │ ├── retinanet_r50_fpn_2x_coco.py │ │ ├── retinanet_r50_fpn_8xb8-amp-lsj-200e_coco.py │ │ ├── retinanet_r50_fpn_90k_coco.py │ │ ├── retinanet_r50_fpn_amp-1x_coco.py │ │ ├── retinanet_r50_fpn_ms-640-800-3x_coco.py │ │ ├── retinanet_tta.py │ │ ├── retinanet_x101-32x4d_fpn_1x_coco.py │ │ ├── retinanet_x101-32x4d_fpn_2x_coco.py │ │ ├── retinanet_x101-64x4d_fpn_1x_coco.py │ │ ├── retinanet_x101-64x4d_fpn_2x_coco.py │ │ └── retinanet_x101-64x4d_fpn_ms-640-800-3x_coco.py │ ├── rpn │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── rpn_r101-caffe_fpn_1x_coco.py │ │ ├── rpn_r101_fpn_1x_coco.py │ │ ├── rpn_r101_fpn_2x_coco.py │ │ ├── rpn_r50-caffe-c4_1x_coco.py │ │ ├── rpn_r50-caffe_fpn_1x_coco.py │ │ ├── rpn_r50_fpn_1x_coco.py │ │ ├── rpn_r50_fpn_2x_coco.py │ │ ├── rpn_x101-32x4d_fpn_1x_coco.py │ │ ├── rpn_x101-32x4d_fpn_2x_coco.py │ │ ├── rpn_x101-64x4d_fpn_1x_coco.py │ │ └── rpn_x101-64x4d_fpn_2x_coco.py │ ├── rtmdet │ │ ├── README.md │ │ ├── classification │ │ │ ├── README.md │ │ │ ├── cspnext-l_8xb256-rsb-a1-600e_in1k.py │ │ │ ├── cspnext-m_8xb256-rsb-a1-600e_in1k.py │ │ │ ├── cspnext-s_8xb256-rsb-a1-600e_in1k.py │ │ │ ├── cspnext-tiny_8xb256-rsb-a1-600e_in1k.py │ │ │ └── cspnext-x_8xb256-rsb-a1-600e_in1k.py │ │ ├── metafile.yml │ │ ├── rtmdet-ins_l_8xb32-300e_coco.py │ │ ├── rtmdet-ins_m_8xb32-300e_coco.py │ │ ├── rtmdet-ins_s_8xb32-300e_coco.py │ │ ├── rtmdet-ins_tiny_8xb32-300e_coco.py │ │ ├── rtmdet-ins_x_8xb16-300e_coco.py │ │ ├── rtmdet_l_8xb32-300e_coco.py │ │ ├── rtmdet_m_8xb32-300e_coco.py │ │ ├── rtmdet_s_8xb32-300e_coco.py │ │ ├── rtmdet_tiny_8xb32-300e_coco.py │ │ ├── rtmdet_tta.py │ │ └── rtmdet_x_8xb32-300e_coco.py │ ├── sabl │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── sabl-cascade-rcnn_r101_fpn_1x_coco.py │ │ ├── sabl-cascade-rcnn_r50_fpn_1x_coco.py │ │ ├── sabl-faster-rcnn_r101_fpn_1x_coco.py │ │ ├── sabl-faster-rcnn_r50_fpn_1x_coco.py │ │ ├── sabl-retinanet_r101-gn_fpn_1x_coco.py │ │ ├── sabl-retinanet_r101-gn_fpn_ms-480-960-2x_coco.py │ │ ├── sabl-retinanet_r101-gn_fpn_ms-640-800-2x_coco.py │ │ ├── sabl-retinanet_r101_fpn_1x_coco.py │ │ ├── sabl-retinanet_r50-gn_fpn_1x_coco.py │ │ └── sabl-retinanet_r50_fpn_1x_coco.py │ ├── scnet │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── scnet_r101_fpn_20e_coco.py │ │ ├── scnet_r50_fpn_1x_coco.py │ │ ├── scnet_r50_fpn_20e_coco.py │ │ ├── scnet_x101-64x4d_fpn_20e_coco.py │ │ └── scnet_x101-64x4d_fpn_8xb1-20e_coco.py │ ├── seesaw_loss │ │ ├── README.md │ │ ├── cascade-mask-rcnn_r101_fpn_seesaw-loss-normed-mask_random-ms-2x_lvis-v1.py │ │ ├── cascade-mask-rcnn_r101_fpn_seesaw-loss-normed-mask_sample1e-3-ms-2x_lvis-v1.py │ │ ├── cascade-mask-rcnn_r101_fpn_seesaw-loss_random-ms-2x_lvis-v1.py │ │ ├── cascade-mask-rcnn_r101_fpn_seesaw-loss_sample1e-3-ms-2x_lvis-v1.py │ │ ├── mask-rcnn_r101_fpn_seesaw-loss-normed-mask_random-ms-2x_lvis-v1.py │ │ ├── mask-rcnn_r101_fpn_seesaw-loss-normed-mask_sample1e-3-ms-2x_lvis-v1.py │ │ ├── mask-rcnn_r101_fpn_seesaw-loss_random-ms-2x_lvis-v1.py │ │ ├── mask-rcnn_r101_fpn_seesaw-loss_sample1e-3-ms-2x_lvis-v1.py │ │ ├── mask-rcnn_r50_fpn_seesaw-loss-normed-mask_random-ms-2x_lvis-v1.py │ │ ├── mask-rcnn_r50_fpn_seesaw-loss-normed-mask_sample1e-3-ms-2x_lvis-v1.py │ │ ├── mask-rcnn_r50_fpn_seesaw-loss_random-ms-2x_lvis-v1.py │ │ ├── mask-rcnn_r50_fpn_seesaw-loss_sample1e-3-ms-2x_lvis-v1.py │ │ └── metafile.yml │ ├── selfsup_pretrain │ │ ├── README.md │ │ ├── mask-rcnn_r50-mocov2-pre_fpn_1x_coco.py │ │ ├── mask-rcnn_r50-mocov2-pre_fpn_ms-2x_coco.py │ │ ├── mask-rcnn_r50-swav-pre_fpn_1x_coco.py │ │ └── mask-rcnn_r50-swav-pre_fpn_ms-2x_coco.py │ ├── simple_copy_paste │ │ ├── README.md │ │ ├── mask-rcnn_r50_fpn_rpn-2conv_4conv1fc_syncbn-all_32xb2-ssj-270k_coco.py │ │ ├── mask-rcnn_r50_fpn_rpn-2conv_4conv1fc_syncbn-all_32xb2-ssj-90k_coco.py │ │ ├── mask-rcnn_r50_fpn_rpn-2conv_4conv1fc_syncbn-all_32xb2-ssj-scp-270k_coco.py │ │ ├── mask-rcnn_r50_fpn_rpn-2conv_4conv1fc_syncbn-all_32xb2-ssj-scp-90k_coco.py │ │ └── metafile.yml │ ├── soft_teacher │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── soft-teacher_faster-rcnn_r50-caffe_fpn_180k_semi-0.01-coco.py │ │ ├── soft-teacher_faster-rcnn_r50-caffe_fpn_180k_semi-0.02-coco.py │ │ ├── soft-teacher_faster-rcnn_r50-caffe_fpn_180k_semi-0.05-coco.py │ │ └── soft-teacher_faster-rcnn_r50-caffe_fpn_180k_semi-0.1-coco.py │ ├── solo │ │ ├── README.md │ │ ├── decoupled-solo-light_r50_fpn_3x_coco.py │ │ ├── decoupled-solo_r50_fpn_1x_coco.py │ │ ├── decoupled-solo_r50_fpn_3x_coco.py │ │ ├── metafile.yml │ │ ├── solo_r101_fpn_8xb8-lsj-200e_coco.py │ │ ├── solo_r18_fpn_8xb8-lsj-200e_coco.py │ │ ├── solo_r50_fpn_1x_coco.py │ │ ├── solo_r50_fpn_3x_coco.py │ │ └── solo_r50_fpn_8xb8-lsj-200e_coco.py │ ├── solov2 │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── solov2-light_r18_fpn_ms-3x_coco.py │ │ ├── solov2-light_r34_fpn_ms-3x_coco.py │ │ ├── solov2-light_r50-dcn_fpn_ms-3x_coco.py │ │ ├── solov2-light_r50_fpn_ms-3x_coco.py │ │ ├── solov2_r101-dcn_fpn_ms-3x_coco.py │ │ ├── solov2_r101_fpn_ms-3x_coco.py │ │ ├── solov2_r50_fpn_1x_coco.py │ │ ├── solov2_r50_fpn_ms-3x_coco.py │ │ └── solov2_x101-dcn_fpn_ms-3x_coco.py │ ├── sparse_rcnn │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── sparse-rcnn_r101_fpn_300-proposals_crop-ms-480-800-3x_coco.py │ │ ├── sparse-rcnn_r101_fpn_ms-480-800-3x_coco.py │ │ ├── sparse-rcnn_r50_fpn_1x_coco.py │ │ ├── sparse-rcnn_r50_fpn_300-proposals_crop-ms-480-800-3x_coco.py │ │ └── sparse-rcnn_r50_fpn_ms-480-800-3x_coco.py │ ├── ssd │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── ssd300_coco.py │ │ ├── ssd512_coco.py │ │ └── ssdlite_mobilenetv2-scratch_8xb24-600e_coco.py │ ├── strong_baselines │ │ ├── README.md │ │ ├── mask-rcnn_r50-caffe_fpn_rpn-2conv_4conv1fc_syncbn-all_amp-lsj-100e_coco.py │ │ ├── mask-rcnn_r50-caffe_fpn_rpn-2conv_4conv1fc_syncbn-all_lsj-100e_coco.py │ │ ├── mask-rcnn_r50-caffe_fpn_rpn-2conv_4conv1fc_syncbn-all_lsj-400e_coco.py │ │ ├── mask-rcnn_r50_fpn_rpn-2conv_4conv1fc_syncbn-all_amp-lsj-100e_coco.py │ │ ├── mask-rcnn_r50_fpn_rpn-2conv_4conv1fc_syncbn-all_lsj-100e_coco.py │ │ ├── mask-rcnn_r50_fpn_rpn-2conv_4conv1fc_syncbn-all_lsj-50e_coco.py │ │ └── metafile.yml │ ├── swin │ │ ├── README.md │ │ ├── mask-rcnn_swin-s-p4-w7_fpn_amp-ms-crop-3x_coco.py │ │ ├── mask-rcnn_swin-t-p4-w7_fpn_1x_coco.py │ │ ├── mask-rcnn_swin-t-p4-w7_fpn_amp-ms-crop-3x_coco.py │ │ ├── mask-rcnn_swin-t-p4-w7_fpn_ms-crop-3x_coco.py │ │ ├── metafile.yml │ │ └── retinanet_swin-t-p4-w7_fpn_1x_coco.py │ ├── timm_example │ │ ├── README.md │ │ ├── retinanet_timm-efficientnet-b1_fpn_1x_coco.py │ │ └── retinanet_timm-tv-resnet50_fpn_1x_coco.py │ ├── tood │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── tood_r101-dconv-c3-c5_fpn_ms-2x_coco.py │ │ ├── tood_r101_fpn_ms-2x_coco.py │ │ ├── tood_r50_fpn_1x_coco.py │ │ ├── tood_r50_fpn_anchor-based_1x_coco.py │ │ ├── tood_r50_fpn_ms-2x_coco.py │ │ ├── tood_x101-64x4d-dconv-c4-c5_fpn_ms-2x_coco.py │ │ └── tood_x101-64x4d_fpn_ms-2x_coco.py │ ├── tridentnet │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── tridentnet_r50-caffe_1x_coco.py │ │ ├── tridentnet_r50-caffe_ms-1x_coco.py │ │ └── tridentnet_r50-caffe_ms-3x_coco.py │ ├── vfnet │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── vfnet_r101-mdconv-c3-c5_fpn_ms-2x_coco.py │ │ ├── vfnet_r101_fpn_1x_coco.py │ │ ├── vfnet_r101_fpn_2x_coco.py │ │ ├── vfnet_r101_fpn_ms-2x_coco.py │ │ ├── vfnet_r50-mdconv-c3-c5_fpn_ms-2x_coco.py │ │ ├── vfnet_r50_fpn_1x_coco.py │ │ ├── vfnet_r50_fpn_ms-2x_coco.py │ │ ├── vfnet_res2net-101_fpn_ms-2x_coco.py │ │ ├── vfnet_res2net101-mdconv-c3-c5_fpn_ms-2x_coco.py │ │ ├── vfnet_x101-32x4d-mdconv-c3-c5_fpn_ms-2x_coco.py │ │ ├── vfnet_x101-32x4d_fpn_ms-2x_coco.py │ │ ├── vfnet_x101-64x4d-mdconv-c3-c5_fpn_ms-2x_coco.py │ │ └── vfnet_x101-64x4d_fpn_ms-2x_coco.py │ ├── wider_face │ │ ├── README.md │ │ ├── retinanet_r50_fpn_1x_widerface.py │ │ └── ssd300_8xb32-24e_widerface.py │ ├── yolact │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── yolact_r101_1xb8-55e_coco.py │ │ ├── yolact_r50_1xb8-55e_coco.py │ │ └── yolact_r50_8xb8-55e_coco.py │ ├── yolo │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── yolov3_d53_8xb8-320-273e_coco.py │ │ ├── yolov3_d53_8xb8-amp-ms-608-273e_coco.py │ │ ├── yolov3_d53_8xb8-ms-416-273e_coco.py │ │ ├── yolov3_d53_8xb8-ms-608-273e_coco.py │ │ ├── yolov3_mobilenetv2_8xb24-320-300e_coco.py │ │ └── yolov3_mobilenetv2_8xb24-ms-416-300e_coco.py │ ├── yolof │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── yolof_r50-c5_8xb8-1x_coco.py │ │ └── yolof_r50-c5_8xb8-iter-1x_coco.py │ └── yolox │ │ ├── README.md │ │ ├── metafile.yml │ │ ├── yolox_l_8xb8-300e_coco.py │ │ ├── yolox_m_8xb8-300e_coco.py │ │ ├── yolox_nano_8xb8-300e_coco.py │ │ ├── yolox_s_8xb8-300e_coco.py │ │ ├── yolox_tiny_8xb8-300e_coco.py │ │ ├── yolox_tta.py │ │ └── yolox_x_8xb8-300e_coco.py ├── demo.py ├── demo │ ├── MMDet_InstanceSeg_Tutorial.ipynb │ ├── MMDet_Tutorial.ipynb │ ├── create_result_gif.py │ ├── demo.jpg │ ├── image_demo.py │ ├── inference_demo.ipynb │ ├── instagen_pred.jpg │ ├── video_demo.py │ ├── video_gpuaccel_demo.py │ └── webcam_demo.py ├── docker │ ├── Dockerfile │ ├── serve │ │ ├── Dockerfile │ │ ├── config.properties │ │ └── entrypoint.sh │ └── serve_cn │ │ └── Dockerfile ├── docs │ ├── en │ │ ├── Makefile │ │ ├── _static │ │ │ ├── css │ │ │ │ └── readthedocs.css │ │ │ └── image │ │ │ │ └── mmdet-logo.png │ │ ├── advanced_guides │ │ │ ├── conventions.md │ │ │ ├── customize_dataset.md │ │ │ ├── customize_losses.md │ │ │ ├── customize_models.md │ │ │ ├── customize_runtime.md │ │ │ ├── customize_transforms.md │ │ │ ├── data_flow.md │ │ │ ├── datasets.md │ │ │ ├── engine.md │ │ │ ├── evaluation.md │ │ │ ├── how_to.md │ │ │ ├── index.rst │ │ │ ├── models.md │ │ │ ├── structures.md │ │ │ └── transforms.md │ │ ├── api.rst │ │ ├── conf.py │ │ ├── dataset_zoo.md │ │ ├── get_started.md │ │ ├── index.rst │ │ ├── make.bat │ │ ├── migration.md │ │ ├── migration │ │ │ ├── api_and_registry_migration.md │ │ │ ├── config_migration.md │ │ │ ├── dataset_migration.md │ │ │ ├── migration.md │ │ │ ├── migration_faq.md │ │ │ └── model_migration.md │ │ ├── model_zoo.md │ │ ├── notes │ │ │ ├── changelog.md │ │ │ ├── changelog_v2.x.md │ │ │ ├── compatibility.md │ │ │ ├── contribution_guide.md │ │ │ ├── faq.md │ │ │ └── projects.md │ │ ├── overview.md │ │ ├── stat.py │ │ ├── switch_language.md │ │ └── user_guides │ │ │ ├── config.md │ │ │ ├── dataset_prepare.md │ │ │ ├── deploy.md │ │ │ ├── finetune.md │ │ │ ├── index.rst │ │ │ ├── inference.md │ │ │ ├── init_cfg.md │ │ │ ├── label_studio.md │ │ │ ├── new_model.md │ │ │ ├── robustness_benchmarking.md │ │ │ ├── semi_det.md │ │ │ ├── single_stage_as_rpn.md │ │ │ ├── test.md │ │ │ ├── test_results_submission.md │ │ │ ├── train.md │ │ │ ├── useful_hooks.md │ │ │ ├── useful_tools.md │ │ │ └── visualization.md │ └── zh_cn │ │ ├── Makefile │ │ ├── _static │ │ ├── css │ │ │ └── readthedocs.css │ │ └── image │ │ │ └── mmdet-logo.png │ │ ├── advanced_guides │ │ ├── conventions.md │ │ ├── customize_dataset.md │ │ ├── customize_losses.md │ │ ├── customize_models.md │ │ ├── customize_runtime.md │ │ ├── customize_transforms.md │ │ ├── data_flow.md │ │ ├── datasets.md │ │ ├── engine.md │ │ ├── evaluation.md │ │ ├── how_to.md │ │ ├── index.rst │ │ ├── models.md │ │ ├── structures.md │ │ └── transforms.md │ │ ├── api.rst │ │ ├── article.md │ │ ├── conf.py │ │ ├── get_started.md │ │ ├── index.rst │ │ ├── make.bat │ │ ├── migration │ │ ├── api_and_registry_migration.md │ │ ├── config_migration.md │ │ ├── dataset_migration.md │ │ ├── migration.md │ │ ├── migration_faq.md │ │ └── model_migration.md │ │ ├── model_zoo.md │ │ ├── notes │ │ ├── compatibility.md │ │ ├── faq.md │ │ └── projects.md │ │ ├── overview.md │ │ ├── stat.py │ │ ├── switch_language.md │ │ └── user_guides │ │ ├── config.md │ │ ├── dataset_prepare.md │ │ ├── deploy.md │ │ ├── finetune.md │ │ ├── index.rst │ │ ├── inference.md │ │ ├── init_cfg.md │ │ ├── label_studio.md │ │ ├── new_model.md │ │ ├── robustness_benchmarking.md │ │ ├── semi_det.md │ │ ├── single_stage_as_rpn.md │ │ ├── test.md │ │ ├── test_results_submission.md │ │ ├── train.md │ │ ├── useful_hooks.md │ │ ├── useful_tools.md │ │ └── visualization.md ├── instagen_resources │ ├── coco_base_classes.txt │ ├── coco_base_inds.txt │ ├── coco_classes.pt │ ├── coco_classes.txt │ ├── coco_novel_classes.txt │ └── coco_novel_inds.txt ├── mmdet │ ├── __init__.py │ ├── apis │ │ ├── __init__.py │ │ ├── det_inferencer.py │ │ └── inference.py │ ├── datasets │ │ ├── __init__.py │ │ ├── api_wrappers │ │ │ ├── __init__.py │ │ │ └── coco_api.py │ │ ├── base_det_dataset.py │ │ ├── cityscapes.py │ │ ├── coco.py │ │ ├── coco_panoptic.py │ │ ├── crowdhuman.py │ │ ├── dataset_wrappers.py │ │ ├── deepfashion.py │ │ ├── lvis.py │ │ ├── objects365.py │ │ ├── openimages.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── batch_sampler.py │ │ │ ├── class_aware_sampler.py │ │ │ └── multi_source_sampler.py │ │ ├── transforms │ │ │ ├── __init__.py │ │ │ ├── augment_wrappers.py │ │ │ ├── colorspace.py │ │ │ ├── formatting.py │ │ │ ├── geometric.py │ │ │ ├── instaboost.py │ │ │ ├── loading.py │ │ │ ├── transforms.py │ │ │ └── wrappers.py │ │ ├── utils.py │ │ ├── voc.py │ │ ├── wider_face.py │ │ └── xml_style.py │ ├── engine │ │ ├── __init__.py │ │ ├── hooks │ │ │ ├── __init__.py │ │ │ ├── checkloss_hook.py │ │ │ ├── mean_teacher_hook.py │ │ │ ├── memory_profiler_hook.py │ │ │ ├── num_class_check_hook.py │ │ │ ├── pipeline_switch_hook.py │ │ │ ├── set_epoch_info_hook.py │ │ │ ├── sync_norm_hook.py │ │ │ ├── utils.py │ │ │ ├── visualization_hook.py │ │ │ └── yolox_mode_switch_hook.py │ │ ├── optimizers │ │ │ ├── __init__.py │ │ │ └── layer_decay_optimizer_constructor.py │ │ ├── runner │ │ │ ├── __init__.py │ │ │ └── loops.py │ │ └── schedulers │ │ │ ├── __init__.py │ │ │ └── quadratic_warmup.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── functional │ │ │ ├── __init__.py │ │ │ ├── bbox_overlaps.py │ │ │ ├── cityscapes_utils.py │ │ │ ├── class_names.py │ │ │ ├── mean_ap.py │ │ │ ├── panoptic_utils.py │ │ │ └── recall.py │ │ └── metrics │ │ │ ├── __init__.py │ │ │ ├── cityscapes_metric.py │ │ │ ├── coco_metric.py │ │ │ ├── coco_occluded_metric.py │ │ │ ├── coco_panoptic_metric.py │ │ │ ├── crowdhuman_metric.py │ │ │ ├── dump_det_results.py │ │ │ ├── dump_proposals_metric.py │ │ │ ├── lvis_metric.py │ │ │ ├── openimages_metric.py │ │ │ └── voc_metric.py │ ├── models │ │ ├── __init__.py │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ ├── csp_darknet.py │ │ │ ├── cspnext.py │ │ │ ├── darknet.py │ │ │ ├── detectors_resnet.py │ │ │ ├── detectors_resnext.py │ │ │ ├── efficientnet.py │ │ │ ├── hourglass.py │ │ │ ├── hrnet.py │ │ │ ├── mobilenet_v2.py │ │ │ ├── pvt.py │ │ │ ├── regnet.py │ │ │ ├── res2net.py │ │ │ ├── resnest.py │ │ │ ├── resnet.py │ │ │ ├── resnext.py │ │ │ ├── ssd_vgg.py │ │ │ ├── stable_diffusion.py │ │ │ ├── swin.py │ │ │ └── trident_resnet.py │ │ ├── data_preprocessors │ │ │ ├── __init__.py │ │ │ └── data_preprocessor.py │ │ ├── dense_heads │ │ │ ├── __init__.py │ │ │ ├── anchor_free_head.py │ │ │ ├── anchor_head.py │ │ │ ├── atss_head.py │ │ │ ├── autoassign_head.py │ │ │ ├── base_dense_head.py │ │ │ ├── base_mask_head.py │ │ │ ├── boxinst_head.py │ │ │ ├── cascade_rpn_head.py │ │ │ ├── centernet_head.py │ │ │ ├── centernet_update_head.py │ │ │ ├── centripetal_head.py │ │ │ ├── condinst_head.py │ │ │ ├── conditional_detr_head.py │ │ │ ├── corner_head.py │ │ │ ├── dab_detr_head.py │ │ │ ├── ddod_head.py │ │ │ ├── deformable_detr_head.py │ │ │ ├── dense_test_mixins.py │ │ │ ├── detr_head.py │ │ │ ├── dino_head.py │ │ │ ├── embedding_rpn_head.py │ │ │ ├── fcos_head.py │ │ │ ├── fovea_head.py │ │ │ ├── free_anchor_retina_head.py │ │ │ ├── fsaf_head.py │ │ │ ├── ga_retina_head.py │ │ │ ├── ga_rpn_head.py │ │ │ ├── gfl_head.py │ │ │ ├── grounding_head.py │ │ │ ├── guided_anchor_head.py │ │ │ ├── lad_head.py │ │ │ ├── ld_head.py │ │ │ ├── mask2former_head.py │ │ │ ├── maskformer_head.py │ │ │ ├── nasfcos_head.py │ │ │ ├── paa_head.py │ │ │ ├── pisa_retinanet_head.py │ │ │ ├── pisa_ssd_head.py │ │ │ ├── reppoints_head.py │ │ │ ├── retina_head.py │ │ │ ├── retina_sepbn_head.py │ │ │ ├── rpn_head.py │ │ │ ├── rtmdet_head.py │ │ │ ├── rtmdet_ins_head.py │ │ │ ├── sabl_retina_head.py │ │ │ ├── solo_head.py │ │ │ ├── solov2_head.py │ │ │ ├── ssd_head.py │ │ │ ├── tood_head.py │ │ │ ├── vfnet_head.py │ │ │ ├── yolact_head.py │ │ │ ├── yolo_head.py │ │ │ ├── yolof_head.py │ │ │ └── yolox_head.py │ │ ├── detectors │ │ │ ├── __init__.py │ │ │ ├── atss.py │ │ │ ├── autoassign.py │ │ │ ├── base.py │ │ │ ├── base_detr.py │ │ │ ├── boxinst.py │ │ │ ├── cascade_rcnn.py │ │ │ ├── centernet.py │ │ │ ├── condinst.py │ │ │ ├── conditional_detr.py │ │ │ ├── cornernet.py │ │ │ ├── crowddet.py │ │ │ ├── d2_wrapper.py │ │ │ ├── dab_detr.py │ │ │ ├── ddod.py │ │ │ ├── deformable_detr.py │ │ │ ├── detr.py │ │ │ ├── dino.py │ │ │ ├── fast_rcnn.py │ │ │ ├── faster_rcnn.py │ │ │ ├── fcos.py │ │ │ ├── fovea.py │ │ │ ├── fsaf.py │ │ │ ├── gfl.py │ │ │ ├── grid_rcnn.py │ │ │ ├── htc.py │ │ │ ├── instagen.py │ │ │ ├── kd_one_stage.py │ │ │ ├── lad.py │ │ │ ├── mask2former.py │ │ │ ├── mask_rcnn.py │ │ │ ├── mask_scoring_rcnn.py │ │ │ ├── maskformer.py │ │ │ ├── nasfcos.py │ │ │ ├── paa.py │ │ │ ├── panoptic_fpn.py │ │ │ ├── panoptic_two_stage_segmentor.py │ │ │ ├── point_rend.py │ │ │ ├── queryinst.py │ │ │ ├── reppoints_detector.py │ │ │ ├── retinanet.py │ │ │ ├── rpn.py │ │ │ ├── rtmdet.py │ │ │ ├── scnet.py │ │ │ ├── semi_base.py │ │ │ ├── single_stage.py │ │ │ ├── single_stage_instance_seg.py │ │ │ ├── soft_teacher.py │ │ │ ├── solo.py │ │ │ ├── solov2.py │ │ │ ├── sparse_rcnn.py │ │ │ ├── tood.py │ │ │ ├── trident_faster_rcnn.py │ │ │ ├── two_stage.py │ │ │ ├── vfnet.py │ │ │ ├── yolact.py │ │ │ ├── yolo.py │ │ │ ├── yolof.py │ │ │ └── yolox.py │ │ ├── layers │ │ │ ├── __init__.py │ │ │ ├── activations.py │ │ │ ├── bbox_nms.py │ │ │ ├── brick_wrappers.py │ │ │ ├── conv_upsample.py │ │ │ ├── csp_layer.py │ │ │ ├── dropblock.py │ │ │ ├── ema.py │ │ │ ├── inverted_residual.py │ │ │ ├── matrix_nms.py │ │ │ ├── msdeformattn_pixel_decoder.py │ │ │ ├── normed_predictor.py │ │ │ ├── pixel_decoder.py │ │ │ ├── positional_encoding.py │ │ │ ├── res_layer.py │ │ │ ├── se_layer.py │ │ │ └── transformer │ │ │ │ ├── __init__.py │ │ │ │ ├── conditional_detr_layers.py │ │ │ │ ├── dab_detr_layers.py │ │ │ │ ├── deformable_detr_layers.py │ │ │ │ ├── detr_layers.py │ │ │ │ ├── dino_layers.py │ │ │ │ ├── fuse_modules.py │ │ │ │ ├── grounding_layers.py │ │ │ │ ├── grounding_utils.py │ │ │ │ ├── mask2former_layers.py │ │ │ │ ├── transformer_vanilla.py │ │ │ │ └── utils.py │ │ ├── losses │ │ │ ├── __init__.py │ │ │ ├── accuracy.py │ │ │ ├── ae_loss.py │ │ │ ├── balanced_l1_loss.py │ │ │ ├── cross_entropy_loss.py │ │ │ ├── dice_loss.py │ │ │ ├── focal_loss.py │ │ │ ├── gaussian_focal_loss.py │ │ │ ├── gfocal_loss.py │ │ │ ├── ghm_loss.py │ │ │ ├── iou_loss.py │ │ │ ├── kd_loss.py │ │ │ ├── masked_cross_entropy_loss.py │ │ │ ├── mse_loss.py │ │ │ ├── pisa_loss.py │ │ │ ├── seesaw_loss.py │ │ │ ├── smooth_l1_loss.py │ │ │ ├── utils.py │ │ │ └── varifocal_loss.py │ │ ├── necks │ │ │ ├── __init__.py │ │ │ ├── bfp.py │ │ │ ├── channel_mapper.py │ │ │ ├── cspnext_pafpn.py │ │ │ ├── ct_resnet_neck.py │ │ │ ├── dilated_encoder.py │ │ │ ├── dyhead.py │ │ │ ├── fpg.py │ │ │ ├── fpn.py │ │ │ ├── fpn_carafe.py │ │ │ ├── hrfpn.py │ │ │ ├── nas_fpn.py │ │ │ ├── nasfcos_fpn.py │ │ │ ├── pafpn.py │ │ │ ├── rfp.py │ │ │ ├── ssd_neck.py │ │ │ ├── ssh.py │ │ │ ├── yolo_neck.py │ │ │ └── yolox_pafpn.py │ │ ├── roi_heads │ │ │ ├── __init__.py │ │ │ ├── base_roi_head.py │ │ │ ├── bbox_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── bbox_head.py │ │ │ │ ├── convfc_bbox_head.py │ │ │ │ ├── dii_head.py │ │ │ │ ├── double_bbox_head.py │ │ │ │ ├── multi_instance_bbox_head.py │ │ │ │ ├── sabl_head.py │ │ │ │ └── scnet_bbox_head.py │ │ │ ├── cascade_roi_head.py │ │ │ ├── double_roi_head.py │ │ │ ├── dynamic_roi_head.py │ │ │ ├── grid_roi_head.py │ │ │ ├── htc_roi_head.py │ │ │ ├── mask_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── coarse_mask_head.py │ │ │ │ ├── dynamic_mask_head.py │ │ │ │ ├── fcn_mask_head.py │ │ │ │ ├── feature_relay_head.py │ │ │ │ ├── fused_semantic_head.py │ │ │ │ ├── global_context_head.py │ │ │ │ ├── grid_head.py │ │ │ │ ├── htc_mask_head.py │ │ │ │ ├── mask_point_head.py │ │ │ │ ├── maskiou_head.py │ │ │ │ ├── scnet_mask_head.py │ │ │ │ └── scnet_semantic_head.py │ │ │ ├── mask_scoring_roi_head.py │ │ │ ├── multi_instance_roi_head.py │ │ │ ├── pisa_roi_head.py │ │ │ ├── point_rend_roi_head.py │ │ │ ├── roi_extractors │ │ │ │ ├── __init__.py │ │ │ │ ├── base_roi_extractor.py │ │ │ │ ├── generic_roi_extractor.py │ │ │ │ └── single_level_roi_extractor.py │ │ │ ├── scnet_roi_head.py │ │ │ ├── shared_heads │ │ │ │ ├── __init__.py │ │ │ │ └── res_layer.py │ │ │ ├── sparse_roi_head.py │ │ │ ├── standard_roi_head.py │ │ │ ├── test_mixins.py │ │ │ └── trident_roi_head.py │ │ ├── seg_heads │ │ │ ├── __init__.py │ │ │ ├── base_semantic_head.py │ │ │ ├── panoptic_fpn_head.py │ │ │ └── panoptic_fusion_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── base_panoptic_fusion_head.py │ │ │ │ ├── heuristic_fusion_head.py │ │ │ │ └── maskformer_fusion_head.py │ │ ├── task_modules │ │ │ ├── __init__.py │ │ │ ├── assigners │ │ │ │ ├── __init__.py │ │ │ │ ├── approx_max_iou_assigner.py │ │ │ │ ├── assign_result.py │ │ │ │ ├── atss_assigner.py │ │ │ │ ├── base_assigner.py │ │ │ │ ├── center_region_assigner.py │ │ │ │ ├── dynamic_soft_label_assigner.py │ │ │ │ ├── grid_assigner.py │ │ │ │ ├── hungarian_assigner.py │ │ │ │ ├── iou2d_calculator.py │ │ │ │ ├── match_cost.py │ │ │ │ ├── max_iou_assigner.py │ │ │ │ ├── multi_instance_assigner.py │ │ │ │ ├── point_assigner.py │ │ │ │ ├── region_assigner.py │ │ │ │ ├── sim_ota_assigner.py │ │ │ │ ├── task_aligned_assigner.py │ │ │ │ └── uniform_assigner.py │ │ │ ├── builder.py │ │ │ ├── coders │ │ │ │ ├── __init__.py │ │ │ │ ├── base_bbox_coder.py │ │ │ │ ├── bucketing_bbox_coder.py │ │ │ │ ├── delta_xywh_bbox_coder.py │ │ │ │ ├── distance_point_bbox_coder.py │ │ │ │ ├── legacy_delta_xywh_bbox_coder.py │ │ │ │ ├── pseudo_bbox_coder.py │ │ │ │ ├── tblr_bbox_coder.py │ │ │ │ └── yolo_bbox_coder.py │ │ │ ├── prior_generators │ │ │ │ ├── __init__.py │ │ │ │ ├── anchor_generator.py │ │ │ │ ├── point_generator.py │ │ │ │ └── utils.py │ │ │ └── samplers │ │ │ │ ├── __init__.py │ │ │ │ ├── base_sampler.py │ │ │ │ ├── combined_sampler.py │ │ │ │ ├── instance_balanced_pos_sampler.py │ │ │ │ ├── iou_balanced_neg_sampler.py │ │ │ │ ├── mask_pseudo_sampler.py │ │ │ │ ├── mask_sampling_result.py │ │ │ │ ├── multi_instance_random_sampler.py │ │ │ │ ├── multi_instance_sampling_result.py │ │ │ │ ├── ohem_sampler.py │ │ │ │ ├── pseudo_sampler.py │ │ │ │ ├── random_sampler.py │ │ │ │ ├── sampling_result.py │ │ │ │ └── score_hlr_sampler.py │ │ ├── test_time_augs │ │ │ ├── __init__.py │ │ │ ├── det_tta.py │ │ │ └── merge_augs.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── gaussian_target.py │ │ │ ├── make_divisible.py │ │ │ ├── misc.py │ │ │ ├── panoptic_gt_processing.py │ │ │ └── point_sample.py │ ├── registry.py │ ├── run_demo.py │ ├── structures │ │ ├── __init__.py │ │ ├── bbox │ │ │ ├── __init__.py │ │ │ ├── base_boxes.py │ │ │ ├── bbox_overlaps.py │ │ │ ├── box_type.py │ │ │ ├── horizontal_boxes.py │ │ │ └── transforms.py │ │ ├── det_data_sample.py │ │ └── mask │ │ │ ├── __init__.py │ │ │ ├── mask_target.py │ │ │ ├── structures.py │ │ │ └── utils.py │ ├── testing │ │ ├── __init__.py │ │ ├── _fast_stop_training_hook.py │ │ └── _utils.py │ ├── utils │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── collect_env.py │ │ ├── compat_config.py │ │ ├── contextmanagers.py │ │ ├── dist_utils.py │ │ ├── logger.py │ │ ├── memory.py │ │ ├── misc.py │ │ ├── profiling.py │ │ ├── replace_cfg_vals.py │ │ ├── setup_env.py │ │ ├── split_batch.py │ │ ├── typing_utils.py │ │ ├── util_mixins.py │ │ └── util_random.py │ ├── version.py │ └── visualization │ │ ├── __init__.py │ │ ├── local_visualizer.py │ │ └── palette.py ├── model-index.yml ├── projects │ ├── ConvNeXt-V2 │ │ ├── README.md │ │ └── configs │ │ │ └── mask-rcnn_convnext-v2-b_fpn_lsj-3x-fcmae_coco.py │ ├── Detic │ │ ├── README.md │ │ ├── configs │ │ │ └── detic_centernet2_swin-b_fpn_4x_lvis-coco-in21k.py │ │ ├── demo.py │ │ └── detic │ │ │ ├── __init__.py │ │ │ ├── centernet_rpn_head.py │ │ │ ├── detic_bbox_head.py │ │ │ ├── detic_roi_head.py │ │ │ ├── text_encoder.py │ │ │ ├── utils.py │ │ │ └── zero_shot_classifier.py │ ├── DiffusionDet │ │ ├── README.md │ │ ├── configs │ │ │ └── diffusiondet_r50_fpn_500-proposals_1-step_crop-ms-480-800-450k_coco.py │ │ ├── diffusiondet │ │ │ ├── __init__.py │ │ │ ├── diffusiondet.py │ │ │ ├── head.py │ │ │ └── loss.py │ │ └── model_converters │ │ │ └── diffusiondet_resnet_to_mmdet.py │ ├── EfficientDet │ │ ├── README.md │ │ ├── configs │ │ │ ├── efficientdet_effb0_bifpn_8xb16-crop512-300e_coco.py │ │ │ ├── efficientdet_effb3_bifpn_8xb16-crop896-300e_coco-90cls.py │ │ │ ├── efficientdet_effb3_bifpn_8xb16-crop896-300e_coco.py │ │ │ └── tensorflow │ │ │ │ └── efficientdet_effb0_bifpn_8xb16-crop512-300e_coco_tf.py │ │ ├── convert_tf_to_pt.py │ │ └── efficientdet │ │ │ ├── __init__.py │ │ │ ├── bifpn.py │ │ │ ├── efficientdet.py │ │ │ ├── efficientdet_head.py │ │ │ ├── huber_loss.py │ │ │ ├── tensorflow │ │ │ ├── anchor_generator.py │ │ │ ├── api_wrappers │ │ │ │ ├── __init__.py │ │ │ │ └── coco_api.py │ │ │ ├── coco_90class.py │ │ │ ├── coco_90metric.py │ │ │ ├── trans_max_iou_assigner.py │ │ │ └── yxyx_bbox_coder.py │ │ │ └── utils.py │ ├── LabelStudio │ │ ├── backend_template │ │ │ ├── _wsgi.py │ │ │ └── mmdetection.py │ │ └── readme.md │ ├── SparseInst │ │ ├── README.md │ │ ├── configs │ │ │ └── sparseinst_r50_iam_8xb8-ms-270k_coco.py │ │ └── sparseinst │ │ │ ├── __init__.py │ │ │ ├── decoder.py │ │ │ ├── encoder.py │ │ │ ├── loss.py │ │ │ └── sparseinst.py │ └── example_project │ │ ├── README.md │ │ ├── configs │ │ └── faster-rcnn_dummy-resnet_fpn_1x_coco.py │ │ └── dummy │ │ ├── __init__.py │ │ └── dummy_resnet.py ├── pytest.ini ├── requirements.txt ├── requirements │ ├── albu.txt │ ├── build.txt │ ├── docs.txt │ ├── mminstall.txt │ ├── optional.txt │ ├── readthedocs.txt │ ├── runtime.txt │ └── tests.txt ├── resources │ ├── coco_test_12510.jpg │ ├── corruptions_sev_3.png │ ├── data_pipeline.png │ ├── loss_curve.png │ ├── mmdet-logo.png │ ├── qq_group_qrcode.jpg │ └── zhihu_qrcode.jpg ├── sd_resources │ └── alphas_cumprod.npy ├── setup.cfg ├── setup.py ├── tests │ ├── test_apis │ │ ├── test_det_inferencer.py │ │ └── test_inference.py │ ├── test_datasets │ │ ├── test_cityscapes.py │ │ ├── test_coco.py │ │ ├── test_coco_api_wrapper.py │ │ ├── test_coco_panoptic.py │ │ ├── test_crowdhuman.py │ │ ├── test_lvis.py │ │ ├── test_objects365.py │ │ ├── test_openimages.py │ │ ├── test_pascal_voc.py │ │ ├── test_samplers │ │ │ ├── test_batch_sampler.py │ │ │ └── test_multi_source_sampler.py │ │ ├── test_transforms │ │ │ ├── __init__.py │ │ │ ├── test_augment_wrappers.py │ │ │ ├── test_colorspace.py │ │ │ ├── test_formatting.py │ │ │ ├── test_geometric.py │ │ │ ├── test_instaboost.py │ │ │ ├── test_loading.py │ │ │ ├── test_transforms.py │ │ │ ├── test_wrappers.py │ │ │ └── utils.py │ │ ├── test_tta.py │ │ └── test_wider_face.py │ ├── test_engine │ │ ├── __init__.py │ │ ├── test_hooks │ │ │ ├── test_checkloss_hook.py │ │ │ ├── test_mean_teacher_hook.py │ │ │ ├── test_memory_profiler_hook.py │ │ │ ├── test_num_class_check_hook.py │ │ │ ├── test_sync_norm_hook.py │ │ │ ├── test_visualization_hook.py │ │ │ └── test_yolox_mode_switch_hook.py │ │ ├── test_optimizers │ │ │ ├── __init__.py │ │ │ └── test_layer_decay_optimizer_constructor.py │ │ ├── test_runner │ │ │ └── test_loops.py │ │ └── test_schedulers │ │ │ └── test_quadratic_warmup.py │ ├── test_evaluation │ │ └── test_metrics │ │ │ ├── __init__.py │ │ │ ├── test_cityscapes_metric.py │ │ │ ├── test_coco_metric.py │ │ │ ├── test_coco_occluded_metric.py │ │ │ ├── test_coco_panoptic_metric.py │ │ │ ├── test_crowdhuman_metric.py │ │ │ ├── test_dump_det_results.py │ │ │ ├── test_lvis_metric.py │ │ │ └── test_openimages_metric.py │ ├── test_models │ │ ├── test_backbones │ │ │ ├── __init__.py │ │ │ ├── test_csp_darknet.py │ │ │ ├── test_detectors_resnet.py │ │ │ ├── test_efficientnet.py │ │ │ ├── test_hourglass.py │ │ │ ├── test_hrnet.py │ │ │ ├── test_mobilenet_v2.py │ │ │ ├── test_pvt.py │ │ │ ├── test_regnet.py │ │ │ ├── test_renext.py │ │ │ ├── test_res2net.py │ │ │ ├── test_resnest.py │ │ │ ├── test_resnet.py │ │ │ ├── test_swin.py │ │ │ ├── test_trident_resnet.py │ │ │ └── utils.py │ │ ├── test_data_preprocessors │ │ │ ├── test_batch_resize.py │ │ │ ├── test_boxinst_preprocessor.py │ │ │ └── test_data_preprocessor.py │ │ ├── test_dense_heads │ │ │ ├── test_anchor_head.py │ │ │ ├── test_atss_head.py │ │ │ ├── test_autoassign_head.py │ │ │ ├── test_boxinst_head.py │ │ │ ├── test_cascade_rpn_head.py │ │ │ ├── test_centernet_head.py │ │ │ ├── test_centernet_update_head.py │ │ │ ├── test_centripetal_head.py │ │ │ ├── test_condinst_head.py │ │ │ ├── test_corner_head.py │ │ │ ├── test_ddod_head.py │ │ │ ├── test_embedding_rpn_head.py │ │ │ ├── test_fcos_head.py │ │ │ ├── test_fovea_head.py │ │ │ ├── test_free_anchor_head.py │ │ │ ├── test_fsaf_head.py │ │ │ ├── test_ga_retina_head.py │ │ │ ├── test_ga_rpn_head.py │ │ │ ├── test_gfl_head.py │ │ │ ├── test_guided_anchor_head.py │ │ │ ├── test_lad_head.py │ │ │ ├── test_ld_head.py │ │ │ ├── test_nasfcos_head.py │ │ │ ├── test_paa_head.py │ │ │ ├── test_pisa_retinanet_head.py │ │ │ ├── test_pisa_ssd_head.py │ │ │ ├── test_reppoints_head.py │ │ │ ├── test_retina_sepBN_head.py │ │ │ ├── test_rpn_head.py │ │ │ ├── test_sabl_retina_head.py │ │ │ ├── test_solo_head.py │ │ │ ├── test_solov2_head.py │ │ │ ├── test_ssd_head.py │ │ │ ├── test_tood_head.py │ │ │ ├── test_vfnet_head.py │ │ │ ├── test_yolo_head.py │ │ │ ├── test_yolof_head.py │ │ │ └── test_yolox_head.py │ │ ├── test_detectors │ │ │ ├── test_conditional_detr.py │ │ │ ├── test_cornernet.py │ │ │ ├── test_dab_detr.py │ │ │ ├── test_deformable_detr.py │ │ │ ├── test_detr.py │ │ │ ├── test_dino.py │ │ │ ├── test_kd_single_stage.py │ │ │ ├── test_maskformer.py │ │ │ ├── test_panoptic_two_stage_segmentor.py │ │ │ ├── test_rpn.py │ │ │ ├── test_semi_base.py │ │ │ ├── test_single_stage.py │ │ │ ├── test_single_stage_instance_seg.py │ │ │ └── test_two_stage.py │ │ ├── test_layers │ │ │ ├── __init__.py │ │ │ ├── test_brick_wrappers.py │ │ │ ├── test_conv_upsample.py │ │ │ ├── test_ema.py │ │ │ ├── test_inverted_residual.py │ │ │ ├── test_plugins.py │ │ │ ├── test_position_encoding.py │ │ │ ├── test_se_layer.py │ │ │ └── test_transformer.py │ │ ├── test_losses │ │ │ ├── test_gaussian_focal_loss.py │ │ │ └── test_loss.py │ │ ├── test_necks │ │ │ ├── test_ct_resnet_neck.py │ │ │ └── test_necks.py │ │ ├── test_roi_heads │ │ │ ├── test_bbox_heads │ │ │ │ ├── test_bbox_head.py │ │ │ │ ├── test_double_bbox_head.py │ │ │ │ ├── test_multi_instance_bbox_head.py │ │ │ │ ├── test_sabl_bbox_head.py │ │ │ │ └── test_scnet_bbox_head.py │ │ │ ├── test_cascade_roi_head.py │ │ │ ├── test_dynamic_roi_head.py │ │ │ ├── test_grid_roi_head.py │ │ │ ├── test_htc_roi_head.py │ │ │ ├── test_mask_heads │ │ │ │ ├── test_coarse_mask_head.py │ │ │ │ ├── test_fcn_mask_head.py │ │ │ │ ├── test_feature_relay_head.py │ │ │ │ ├── test_fused_semantic_head.py │ │ │ │ ├── test_global_context_head.py │ │ │ │ ├── test_grid_head.py │ │ │ │ ├── test_htc_mask_head.py │ │ │ │ ├── test_maskiou_head.py │ │ │ │ ├── test_scnet_mask_head.py │ │ │ │ └── test_scnet_semantic_head.py │ │ │ ├── test_mask_scoring_roI_head.py │ │ │ ├── test_multi_instance_roi_head.py │ │ │ ├── test_pisa_roi_head.py │ │ │ ├── test_point_rend_roi_head.py │ │ │ ├── test_roi_extractors │ │ │ │ ├── test_generic_roi_extractor.py │ │ │ │ └── test_single_level_roi_extractor.py │ │ │ ├── test_scnet_roi_head.py │ │ │ ├── test_sparse_roi_head.py │ │ │ ├── test_standard_roi_head.py │ │ │ └── test_trident_roi_head.py │ │ ├── test_seg_heads │ │ │ ├── test_heuristic_fusion_head.py │ │ │ ├── test_maskformer_fusion_head.py │ │ │ └── test_panoptic_fpn_head.py │ │ ├── test_task_modules │ │ │ ├── __init__.py │ │ │ ├── test_assigners │ │ │ │ ├── test_approx_max_iou_assigner.py │ │ │ │ ├── test_atss_assigner.py │ │ │ │ ├── test_center_region_assigner.py │ │ │ │ ├── test_dynamic_soft_label_assigner.py │ │ │ │ ├── test_grid_assigner.py │ │ │ │ ├── test_hungarian_assigner.py │ │ │ │ ├── test_max_iou_assigner.py │ │ │ │ ├── test_point_assigner.py │ │ │ │ ├── test_region_assigner.py │ │ │ │ ├── test_simota_assigner.py │ │ │ │ ├── test_task_aligned_assigner.py │ │ │ │ └── test_task_uniform_assigner.py │ │ │ ├── test_coder │ │ │ │ └── test_delta_xywh_bbox_coder.py │ │ │ ├── test_iou2d_calculator.py │ │ │ ├── test_prior_generators │ │ │ │ └── test_anchor_generator.py │ │ │ └── test_samplers │ │ │ │ └── test_pesudo_sampler.py │ │ ├── test_tta │ │ │ └── test_det_tta.py │ │ └── test_utils │ │ │ ├── test_misc.py │ │ │ └── test_model_misc.py │ ├── test_structures │ │ ├── __init__.py │ │ ├── test_bbox │ │ │ ├── __init__.py │ │ │ ├── test_base_boxes.py │ │ │ ├── test_box_type.py │ │ │ ├── test_horizontal_boxes.py │ │ │ └── utils.py │ │ ├── test_det_data_sample.py │ │ └── test_mask │ │ │ └── test_mask_structures.py │ ├── test_utils │ │ ├── test_benchmark.py │ │ ├── test_memory.py │ │ ├── test_replace_cfg_vals.py │ │ └── test_setup_env.py │ └── test_visualization │ │ ├── test_local_visualizer.py │ │ └── test_palette.py └── tools │ ├── analysis_tools │ ├── analyze_logs.py │ ├── analyze_results.py │ ├── benchmark.py │ ├── browse_dataset.py │ ├── coco_error_analysis.py │ ├── coco_occluded_separated_recall.py │ ├── confusion_matrix.py │ ├── eval_metric.py │ ├── get_flops.py │ ├── optimize_anchors.py │ ├── robustness_eval.py │ └── test_robustness.py │ ├── dataset_converters │ ├── cityscapes.py │ ├── images2coco.py │ └── pascal_voc.py │ ├── deployment │ ├── mmdet2torchserve.py │ ├── mmdet_handler.py │ └── test_torchserver.py │ ├── dist_test.sh │ ├── dist_train.sh │ ├── misc │ ├── download_dataset.py │ ├── gen_coco_panoptic_test_info.py │ ├── get_crowdhuman_id_hw.py │ ├── get_image_metas.py │ ├── print_config.py │ └── split_coco.py │ ├── model_converters │ ├── detectron2_to_mmdet.py │ ├── detectron2pytorch.py │ ├── publish_model.py │ ├── regnet2mmdet.py │ ├── selfsup2mmdet.py │ ├── upgrade_model_version.py │ └── upgrade_ssd_version.py │ ├── slurm_test.sh │ ├── slurm_train.sh │ ├── test.py │ └── train.py ├── models ├── first_stage_models │ ├── kl-f16 │ │ └── config.yaml │ ├── kl-f32 │ │ └── config.yaml │ ├── kl-f4 │ │ └── config.yaml │ ├── kl-f8 │ │ └── config.yaml │ ├── vq-f16 │ │ └── config.yaml │ ├── vq-f4-noattn │ │ └── config.yaml │ ├── vq-f4 │ │ └── config.yaml │ ├── vq-f8-n256 │ │ └── config.yaml │ └── vq-f8 │ │ └── config.yaml └── ldm │ ├── bsr_sr │ └── config.yaml │ ├── celeba256 │ └── config.yaml │ ├── cin256 │ └── config.yaml │ ├── ffhq256 │ └── config.yaml │ ├── inpainting_big │ └── config.yaml │ ├── layout2img-openimages256 │ └── config.yaml │ ├── lsun_beds256 │ └── config.yaml │ ├── lsun_churches256 │ └── config.yaml │ ├── semantic_synthesis256 │ └── config.yaml │ ├── semantic_synthesis512 │ └── config.yaml │ └── text2img256 │ └── config.yaml ├── notebook_helpers.py ├── notebooks └── imagic.ipynb ├── requirements.txt ├── resources ├── coco-ovd.png ├── method.png ├── overview.png └── qualitative_result.png ├── scripts ├── autoencoder-eval.py ├── checker.py ├── cmd_on_new_ckpt.py ├── convert_and_push_to_hub.py ├── convert_sd_to_diffusers.py ├── demo │ └── inpainting.py ├── download_first_stages.sh ├── download_models.sh ├── gradio_variations.py ├── image_variations.py ├── img2img.py ├── inpaint.py ├── inpaint_sd.py ├── latent_imagenet_diffusion.ipynb ├── logging_template.py ├── mnist-distributed.py ├── printckpt.py ├── prompts │ ├── aesthetic-prompts-plain.txt │ ├── aesthetic-prompts-surrealism.txt │ ├── prompts-with-wings.txt │ ├── six-prompts │ ├── weird-dalle-prompts.txt │ ├── wings1.txt │ ├── wings2.txt │ ├── wings3.txt │ └── wings4.txt ├── prune-ckpt.py ├── sample_diffusion.py ├── slimify.py ├── slurm │ ├── README.md │ ├── resume_512 │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── resume_512_improvedaesthetic │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── resume_768_hr │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v1-upscaling-f16-pretraining-512-aesthetics │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v1_edgeinpainting │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v1_iahr_torch111 │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v1_iahr_torch111_ucg │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v1_improvedaesthetics │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v1_improvedaesthetics_torch111 │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v1_inpainting_aesthetics-larger-masks-ucg │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v1_inpainting_aesthetics-larger-masks │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v1_inpainting_improvedaesthetics_torch111 │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v1_laionhr_torch111 │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v2_laionhr1024 │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v2_laionhr1024_2 │ │ ├── launcher.sh │ │ └── sbatch.sh │ ├── v2_pretraining │ │ ├── launcher.sh │ │ └── sbatch.sh │ └── v3_pretraining │ │ ├── launcher.sh │ │ └── sbatch.sh ├── test_gpu.py ├── test_gpu.sh ├── txt2img.py └── vqgan_codebook_visualizer.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/README.md -------------------------------------------------------------------------------- /assets/Imagic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/Imagic.jpeg -------------------------------------------------------------------------------- /assets/a-painting-of-a-fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/a-painting-of-a-fire.png -------------------------------------------------------------------------------- /assets/a-photograph-of-a-fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/a-photograph-of-a-fire.png -------------------------------------------------------------------------------- /assets/a-shirt-with-a-fire-printed-on-it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/a-shirt-with-a-fire-printed-on-it.png -------------------------------------------------------------------------------- /assets/a-shirt-with-the-inscription-'fire'.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/a-shirt-with-the-inscription-'fire'.png -------------------------------------------------------------------------------- /assets/a-watercolor-painting-of-a-fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/a-watercolor-painting-of-a-fire.png -------------------------------------------------------------------------------- /assets/birdhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/birdhouse.png -------------------------------------------------------------------------------- /assets/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/fire.png -------------------------------------------------------------------------------- /assets/gradio_variations.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/gradio_variations.jpeg -------------------------------------------------------------------------------- /assets/im-vars-thin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/im-vars-thin.jpg -------------------------------------------------------------------------------- /assets/im-vars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/im-vars.jpg -------------------------------------------------------------------------------- /assets/img-vars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/img-vars.jpg -------------------------------------------------------------------------------- /assets/inpainting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/inpainting.png -------------------------------------------------------------------------------- /assets/modelfigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/modelfigure.png -------------------------------------------------------------------------------- /assets/pokemontage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/pokemontage.jpg -------------------------------------------------------------------------------- /assets/reconstruction1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/reconstruction1.png -------------------------------------------------------------------------------- /assets/reconstruction2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/reconstruction2.png -------------------------------------------------------------------------------- /assets/results.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/results.gif -------------------------------------------------------------------------------- /assets/samples/grid-0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/samples/grid-0001.png -------------------------------------------------------------------------------- /assets/samples/grid-0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/samples/grid-0006.png -------------------------------------------------------------------------------- /assets/samples/grid-0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/samples/grid-0007.png -------------------------------------------------------------------------------- /assets/samples/grid-0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/samples/grid-0008.png -------------------------------------------------------------------------------- /assets/the-earth-is-on-fire,-oil-on-canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/the-earth-is-on-fire,-oil-on-canvas.png -------------------------------------------------------------------------------- /assets/txt2img-convsample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/txt2img-convsample.png -------------------------------------------------------------------------------- /assets/txt2img-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/assets/txt2img-preview.png -------------------------------------------------------------------------------- /configs/autoencoder/autoencoder_kl_16x16x16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/autoencoder/autoencoder_kl_16x16x16.yaml -------------------------------------------------------------------------------- /configs/autoencoder/autoencoder_kl_32x32x4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/autoencoder/autoencoder_kl_32x32x4.yaml -------------------------------------------------------------------------------- /configs/autoencoder/autoencoder_kl_64x64x3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/autoencoder/autoencoder_kl_64x64x3.yaml -------------------------------------------------------------------------------- /configs/autoencoder/autoencoder_kl_8x8x64.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/autoencoder/autoencoder_kl_8x8x64.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/celebahq-ldm-vq-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/latent-diffusion/celebahq-ldm-vq-4.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/cin-ldm-vq-f8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/latent-diffusion/cin-ldm-vq-f8.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/cin256-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/latent-diffusion/cin256-v2.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/ffhq-ldm-vq-4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/latent-diffusion/ffhq-ldm-vq-4.yaml -------------------------------------------------------------------------------- /configs/latent-diffusion/txt2img-1p4B-eval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/latent-diffusion/txt2img-1p4B-eval.yaml -------------------------------------------------------------------------------- /configs/sd-finetune/coco_base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/sd-finetune/coco_base.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/dev.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/dev_mn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/dev_mn.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/dev_mn_dummy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/dev_mn_dummy.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/pokemon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/pokemon.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/txt2img-ldm-vae-f8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/txt2img-ldm-vae-f8.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/upscaling_256.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/upscaling_256.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/upscaling_512.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/upscaling_512.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v1-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/v1-inference.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v1-inference_ema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/v1-inference_ema.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v1_improvedaesthetics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/v1_improvedaesthetics.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v1_laionhr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/v1_laionhr.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v2_laionhr1024.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/v2_laionhr1024.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v2_laionhr1024_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/v2_laionhr1024_2.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v2_pretraining.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/v2_pretraining.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v3_pretraining.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/configs/stable-diffusion/v3_pretraining.yaml -------------------------------------------------------------------------------- /data/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/data/DejaVuSans.ttf -------------------------------------------------------------------------------- /data/captions_val2014.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/data/captions_val2014.json -------------------------------------------------------------------------------- /data/example_conditioning/text_conditional/sample_0.txt: -------------------------------------------------------------------------------- 1 | A basket of cerries 2 | -------------------------------------------------------------------------------- /data/imagenet_clsidx_to_label.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/data/imagenet_clsidx_to_label.txt -------------------------------------------------------------------------------- /data/imagenet_train_hr_indices.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/data/imagenet_train_hr_indices.p -------------------------------------------------------------------------------- /data/imagenet_val_hr_indices.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/data/imagenet_val_hr_indices.p -------------------------------------------------------------------------------- /data/index_synset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/data/index_synset.yaml -------------------------------------------------------------------------------- /data/inpainting_examples/alex-iby-G_Pk4D9rMLs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/data/inpainting_examples/alex-iby-G_Pk4D9rMLs.png -------------------------------------------------------------------------------- /data/inpainting_examples/bench2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/data/inpainting_examples/bench2.png -------------------------------------------------------------------------------- /data/inpainting_examples/bench2_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/data/inpainting_examples/bench2_mask.png -------------------------------------------------------------------------------- /data/inpainting_examples/billow926-12-Wc-Zgx6Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/data/inpainting_examples/billow926-12-Wc-Zgx6Y.png -------------------------------------------------------------------------------- /examples/prior_2_sd.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/examples/prior_2_sd.ipynb -------------------------------------------------------------------------------- /instagen_scripts/demo_instagen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/demo_instagen.sh -------------------------------------------------------------------------------- /instagen_scripts/finetune_sdm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/finetune_sdm.sh -------------------------------------------------------------------------------- /instagen_scripts/generate_base_ann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/generate_base_ann.py -------------------------------------------------------------------------------- /instagen_scripts/generate_base_ann.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/generate_base_ann.sh -------------------------------------------------------------------------------- /instagen_scripts/generate_class_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/generate_class_embedding.py -------------------------------------------------------------------------------- /instagen_scripts/generate_class_embedding.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/generate_class_embedding.sh -------------------------------------------------------------------------------- /instagen_scripts/generate_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/generate_image.py -------------------------------------------------------------------------------- /instagen_scripts/generate_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/generate_image.sh -------------------------------------------------------------------------------- /instagen_scripts/generate_novel_ann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/generate_novel_ann.py -------------------------------------------------------------------------------- /instagen_scripts/generate_novel_ann.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/generate_novel_ann.sh -------------------------------------------------------------------------------- /instagen_scripts/infer_detector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/infer_detector.sh -------------------------------------------------------------------------------- /instagen_scripts/infer_instagen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/infer_instagen.sh -------------------------------------------------------------------------------- /instagen_scripts/train_detector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/train_detector.sh -------------------------------------------------------------------------------- /instagen_scripts/train_instagen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/instagen_scripts/train_instagen.sh -------------------------------------------------------------------------------- /ldm/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/data/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/data/base.py -------------------------------------------------------------------------------- /ldm/data/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/data/coco.py -------------------------------------------------------------------------------- /ldm/data/coco_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/data/coco_crop.py -------------------------------------------------------------------------------- /ldm/data/dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/data/dummy.py -------------------------------------------------------------------------------- /ldm/data/imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/data/imagenet.py -------------------------------------------------------------------------------- /ldm/data/inpainting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/data/inpainting/synthetic_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/data/inpainting/synthetic_mask.py -------------------------------------------------------------------------------- /ldm/data/laion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/data/laion.py -------------------------------------------------------------------------------- /ldm/data/lsun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/data/lsun.py -------------------------------------------------------------------------------- /ldm/data/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/data/simple.py -------------------------------------------------------------------------------- /ldm/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/extras.py -------------------------------------------------------------------------------- /ldm/guidance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/guidance.py -------------------------------------------------------------------------------- /ldm/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/lr_scheduler.py -------------------------------------------------------------------------------- /ldm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/models/autoencoder.py -------------------------------------------------------------------------------- /ldm/models/diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/models/diffusion/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/models/diffusion/classifier.py -------------------------------------------------------------------------------- /ldm/models/diffusion/ddim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/models/diffusion/ddim.py -------------------------------------------------------------------------------- /ldm/models/diffusion/ddpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/models/diffusion/ddpm.py -------------------------------------------------------------------------------- /ldm/models/diffusion/plms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/models/diffusion/plms.py -------------------------------------------------------------------------------- /ldm/models/diffusion/sampling_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/models/diffusion/sampling_util.py -------------------------------------------------------------------------------- /ldm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/attention.py -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/diffusionmodules/model.py -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/openaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/diffusionmodules/openaimodel.py -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/diffusionmodules/util.py -------------------------------------------------------------------------------- /ldm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/distributions/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/distributions/distributions.py -------------------------------------------------------------------------------- /ldm/modules/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/ema.py -------------------------------------------------------------------------------- /ldm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/encoders/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/encoders/modules.py -------------------------------------------------------------------------------- /ldm/modules/evaluate/adm_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/evaluate/adm_evaluator.py -------------------------------------------------------------------------------- /ldm/modules/evaluate/evaluate_perceptualsim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/evaluate/evaluate_perceptualsim.py -------------------------------------------------------------------------------- /ldm/modules/evaluate/frechet_video_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/evaluate/frechet_video_distance.py -------------------------------------------------------------------------------- /ldm/modules/evaluate/ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/evaluate/ssim.py -------------------------------------------------------------------------------- /ldm/modules/image_degradation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/image_degradation/__init__.py -------------------------------------------------------------------------------- /ldm/modules/image_degradation/bsrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/image_degradation/bsrgan.py -------------------------------------------------------------------------------- /ldm/modules/image_degradation/bsrgan_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/image_degradation/bsrgan_light.py -------------------------------------------------------------------------------- /ldm/modules/image_degradation/utils/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/image_degradation/utils/test.png -------------------------------------------------------------------------------- /ldm/modules/image_degradation/utils_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/image_degradation/utils_image.py -------------------------------------------------------------------------------- /ldm/modules/losses/__init__.py: -------------------------------------------------------------------------------- 1 | from ldm.modules.losses.contperceptual import LPIPSWithDiscriminator -------------------------------------------------------------------------------- /ldm/modules/losses/contperceptual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/losses/contperceptual.py -------------------------------------------------------------------------------- /ldm/modules/losses/vqperceptual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/losses/vqperceptual.py -------------------------------------------------------------------------------- /ldm/modules/x_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/modules/x_transformer.py -------------------------------------------------------------------------------- /ldm/thirdp/psp/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/thirdp/psp/helpers.py -------------------------------------------------------------------------------- /ldm/thirdp/psp/id_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/thirdp/psp/id_loss.py -------------------------------------------------------------------------------- /ldm/thirdp/psp/model_irse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/thirdp/psp/model_irse.py -------------------------------------------------------------------------------- /ldm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/ldm/util.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/main.py -------------------------------------------------------------------------------- /mmdetection/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.circleci/config.yml -------------------------------------------------------------------------------- /mmdetection/.circleci/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.circleci/docker/Dockerfile -------------------------------------------------------------------------------- /mmdetection/.circleci/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.circleci/test.yml -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/batch_test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/batch_test_list.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/batch_train_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/batch_train_list.txt -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/benchmark_filter.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_full_models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/benchmark_full_models.txt -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_inference_fps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/benchmark_inference_fps.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/benchmark_options.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/benchmark_test.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/benchmark_test_image.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/benchmark_train.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_train_models.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/benchmark_train_models.txt -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/benchmark_valid_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/benchmark_valid_flops.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/check_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/check_links.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/covignore.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/covignore.cfg -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/diff_coverage_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/diff_coverage_test.sh -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/download_checkpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/download_checkpoints.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/gather_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/gather_models.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/linter.sh -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/test_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/test_benchmark.sh -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/test_init_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/test_init_backbone.py -------------------------------------------------------------------------------- /mmdetection/.dev_scripts/train_benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.dev_scripts/train_benchmark.sh -------------------------------------------------------------------------------- /mmdetection/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /mmdetection/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /mmdetection/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /mmdetection/.github/ISSUE_TEMPLATE/error-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.github/ISSUE_TEMPLATE/error-report.md -------------------------------------------------------------------------------- /mmdetection/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.github/pull_request_template.md -------------------------------------------------------------------------------- /mmdetection/.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /mmdetection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.gitignore -------------------------------------------------------------------------------- /mmdetection/.owners.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.owners.yml -------------------------------------------------------------------------------- /mmdetection/.pre-commit-config-zh-cn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.pre-commit-config-zh-cn.yaml -------------------------------------------------------------------------------- /mmdetection/.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.pre-commit-config.yaml -------------------------------------------------------------------------------- /mmdetection/.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/.readthedocs.yml -------------------------------------------------------------------------------- /mmdetection/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/CITATION.cff -------------------------------------------------------------------------------- /mmdetection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/LICENSE -------------------------------------------------------------------------------- /mmdetection/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/MANIFEST.in -------------------------------------------------------------------------------- /mmdetection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/README.md -------------------------------------------------------------------------------- /mmdetection/README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/README_zh-CN.md -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/_base_/datasets/deepfashion.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/_base_/datasets/voc0712.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/_base_/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/rpn_r50_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/_base_/models/rpn_r50_fpn.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/models/ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/_base_/models/ssd300.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/schedules/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/_base_/schedules/schedule_1x.py -------------------------------------------------------------------------------- /mmdetection/configs/_base_/schedules/schedule_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/_base_/schedules/schedule_2x.py -------------------------------------------------------------------------------- /mmdetection/configs/albu_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/albu_example/README.md -------------------------------------------------------------------------------- /mmdetection/configs/albu_example/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/albu_example/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/atss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/atss/README.md -------------------------------------------------------------------------------- /mmdetection/configs/atss/atss_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/atss/atss_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/atss/atss_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/atss/atss_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/atss/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/atss/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/autoassign/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/autoassign/README.md -------------------------------------------------------------------------------- /mmdetection/configs/autoassign/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/autoassign/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/boxinst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/boxinst/README.md -------------------------------------------------------------------------------- /mmdetection/configs/boxinst/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/boxinst/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/carafe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/carafe/README.md -------------------------------------------------------------------------------- /mmdetection/configs/carafe/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/carafe/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/cascade_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/cascade_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/cascade_rpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/cascade_rpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/cascade_rpn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/centernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/centernet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/centernet/centernet_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/centernet/centernet_tta.py -------------------------------------------------------------------------------- /mmdetection/configs/centernet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/centernet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/centripetalnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/centripetalnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/centripetalnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/centripetalnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/cityscapes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/cityscapes/README.md -------------------------------------------------------------------------------- /mmdetection/configs/common/ms-90k_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/common/ms-90k_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/common/ms_3x_coco-instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/common/ms_3x_coco-instance.py -------------------------------------------------------------------------------- /mmdetection/configs/common/ms_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/common/ms_3x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/condinst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/condinst/README.md -------------------------------------------------------------------------------- /mmdetection/configs/condinst/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/condinst/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/conditional_detr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/conditional_detr/README.md -------------------------------------------------------------------------------- /mmdetection/configs/conditional_detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/conditional_detr/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/convnext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/convnext/README.md -------------------------------------------------------------------------------- /mmdetection/configs/convnext/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/convnext/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/cornernet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/cornernet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/cornernet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/cornernet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/crowddet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/crowddet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/crowddet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/crowddet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/dab_detr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/dab_detr/README.md -------------------------------------------------------------------------------- /mmdetection/configs/dab_detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/dab_detr/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/dcn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/dcn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/dcn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/dcn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/dcnv2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/dcnv2/README.md -------------------------------------------------------------------------------- /mmdetection/configs/dcnv2/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/dcnv2/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ddod/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ddod/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ddod/ddod_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ddod/ddod_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/ddod/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ddod/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/deepfashion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/deepfashion/README.md -------------------------------------------------------------------------------- /mmdetection/configs/deformable_detr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/deformable_detr/README.md -------------------------------------------------------------------------------- /mmdetection/configs/deformable_detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/deformable_detr/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/detectors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/detectors/README.md -------------------------------------------------------------------------------- /mmdetection/configs/detectors/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/detectors/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/detr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/detr/README.md -------------------------------------------------------------------------------- /mmdetection/configs/detr/detr_r18_8xb2-500e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/detr/detr_r18_8xb2-500e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/detr/detr_r50_8xb2-150e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/detr/detr_r50_8xb2-150e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/detr/detr_r50_8xb2-500e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/detr/detr_r50_8xb2-500e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/detr/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/detr/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/dino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/dino/README.md -------------------------------------------------------------------------------- /mmdetection/configs/dino/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/dino/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/double_heads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/double_heads/README.md -------------------------------------------------------------------------------- /mmdetection/configs/double_heads/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/double_heads/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/dyhead/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/dyhead/README.md -------------------------------------------------------------------------------- /mmdetection/configs/dyhead/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/dyhead/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/dynamic_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/dynamic_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/dynamic_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/dynamic_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/efficientnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/efficientnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/efficientnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/efficientnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/empirical_attention/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/empirical_attention/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fast_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/fast_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/faster_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/faster_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/faster_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/faster_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/fcos/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fcos/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/fcos/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/foveabox/README.md -------------------------------------------------------------------------------- /mmdetection/configs/foveabox/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/foveabox/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/fpg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/fpg/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fpg/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/fpg/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/free_anchor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/free_anchor/README.md -------------------------------------------------------------------------------- /mmdetection/configs/free_anchor/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/free_anchor/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/fsaf/README.md -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/fsaf_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/fsaf/fsaf_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/fsaf_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/fsaf/fsaf_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/fsaf/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/fsaf/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/gcnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/gcnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gcnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/gcnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/gfl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/gfl/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gfl/gfl_r101_fpn_ms-2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/gfl/gfl_r101_fpn_ms-2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/gfl/gfl_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/gfl/gfl_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/gfl/gfl_r50_fpn_ms-2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/gfl/gfl_r50_fpn_ms-2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/gfl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/gfl/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ghm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ghm/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ghm/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ghm/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/gn+ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/gn+ws/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gn+ws/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/gn+ws/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/gn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/gn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/gn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/gn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/grid_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/grid_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/grid_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/grid_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/groie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/groie/README.md -------------------------------------------------------------------------------- /mmdetection/configs/groie/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/groie/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/guided_anchoring/README.md -------------------------------------------------------------------------------- /mmdetection/configs/guided_anchoring/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/guided_anchoring/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/hrnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/hrnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/hrnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/htc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/htc/README.md -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_r101_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/htc/htc_r101_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/htc/htc_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/htc_r50_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/htc/htc_r50_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/htc/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/htc/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/instaboost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/instaboost/README.md -------------------------------------------------------------------------------- /mmdetection/configs/instaboost/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/instaboost/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/lad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/lad/README.md -------------------------------------------------------------------------------- /mmdetection/configs/lad/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/lad/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ld/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ld/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ld/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/legacy_1.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/legacy_1.x/README.md -------------------------------------------------------------------------------- /mmdetection/configs/legacy_1.x/ssd300_coco_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/legacy_1.x/ssd300_coco_v1.py -------------------------------------------------------------------------------- /mmdetection/configs/libra_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/libra_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/libra_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/libra_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/lvis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/lvis/README.md -------------------------------------------------------------------------------- /mmdetection/configs/lvis/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/lvis/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/mask2former/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/mask2former/README.md -------------------------------------------------------------------------------- /mmdetection/configs/mask2former/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/mask2former/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/mask_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/mask_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/mask_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/maskformer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/maskformer/README.md -------------------------------------------------------------------------------- /mmdetection/configs/maskformer/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/maskformer/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ms_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ms_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ms_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ms_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/nas_fcos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/nas_fcos/README.md -------------------------------------------------------------------------------- /mmdetection/configs/nas_fcos/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/nas_fcos/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/nas_fpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/nas_fpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/nas_fpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/nas_fpn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/objects365/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/objects365/README.md -------------------------------------------------------------------------------- /mmdetection/configs/objects365/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/objects365/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/openimages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/openimages/README.md -------------------------------------------------------------------------------- /mmdetection/configs/openimages/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/openimages/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/paa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/paa/README.md -------------------------------------------------------------------------------- /mmdetection/configs/paa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/paa/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/paa/paa_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/paa/paa_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r101_fpn_ms-3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/paa/paa_r101_fpn_ms-3x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r50_fpn_1.5x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/paa/paa_r50_fpn_1.5x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/paa/paa_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/paa/paa_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/paa/paa_r50_fpn_ms-3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/paa/paa_r50_fpn_ms-3x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/pafpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/pafpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/pafpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/pafpn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/panoptic_fpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/panoptic_fpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/panoptic_fpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/panoptic_fpn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/pascal_voc/README.md -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/ssd300_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/pascal_voc/ssd300_voc0712.py -------------------------------------------------------------------------------- /mmdetection/configs/pascal_voc/ssd512_voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/pascal_voc/ssd512_voc0712.py -------------------------------------------------------------------------------- /mmdetection/configs/pisa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/pisa/README.md -------------------------------------------------------------------------------- /mmdetection/configs/pisa/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/pisa/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/pisa/ssd300_pisa_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/pisa/ssd300_pisa_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/pisa/ssd512_pisa_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/pisa/ssd512_pisa_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/point_rend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/point_rend/README.md -------------------------------------------------------------------------------- /mmdetection/configs/point_rend/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/point_rend/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/pvt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/pvt/README.md -------------------------------------------------------------------------------- /mmdetection/configs/pvt/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/pvt/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/queryinst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/queryinst/README.md -------------------------------------------------------------------------------- /mmdetection/configs/queryinst/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/queryinst/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/regnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/regnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/regnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/regnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/reppoints/README.md -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/reppoints/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/reppoints/reppoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/reppoints/reppoints.png -------------------------------------------------------------------------------- /mmdetection/configs/res2net/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/res2net/README.md -------------------------------------------------------------------------------- /mmdetection/configs/res2net/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/res2net/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/resnest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/resnest/README.md -------------------------------------------------------------------------------- /mmdetection/configs/resnest/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/resnest/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/resnet_strikes_back/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/resnet_strikes_back/README.md -------------------------------------------------------------------------------- /mmdetection/configs/retinanet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/retinanet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/retinanet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/retinanet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/retinanet/retinanet_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/retinanet/retinanet_tta.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/rpn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/rpn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/rpn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/rpn/rpn_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r101_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/rpn/rpn_r101_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r50-caffe-c4_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/rpn/rpn_r50-caffe-c4_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/rpn/rpn_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rpn/rpn_r50_fpn_2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/rpn/rpn_r50_fpn_2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/rtmdet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/rtmdet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/rtmdet/classification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/rtmdet/classification/README.md -------------------------------------------------------------------------------- /mmdetection/configs/rtmdet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/rtmdet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/rtmdet/rtmdet_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/rtmdet/rtmdet_tta.py -------------------------------------------------------------------------------- /mmdetection/configs/sabl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/sabl/README.md -------------------------------------------------------------------------------- /mmdetection/configs/sabl/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/sabl/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/scnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/scnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/scnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/scnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/scnet/scnet_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/scnet/scnet_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/scnet/scnet_r50_fpn_20e_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/scnet/scnet_r50_fpn_20e_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/seesaw_loss/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/seesaw_loss/README.md -------------------------------------------------------------------------------- /mmdetection/configs/seesaw_loss/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/seesaw_loss/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/selfsup_pretrain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/selfsup_pretrain/README.md -------------------------------------------------------------------------------- /mmdetection/configs/simple_copy_paste/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/simple_copy_paste/README.md -------------------------------------------------------------------------------- /mmdetection/configs/simple_copy_paste/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/simple_copy_paste/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/soft_teacher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/soft_teacher/README.md -------------------------------------------------------------------------------- /mmdetection/configs/soft_teacher/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/soft_teacher/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/solo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/solo/README.md -------------------------------------------------------------------------------- /mmdetection/configs/solo/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/solo/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/solo/solo_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/solo/solo_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/solo/solo_r50_fpn_3x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/solo/solo_r50_fpn_3x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/solov2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/solov2/README.md -------------------------------------------------------------------------------- /mmdetection/configs/solov2/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/solov2/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/sparse_rcnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/sparse_rcnn/README.md -------------------------------------------------------------------------------- /mmdetection/configs/sparse_rcnn/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/sparse_rcnn/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ssd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ssd/README.md -------------------------------------------------------------------------------- /mmdetection/configs/ssd/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ssd/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/ssd/ssd300_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ssd/ssd300_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/ssd/ssd512_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/ssd/ssd512_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/strong_baselines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/strong_baselines/README.md -------------------------------------------------------------------------------- /mmdetection/configs/strong_baselines/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/strong_baselines/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/swin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/swin/README.md -------------------------------------------------------------------------------- /mmdetection/configs/swin/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/swin/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/timm_example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/timm_example/README.md -------------------------------------------------------------------------------- /mmdetection/configs/tood/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/tood/README.md -------------------------------------------------------------------------------- /mmdetection/configs/tood/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/tood/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/tood/tood_r50_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/tood/tood_r50_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/tood/tood_r50_fpn_ms-2x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/tood/tood_r50_fpn_ms-2x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/tridentnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/tridentnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/tridentnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/tridentnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/vfnet/README.md -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/vfnet/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/vfnet/vfnet_r101_fpn_1x_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/vfnet/vfnet_r101_fpn_1x_coco.py -------------------------------------------------------------------------------- /mmdetection/configs/wider_face/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/wider_face/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/yolact/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolact/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/yolact/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/yolo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/yolo/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolo/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/yolo/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/yolof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/yolof/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolof/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/yolof/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/yolox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/yolox/README.md -------------------------------------------------------------------------------- /mmdetection/configs/yolox/metafile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/yolox/metafile.yml -------------------------------------------------------------------------------- /mmdetection/configs/yolox/yolox_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/configs/yolox/yolox_tta.py -------------------------------------------------------------------------------- /mmdetection/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/demo.py -------------------------------------------------------------------------------- /mmdetection/demo/MMDet_Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/demo/MMDet_Tutorial.ipynb -------------------------------------------------------------------------------- /mmdetection/demo/create_result_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/demo/create_result_gif.py -------------------------------------------------------------------------------- /mmdetection/demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/demo/demo.jpg -------------------------------------------------------------------------------- /mmdetection/demo/image_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/demo/image_demo.py -------------------------------------------------------------------------------- /mmdetection/demo/inference_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/demo/inference_demo.ipynb -------------------------------------------------------------------------------- /mmdetection/demo/instagen_pred.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/demo/instagen_pred.jpg -------------------------------------------------------------------------------- /mmdetection/demo/video_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/demo/video_demo.py -------------------------------------------------------------------------------- /mmdetection/demo/video_gpuaccel_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/demo/video_gpuaccel_demo.py -------------------------------------------------------------------------------- /mmdetection/demo/webcam_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/demo/webcam_demo.py -------------------------------------------------------------------------------- /mmdetection/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docker/Dockerfile -------------------------------------------------------------------------------- /mmdetection/docker/serve/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docker/serve/Dockerfile -------------------------------------------------------------------------------- /mmdetection/docker/serve/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docker/serve/config.properties -------------------------------------------------------------------------------- /mmdetection/docker/serve/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docker/serve/entrypoint.sh -------------------------------------------------------------------------------- /mmdetection/docker/serve_cn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docker/serve_cn/Dockerfile -------------------------------------------------------------------------------- /mmdetection/docs/en/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/Makefile -------------------------------------------------------------------------------- /mmdetection/docs/en/_static/css/readthedocs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/_static/css/readthedocs.css -------------------------------------------------------------------------------- /mmdetection/docs/en/_static/image/mmdet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/_static/image/mmdet-logo.png -------------------------------------------------------------------------------- /mmdetection/docs/en/advanced_guides/data_flow.md: -------------------------------------------------------------------------------- 1 | # Data Flow 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/advanced_guides/datasets.md: -------------------------------------------------------------------------------- 1 | # Datasets 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/advanced_guides/engine.md: -------------------------------------------------------------------------------- 1 | # Engine 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/advanced_guides/evaluation.md: -------------------------------------------------------------------------------- 1 | # Evaluation 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/advanced_guides/how_to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/advanced_guides/how_to.md -------------------------------------------------------------------------------- /mmdetection/docs/en/advanced_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/advanced_guides/index.rst -------------------------------------------------------------------------------- /mmdetection/docs/en/advanced_guides/models.md: -------------------------------------------------------------------------------- 1 | # Models 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/advanced_guides/structures.md: -------------------------------------------------------------------------------- 1 | # Structures 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/api.rst -------------------------------------------------------------------------------- /mmdetection/docs/en/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/conf.py -------------------------------------------------------------------------------- /mmdetection/docs/en/dataset_zoo.md: -------------------------------------------------------------------------------- 1 | # Dataset Zoo 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/get_started.md -------------------------------------------------------------------------------- /mmdetection/docs/en/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/index.rst -------------------------------------------------------------------------------- /mmdetection/docs/en/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/make.bat -------------------------------------------------------------------------------- /mmdetection/docs/en/migration.md: -------------------------------------------------------------------------------- 1 | # Migration 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/migration/api_and_registry_migration.md: -------------------------------------------------------------------------------- 1 | # Migrate API and Registry from MMDetection 2.x to 3.x 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/migration/dataset_migration.md: -------------------------------------------------------------------------------- 1 | # Migrate dataset from MMDetection 2.x to 3.x 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/migration/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/migration/migration.md -------------------------------------------------------------------------------- /mmdetection/docs/en/migration/migration_faq.md: -------------------------------------------------------------------------------- 1 | # Migration FAQ 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/migration/model_migration.md: -------------------------------------------------------------------------------- 1 | # Migrate models from MMDetection 2.x to 3.x 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/model_zoo.md -------------------------------------------------------------------------------- /mmdetection/docs/en/notes/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/notes/changelog.md -------------------------------------------------------------------------------- /mmdetection/docs/en/notes/changelog_v2.x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/notes/changelog_v2.x.md -------------------------------------------------------------------------------- /mmdetection/docs/en/notes/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/notes/compatibility.md -------------------------------------------------------------------------------- /mmdetection/docs/en/notes/contribution_guide.md: -------------------------------------------------------------------------------- 1 | # Contribution 2 | -------------------------------------------------------------------------------- /mmdetection/docs/en/notes/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/notes/faq.md -------------------------------------------------------------------------------- /mmdetection/docs/en/notes/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/notes/projects.md -------------------------------------------------------------------------------- /mmdetection/docs/en/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/overview.md -------------------------------------------------------------------------------- /mmdetection/docs/en/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/stat.py -------------------------------------------------------------------------------- /mmdetection/docs/en/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/switch_language.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/config.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/deploy.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/finetune.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/index.rst -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/inference.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/init_cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/init_cfg.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/label_studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/label_studio.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/new_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/new_model.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/semi_det.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/semi_det.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/test.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/train.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/train.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/useful_hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/useful_hooks.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/useful_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/useful_tools.md -------------------------------------------------------------------------------- /mmdetection/docs/en/user_guides/visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/en/user_guides/visualization.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/Makefile -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/advanced_guides/data_flow.md: -------------------------------------------------------------------------------- 1 | # 数据流(待更新) 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/advanced_guides/datasets.md: -------------------------------------------------------------------------------- 1 | # 数据集(待更新) 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/advanced_guides/engine.md: -------------------------------------------------------------------------------- 1 | # 执行引擎(待更新) 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/advanced_guides/evaluation.md: -------------------------------------------------------------------------------- 1 | # 精度评测(待更新) 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/advanced_guides/how_to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/advanced_guides/how_to.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/advanced_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/advanced_guides/index.rst -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/advanced_guides/models.md: -------------------------------------------------------------------------------- 1 | # 模型(待更新) 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/advanced_guides/structures.md: -------------------------------------------------------------------------------- 1 | # 数据结构(待更新) 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/api.rst -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/article.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/article.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/conf.py -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/get_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/get_started.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/index.rst -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/make.bat -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/migration/api_and_registry_migration.md: -------------------------------------------------------------------------------- 1 | # 将 API 和注册器从 MMDetection 2.x 迁移至 3.x 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/migration/dataset_migration.md: -------------------------------------------------------------------------------- 1 | # 将数据集从 MMDetection 2.x 迁移至 3.x 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/migration/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/migration/migration.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/migration/migration_faq.md: -------------------------------------------------------------------------------- 1 | # 迁移 FAQ 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/migration/model_migration.md: -------------------------------------------------------------------------------- 1 | # 将模型从 MMDetection 2.x 迁移至 3.x 2 | -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/model_zoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/model_zoo.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/notes/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/notes/compatibility.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/notes/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/notes/faq.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/notes/projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/notes/projects.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/overview.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/stat.py -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/switch_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/switch_language.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/user_guides/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/user_guides/config.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/user_guides/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/user_guides/deploy.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/user_guides/finetune.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/user_guides/finetune.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/user_guides/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/user_guides/index.rst -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/user_guides/inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/user_guides/inference.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/user_guides/init_cfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/user_guides/init_cfg.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/user_guides/new_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/user_guides/new_model.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/user_guides/semi_det.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/user_guides/semi_det.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/user_guides/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/user_guides/test.md -------------------------------------------------------------------------------- /mmdetection/docs/zh_cn/user_guides/train.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/docs/zh_cn/user_guides/train.md -------------------------------------------------------------------------------- /mmdetection/instagen_resources/coco_classes.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/instagen_resources/coco_classes.pt -------------------------------------------------------------------------------- /mmdetection/instagen_resources/coco_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/instagen_resources/coco_classes.txt -------------------------------------------------------------------------------- /mmdetection/mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/apis/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/det_inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/apis/det_inferencer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/apis/inference.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/base_det_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/base_det_dataset.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/cityscapes.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/coco.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/crowdhuman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/crowdhuman.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/deepfashion.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/lvis.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/objects365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/objects365.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/openimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/openimages.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/samplers/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/transforms/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/transforms/loading.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/voc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdetection/mmdet/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/datasets/xml_style.py -------------------------------------------------------------------------------- /mmdetection/mmdet/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/engine/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/engine/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/engine/hooks/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/engine/hooks/checkloss_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/engine/hooks/checkloss_hook.py -------------------------------------------------------------------------------- /mmdetection/mmdet/engine/hooks/sync_norm_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/engine/hooks/sync_norm_hook.py -------------------------------------------------------------------------------- /mmdetection/mmdet/engine/hooks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/engine/hooks/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/engine/optimizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/engine/optimizers/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/engine/runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/engine/runner/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/engine/runner/loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/engine/runner/loops.py -------------------------------------------------------------------------------- /mmdetection/mmdet/engine/schedulers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/engine/schedulers/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/evaluation/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/evaluation/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/evaluation/metrics/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/cspnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/cspnext.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/darknet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/hourglass.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/hrnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/pvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/pvt.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/regnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/res2net.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/resnest.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/resnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/resnext.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/ssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/ssd_vgg.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/backbones/swin.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/dense_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/gfl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/dense_heads/gfl_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/lad_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/dense_heads/lad_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/ld_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/dense_heads/ld_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/paa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/dense_heads/paa_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/dense_heads/rpn_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/dense_heads/ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/dense_heads/ssd_head.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/atss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/atss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/autoassign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/autoassign.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/base.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/base_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/base_detr.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/boxinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/boxinst.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/centernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/centernet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/condinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/condinst.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/cornernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/cornernet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/crowddet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/crowddet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/d2_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/d2_wrapper.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/dab_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/dab_detr.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/ddod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/ddod.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/detr.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/dino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/dino.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/fast_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/fcos.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fovea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/fovea.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/fsaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/fsaf.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/gfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/gfl.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/grid_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/grid_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/htc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/htc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/instagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/instagen.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/lad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/lad.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/mask_rcnn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/maskformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/maskformer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/nasfcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/nasfcos.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/paa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/paa.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/point_rend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/point_rend.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/queryinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/queryinst.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/retinanet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/rpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/rtmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/rtmdet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/scnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/scnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/semi_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/semi_base.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/solo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/solo.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/solov2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/solov2.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/tood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/tood.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/two_stage.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/vfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/vfnet.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/yolact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/yolact.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/yolo.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/yolof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/yolof.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/detectors/yolox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/detectors/yolox.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/layers/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/layers/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/layers/activations.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/layers/bbox_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/layers/bbox_nms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/layers/conv_upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/layers/conv_upsample.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/layers/csp_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/layers/csp_layer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/layers/dropblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/layers/dropblock.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/layers/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/layers/ema.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/layers/matrix_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/layers/matrix_nms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/layers/pixel_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/layers/pixel_decoder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/layers/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/layers/res_layer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/layers/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/layers/se_layer.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/ae_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/dice_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/focal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/gfocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/gfocal_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/kd_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/kd_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/pisa_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/pisa_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/seesaw_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/seesaw_loss.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/bfp.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/channel_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/channel_mapper.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/cspnext_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/cspnext_pafpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/ct_resnet_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/ct_resnet_neck.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/dyhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/dyhead.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/fpg.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/fpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/fpn_carafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/fpn_carafe.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/hrfpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/nas_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/nas_fpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/nasfcos_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/nasfcos_fpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/pafpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/rfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/rfp.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/ssd_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/ssd_neck.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/ssh.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/yolo_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/yolo_neck.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/necks/yolox_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/necks/yolox_pafpn.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/roi_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/seg_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/seg_heads/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/task_modules/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/task_modules/builder.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/utils/make_divisible.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/utils/misc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/models/utils/point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/models/utils/point_sample.py -------------------------------------------------------------------------------- /mmdetection/mmdet/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/registry.py -------------------------------------------------------------------------------- /mmdetection/mmdet/run_demo.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mmdetection/mmdet/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/structures/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/structures/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/structures/bbox/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/structures/bbox/base_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/structures/bbox/base_boxes.py -------------------------------------------------------------------------------- /mmdetection/mmdet/structures/bbox/box_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/structures/bbox/box_type.py -------------------------------------------------------------------------------- /mmdetection/mmdet/structures/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/structures/bbox/transforms.py -------------------------------------------------------------------------------- /mmdetection/mmdet/structures/det_data_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/structures/det_data_sample.py -------------------------------------------------------------------------------- /mmdetection/mmdet/structures/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/structures/mask/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/structures/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/structures/mask/mask_target.py -------------------------------------------------------------------------------- /mmdetection/mmdet/structures/mask/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/structures/mask/structures.py -------------------------------------------------------------------------------- /mmdetection/mmdet/structures/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/structures/mask/utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/testing/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/testing/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/testing/_utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/benchmark.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/collect_env.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/compat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/compat_config.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/contextmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/contextmanagers.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/dist_utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/logger.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/memory.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/misc.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/profiling.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/replace_cfg_vals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/replace_cfg_vals.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/setup_env.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/split_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/split_batch.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/typing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/typing_utils.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/util_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/util_mixins.py -------------------------------------------------------------------------------- /mmdetection/mmdet/utils/util_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/utils/util_random.py -------------------------------------------------------------------------------- /mmdetection/mmdet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/version.py -------------------------------------------------------------------------------- /mmdetection/mmdet/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/visualization/__init__.py -------------------------------------------------------------------------------- /mmdetection/mmdet/visualization/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/mmdet/visualization/palette.py -------------------------------------------------------------------------------- /mmdetection/model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/model-index.yml -------------------------------------------------------------------------------- /mmdetection/projects/ConvNeXt-V2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/projects/ConvNeXt-V2/README.md -------------------------------------------------------------------------------- /mmdetection/projects/Detic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/projects/Detic/README.md -------------------------------------------------------------------------------- /mmdetection/projects/Detic/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/projects/Detic/demo.py -------------------------------------------------------------------------------- /mmdetection/projects/Detic/detic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/projects/Detic/detic/__init__.py -------------------------------------------------------------------------------- /mmdetection/projects/Detic/detic/text_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/projects/Detic/detic/text_encoder.py -------------------------------------------------------------------------------- /mmdetection/projects/Detic/detic/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/projects/Detic/detic/utils.py -------------------------------------------------------------------------------- /mmdetection/projects/DiffusionDet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/projects/DiffusionDet/README.md -------------------------------------------------------------------------------- /mmdetection/projects/EfficientDet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/projects/EfficientDet/README.md -------------------------------------------------------------------------------- /mmdetection/projects/LabelStudio/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/projects/LabelStudio/readme.md -------------------------------------------------------------------------------- /mmdetection/projects/SparseInst/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/projects/SparseInst/README.md -------------------------------------------------------------------------------- /mmdetection/projects/example_project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/projects/example_project/README.md -------------------------------------------------------------------------------- /mmdetection/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/pytest.ini -------------------------------------------------------------------------------- /mmdetection/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/requirements.txt -------------------------------------------------------------------------------- /mmdetection/requirements/albu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/requirements/albu.txt -------------------------------------------------------------------------------- /mmdetection/requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/requirements/build.txt -------------------------------------------------------------------------------- /mmdetection/requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/requirements/docs.txt -------------------------------------------------------------------------------- /mmdetection/requirements/mminstall.txt: -------------------------------------------------------------------------------- 1 | mmcv>=2.0.0rc4,<2.1.0 2 | mmengine>=0.7.1,<1.0.0 3 | -------------------------------------------------------------------------------- /mmdetection/requirements/optional.txt: -------------------------------------------------------------------------------- 1 | cityscapesscripts 2 | imagecorruptions 3 | scikit-learn 4 | -------------------------------------------------------------------------------- /mmdetection/requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/requirements/readthedocs.txt -------------------------------------------------------------------------------- /mmdetection/requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/requirements/runtime.txt -------------------------------------------------------------------------------- /mmdetection/requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/requirements/tests.txt -------------------------------------------------------------------------------- /mmdetection/resources/coco_test_12510.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/resources/coco_test_12510.jpg -------------------------------------------------------------------------------- /mmdetection/resources/corruptions_sev_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/resources/corruptions_sev_3.png -------------------------------------------------------------------------------- /mmdetection/resources/data_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/resources/data_pipeline.png -------------------------------------------------------------------------------- /mmdetection/resources/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/resources/loss_curve.png -------------------------------------------------------------------------------- /mmdetection/resources/mmdet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/resources/mmdet-logo.png -------------------------------------------------------------------------------- /mmdetection/resources/qq_group_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/resources/qq_group_qrcode.jpg -------------------------------------------------------------------------------- /mmdetection/resources/zhihu_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/resources/zhihu_qrcode.jpg -------------------------------------------------------------------------------- /mmdetection/sd_resources/alphas_cumprod.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/sd_resources/alphas_cumprod.npy -------------------------------------------------------------------------------- /mmdetection/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/setup.cfg -------------------------------------------------------------------------------- /mmdetection/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/setup.py -------------------------------------------------------------------------------- /mmdetection/tests/test_apis/test_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tests/test_apis/test_inference.py -------------------------------------------------------------------------------- /mmdetection/tests/test_datasets/test_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tests/test_datasets/test_coco.py -------------------------------------------------------------------------------- /mmdetection/tests/test_datasets/test_lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tests/test_datasets/test_lvis.py -------------------------------------------------------------------------------- /mmdetection/tests/test_datasets/test_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tests/test_datasets/test_tta.py -------------------------------------------------------------------------------- /mmdetection/tests/test_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mmdetection/tests/test_engine/test_optimizers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mmdetection/tests/test_evaluation/test_metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_task_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mmdetection/tests/test_models/test_task_modules/test_samplers/test_pesudo_sampler.py: -------------------------------------------------------------------------------- 1 | # TODO: follow up 2 | -------------------------------------------------------------------------------- /mmdetection/tests/test_structures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mmdetection/tests/test_structures/test_bbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tests/test_utils/test_benchmark.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tests/test_utils/test_memory.py -------------------------------------------------------------------------------- /mmdetection/tests/test_utils/test_setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tests/test_utils/test_setup_env.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/eval_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/analysis_tools/eval_metric.py -------------------------------------------------------------------------------- /mmdetection/tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/mmdet2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/deployment/mmdet2torchserve.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/mmdet_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/deployment/mmdet_handler.py -------------------------------------------------------------------------------- /mmdetection/tools/deployment/test_torchserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/deployment/test_torchserver.py -------------------------------------------------------------------------------- /mmdetection/tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/dist_test.sh -------------------------------------------------------------------------------- /mmdetection/tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/dist_train.sh -------------------------------------------------------------------------------- /mmdetection/tools/misc/download_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/misc/download_dataset.py -------------------------------------------------------------------------------- /mmdetection/tools/misc/get_crowdhuman_id_hw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/misc/get_crowdhuman_id_hw.py -------------------------------------------------------------------------------- /mmdetection/tools/misc/get_image_metas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/misc/get_image_metas.py -------------------------------------------------------------------------------- /mmdetection/tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/misc/print_config.py -------------------------------------------------------------------------------- /mmdetection/tools/misc/split_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/misc/split_coco.py -------------------------------------------------------------------------------- /mmdetection/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/slurm_test.sh -------------------------------------------------------------------------------- /mmdetection/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/slurm_train.sh -------------------------------------------------------------------------------- /mmdetection/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/test.py -------------------------------------------------------------------------------- /mmdetection/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/mmdetection/tools/train.py -------------------------------------------------------------------------------- /models/first_stage_models/kl-f16/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/first_stage_models/kl-f16/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/kl-f32/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/first_stage_models/kl-f32/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/kl-f4/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/first_stage_models/kl-f4/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/kl-f8/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/first_stage_models/kl-f8/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/vq-f16/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/first_stage_models/vq-f16/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/vq-f4/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/first_stage_models/vq-f4/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/vq-f8-n256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/first_stage_models/vq-f8-n256/config.yaml -------------------------------------------------------------------------------- /models/first_stage_models/vq-f8/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/first_stage_models/vq-f8/config.yaml -------------------------------------------------------------------------------- /models/ldm/bsr_sr/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/ldm/bsr_sr/config.yaml -------------------------------------------------------------------------------- /models/ldm/celeba256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/ldm/celeba256/config.yaml -------------------------------------------------------------------------------- /models/ldm/cin256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/ldm/cin256/config.yaml -------------------------------------------------------------------------------- /models/ldm/ffhq256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/ldm/ffhq256/config.yaml -------------------------------------------------------------------------------- /models/ldm/inpainting_big/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/ldm/inpainting_big/config.yaml -------------------------------------------------------------------------------- /models/ldm/layout2img-openimages256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/ldm/layout2img-openimages256/config.yaml -------------------------------------------------------------------------------- /models/ldm/lsun_beds256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/ldm/lsun_beds256/config.yaml -------------------------------------------------------------------------------- /models/ldm/lsun_churches256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/ldm/lsun_churches256/config.yaml -------------------------------------------------------------------------------- /models/ldm/semantic_synthesis256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/ldm/semantic_synthesis256/config.yaml -------------------------------------------------------------------------------- /models/ldm/semantic_synthesis512/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/ldm/semantic_synthesis512/config.yaml -------------------------------------------------------------------------------- /models/ldm/text2img256/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/models/ldm/text2img256/config.yaml -------------------------------------------------------------------------------- /notebook_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/notebook_helpers.py -------------------------------------------------------------------------------- /notebooks/imagic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/notebooks/imagic.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/coco-ovd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/resources/coco-ovd.png -------------------------------------------------------------------------------- /resources/method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/resources/method.png -------------------------------------------------------------------------------- /resources/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/resources/overview.png -------------------------------------------------------------------------------- /resources/qualitative_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/resources/qualitative_result.png -------------------------------------------------------------------------------- /scripts/autoencoder-eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/autoencoder-eval.py -------------------------------------------------------------------------------- /scripts/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/checker.py -------------------------------------------------------------------------------- /scripts/cmd_on_new_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/cmd_on_new_ckpt.py -------------------------------------------------------------------------------- /scripts/convert_and_push_to_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/convert_and_push_to_hub.py -------------------------------------------------------------------------------- /scripts/convert_sd_to_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/convert_sd_to_diffusers.py -------------------------------------------------------------------------------- /scripts/demo/inpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/demo/inpainting.py -------------------------------------------------------------------------------- /scripts/download_first_stages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/download_first_stages.sh -------------------------------------------------------------------------------- /scripts/download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/download_models.sh -------------------------------------------------------------------------------- /scripts/gradio_variations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/gradio_variations.py -------------------------------------------------------------------------------- /scripts/image_variations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/image_variations.py -------------------------------------------------------------------------------- /scripts/img2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/img2img.py -------------------------------------------------------------------------------- /scripts/inpaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/inpaint.py -------------------------------------------------------------------------------- /scripts/inpaint_sd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/inpaint_sd.py -------------------------------------------------------------------------------- /scripts/latent_imagenet_diffusion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/latent_imagenet_diffusion.ipynb -------------------------------------------------------------------------------- /scripts/logging_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/logging_template.py -------------------------------------------------------------------------------- /scripts/mnist-distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/mnist-distributed.py -------------------------------------------------------------------------------- /scripts/printckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/printckpt.py -------------------------------------------------------------------------------- /scripts/prompts/aesthetic-prompts-plain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/prompts/aesthetic-prompts-plain.txt -------------------------------------------------------------------------------- /scripts/prompts/aesthetic-prompts-surrealism.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/prompts/aesthetic-prompts-surrealism.txt -------------------------------------------------------------------------------- /scripts/prompts/prompts-with-wings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/prompts/prompts-with-wings.txt -------------------------------------------------------------------------------- /scripts/prompts/six-prompts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/prompts/six-prompts -------------------------------------------------------------------------------- /scripts/prompts/weird-dalle-prompts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/prompts/weird-dalle-prompts.txt -------------------------------------------------------------------------------- /scripts/prompts/wings1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/prompts/wings1.txt -------------------------------------------------------------------------------- /scripts/prompts/wings2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/prompts/wings2.txt -------------------------------------------------------------------------------- /scripts/prompts/wings3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/prompts/wings3.txt -------------------------------------------------------------------------------- /scripts/prompts/wings4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/prompts/wings4.txt -------------------------------------------------------------------------------- /scripts/prune-ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/prune-ckpt.py -------------------------------------------------------------------------------- /scripts/sample_diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/sample_diffusion.py -------------------------------------------------------------------------------- /scripts/slimify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slimify.py -------------------------------------------------------------------------------- /scripts/slurm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/README.md -------------------------------------------------------------------------------- /scripts/slurm/resume_512/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/resume_512/launcher.sh -------------------------------------------------------------------------------- /scripts/slurm/resume_512/sbatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/resume_512/sbatch.sh -------------------------------------------------------------------------------- /scripts/slurm/resume_768_hr/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/resume_768_hr/launcher.sh -------------------------------------------------------------------------------- /scripts/slurm/resume_768_hr/sbatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/resume_768_hr/sbatch.sh -------------------------------------------------------------------------------- /scripts/slurm/v1_edgeinpainting/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v1_edgeinpainting/launcher.sh -------------------------------------------------------------------------------- /scripts/slurm/v1_edgeinpainting/sbatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v1_edgeinpainting/sbatch.sh -------------------------------------------------------------------------------- /scripts/slurm/v1_iahr_torch111/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v1_iahr_torch111/launcher.sh -------------------------------------------------------------------------------- /scripts/slurm/v1_iahr_torch111/sbatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v1_iahr_torch111/sbatch.sh -------------------------------------------------------------------------------- /scripts/slurm/v1_iahr_torch111_ucg/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v1_iahr_torch111_ucg/launcher.sh -------------------------------------------------------------------------------- /scripts/slurm/v1_iahr_torch111_ucg/sbatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v1_iahr_torch111_ucg/sbatch.sh -------------------------------------------------------------------------------- /scripts/slurm/v1_improvedaesthetics/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v1_improvedaesthetics/launcher.sh -------------------------------------------------------------------------------- /scripts/slurm/v1_improvedaesthetics/sbatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v1_improvedaesthetics/sbatch.sh -------------------------------------------------------------------------------- /scripts/slurm/v1_laionhr_torch111/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v1_laionhr_torch111/launcher.sh -------------------------------------------------------------------------------- /scripts/slurm/v1_laionhr_torch111/sbatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v1_laionhr_torch111/sbatch.sh -------------------------------------------------------------------------------- /scripts/slurm/v2_laionhr1024/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v2_laionhr1024/launcher.sh -------------------------------------------------------------------------------- /scripts/slurm/v2_laionhr1024/sbatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v2_laionhr1024/sbatch.sh -------------------------------------------------------------------------------- /scripts/slurm/v2_laionhr1024_2/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v2_laionhr1024_2/launcher.sh -------------------------------------------------------------------------------- /scripts/slurm/v2_laionhr1024_2/sbatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v2_laionhr1024_2/sbatch.sh -------------------------------------------------------------------------------- /scripts/slurm/v2_pretraining/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v2_pretraining/launcher.sh -------------------------------------------------------------------------------- /scripts/slurm/v2_pretraining/sbatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v2_pretraining/sbatch.sh -------------------------------------------------------------------------------- /scripts/slurm/v3_pretraining/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v3_pretraining/launcher.sh -------------------------------------------------------------------------------- /scripts/slurm/v3_pretraining/sbatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/slurm/v3_pretraining/sbatch.sh -------------------------------------------------------------------------------- /scripts/test_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/test_gpu.py -------------------------------------------------------------------------------- /scripts/test_gpu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/test_gpu.sh -------------------------------------------------------------------------------- /scripts/txt2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/txt2img.py -------------------------------------------------------------------------------- /scripts/vqgan_codebook_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/scripts/vqgan_codebook_visualizer.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fcjian/InstaGen/HEAD/setup.py --------------------------------------------------------------------------------