├── .github └── workflows │ └── publish.yml ├── .idea ├── .gitignore ├── ComfyUI-CatVTON.iml ├── deployment.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── modules.xml └── vcs.xml ├── README.md ├── __init__.py ├── img.png ├── model ├── DensePose │ ├── __init__.py │ └── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-312.pyc │ │ └── __init__.cpython-39.pyc ├── SCHP │ ├── LICENSE │ ├── README.md │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ └── __init__.cpython-39.pyc │ ├── datasets │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── simple_extractor_dataset.cpython-39.pyc │ │ ├── datasets.py │ │ ├── simple_extractor_dataset.py │ │ └── target_generation.py │ ├── environment.yaml │ ├── evaluate.py │ ├── file_list.txt │ ├── mhp_extension │ │ ├── .ipynb_checkpoints │ │ │ └── demo-checkpoint.ipynb │ │ ├── README.md │ │ ├── coco_style_annotation_creator │ │ │ ├── __pycache__ │ │ │ │ └── pycococreatortools.cpython-37.pyc │ │ │ ├── human_to_coco.py │ │ │ ├── pycococreatortools.py │ │ │ └── test_human2coco_format.py │ │ ├── data │ │ │ └── DemoDataset │ │ │ │ └── global_pic │ │ │ │ └── demo.jpg │ │ ├── demo.ipynb │ │ ├── demo │ │ │ ├── demo.jpg │ │ │ ├── demo_global_human_parsing.png │ │ │ ├── demo_instance_human_mask.png │ │ │ └── demo_multiple_human_parsing.png │ │ ├── detectron2 │ │ │ ├── .circleci │ │ │ │ └── config.yml │ │ │ ├── .clang-format │ │ │ ├── .flake8 │ │ │ ├── .github │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── Detectron2-Logo-Horz.svg │ │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── bugs.md │ │ │ │ │ ├── config.yml │ │ │ │ │ ├── feature-request.md │ │ │ │ │ ├── questions-help-support.md │ │ │ │ │ └── unexpected-problems-bugs.md │ │ │ │ └── pull_request_template.md │ │ │ ├── .gitignore │ │ │ ├── GETTING_STARTED.md │ │ │ ├── INSTALL.md │ │ │ ├── LICENSE │ │ │ ├── MODEL_ZOO.md │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── Base-RCNN-C4.yaml │ │ │ │ ├── Base-RCNN-DilatedC5.yaml │ │ │ │ ├── Base-RCNN-FPN.yaml │ │ │ │ ├── Base-RetinaNet.yaml │ │ │ │ ├── COCO-Detection │ │ │ │ │ ├── fast_rcnn_R_50_FPN_1x.yaml │ │ │ │ │ ├── faster_rcnn_R_101_C4_3x.yaml │ │ │ │ │ ├── faster_rcnn_R_101_DC5_3x.yaml │ │ │ │ │ ├── faster_rcnn_R_101_FPN_3x.yaml │ │ │ │ │ ├── faster_rcnn_R_50_C4_1x.yaml │ │ │ │ │ ├── faster_rcnn_R_50_C4_3x.yaml │ │ │ │ │ ├── faster_rcnn_R_50_DC5_1x.yaml │ │ │ │ │ ├── faster_rcnn_R_50_DC5_3x.yaml │ │ │ │ │ ├── faster_rcnn_R_50_FPN_1x.yaml │ │ │ │ │ ├── faster_rcnn_R_50_FPN_3x.yaml │ │ │ │ │ ├── faster_rcnn_X_101_32x8d_FPN_3x.yaml │ │ │ │ │ ├── retinanet_R_101_FPN_3x.yaml │ │ │ │ │ ├── retinanet_R_50_FPN_1x.yaml │ │ │ │ │ ├── retinanet_R_50_FPN_3x.yaml │ │ │ │ │ ├── rpn_R_50_C4_1x.yaml │ │ │ │ │ └── rpn_R_50_FPN_1x.yaml │ │ │ │ ├── COCO-InstanceSegmentation │ │ │ │ │ ├── mask_rcnn_R_101_C4_3x.yaml │ │ │ │ │ ├── mask_rcnn_R_101_DC5_3x.yaml │ │ │ │ │ ├── mask_rcnn_R_101_FPN_3x.yaml │ │ │ │ │ ├── mask_rcnn_R_50_C4_1x.yaml │ │ │ │ │ ├── mask_rcnn_R_50_C4_3x.yaml │ │ │ │ │ ├── mask_rcnn_R_50_DC5_1x.yaml │ │ │ │ │ ├── mask_rcnn_R_50_DC5_3x.yaml │ │ │ │ │ ├── mask_rcnn_R_50_FPN_1x.yaml │ │ │ │ │ ├── mask_rcnn_R_50_FPN_3x.yaml │ │ │ │ │ └── mask_rcnn_X_101_32x8d_FPN_3x.yaml │ │ │ │ ├── COCO-Keypoints │ │ │ │ │ ├── Base-Keypoint-RCNN-FPN.yaml │ │ │ │ │ ├── keypoint_rcnn_R_101_FPN_3x.yaml │ │ │ │ │ ├── keypoint_rcnn_R_50_FPN_1x.yaml │ │ │ │ │ ├── keypoint_rcnn_R_50_FPN_3x.yaml │ │ │ │ │ └── keypoint_rcnn_X_101_32x8d_FPN_3x.yaml │ │ │ │ ├── COCO-PanopticSegmentation │ │ │ │ │ ├── Base-Panoptic-FPN.yaml │ │ │ │ │ ├── panoptic_fpn_R_101_3x.yaml │ │ │ │ │ ├── panoptic_fpn_R_50_1x.yaml │ │ │ │ │ └── panoptic_fpn_R_50_3x.yaml │ │ │ │ ├── Cityscapes │ │ │ │ │ └── mask_rcnn_R_50_FPN.yaml │ │ │ │ ├── Detectron1-Comparisons │ │ │ │ │ ├── README.md │ │ │ │ │ ├── faster_rcnn_R_50_FPN_noaug_1x.yaml │ │ │ │ │ ├── keypoint_rcnn_R_50_FPN_1x.yaml │ │ │ │ │ └── mask_rcnn_R_50_FPN_noaug_1x.yaml │ │ │ │ ├── LVIS-InstanceSegmentation │ │ │ │ │ ├── mask_rcnn_R_101_FPN_1x.yaml │ │ │ │ │ ├── mask_rcnn_R_50_FPN_1x.yaml │ │ │ │ │ └── mask_rcnn_X_101_32x8d_FPN_1x.yaml │ │ │ │ ├── Misc │ │ │ │ │ ├── cascade_mask_rcnn_R_50_FPN_1x.yaml │ │ │ │ │ ├── cascade_mask_rcnn_R_50_FPN_3x.yaml │ │ │ │ │ ├── cascade_mask_rcnn_X_152_32x8d_FPN_IN5k_gn_dconv.yaml │ │ │ │ │ ├── cascade_mask_rcnn_X_152_32x8d_FPN_IN5k_gn_dconv_parsing.yaml │ │ │ │ │ ├── demo.yaml │ │ │ │ │ ├── mask_rcnn_R_50_FPN_1x_cls_agnostic.yaml │ │ │ │ │ ├── mask_rcnn_R_50_FPN_1x_dconv_c3-c5.yaml │ │ │ │ │ ├── mask_rcnn_R_50_FPN_3x_dconv_c3-c5.yaml │ │ │ │ │ ├── mask_rcnn_R_50_FPN_3x_gn.yaml │ │ │ │ │ ├── mask_rcnn_R_50_FPN_3x_syncbn.yaml │ │ │ │ │ ├── panoptic_fpn_R_101_dconv_cascade_gn_3x.yaml │ │ │ │ │ ├── parsing_finetune_cihp.yaml │ │ │ │ │ ├── parsing_inference.yaml │ │ │ │ │ ├── scratch_mask_rcnn_R_50_FPN_3x_gn.yaml │ │ │ │ │ ├── scratch_mask_rcnn_R_50_FPN_9x_gn.yaml │ │ │ │ │ ├── scratch_mask_rcnn_R_50_FPN_9x_syncbn.yaml │ │ │ │ │ └── semantic_R_50_FPN_1x.yaml │ │ │ │ ├── PascalVOC-Detection │ │ │ │ │ ├── faster_rcnn_R_50_C4.yaml │ │ │ │ │ └── faster_rcnn_R_50_FPN.yaml │ │ │ │ ├── my_Base-RCNN-FPN.yaml │ │ │ │ └── quick_schedules │ │ │ │ │ ├── README.md │ │ │ │ │ ├── cascade_mask_rcnn_R_50_FPN_inference_acc_test.yaml │ │ │ │ │ ├── cascade_mask_rcnn_R_50_FPN_instant_test.yaml │ │ │ │ │ ├── fast_rcnn_R_50_FPN_inference_acc_test.yaml │ │ │ │ │ ├── fast_rcnn_R_50_FPN_instant_test.yaml │ │ │ │ │ ├── keypoint_rcnn_R_50_FPN_inference_acc_test.yaml │ │ │ │ │ ├── keypoint_rcnn_R_50_FPN_instant_test.yaml │ │ │ │ │ ├── keypoint_rcnn_R_50_FPN_normalized_training_acc_test.yaml │ │ │ │ │ ├── keypoint_rcnn_R_50_FPN_training_acc_test.yaml │ │ │ │ │ ├── mask_rcnn_R_50_C4_GCV_instant_test.yaml │ │ │ │ │ ├── mask_rcnn_R_50_C4_inference_acc_test.yaml │ │ │ │ │ ├── mask_rcnn_R_50_C4_instant_test.yaml │ │ │ │ │ ├── mask_rcnn_R_50_C4_training_acc_test.yaml │ │ │ │ │ ├── mask_rcnn_R_50_DC5_inference_acc_test.yaml │ │ │ │ │ ├── mask_rcnn_R_50_FPN_inference_acc_test.yaml │ │ │ │ │ ├── mask_rcnn_R_50_FPN_instant_test.yaml │ │ │ │ │ ├── mask_rcnn_R_50_FPN_training_acc_test.yaml │ │ │ │ │ ├── panoptic_fpn_R_50_inference_acc_test.yaml │ │ │ │ │ ├── panoptic_fpn_R_50_instant_test.yaml │ │ │ │ │ ├── panoptic_fpn_R_50_training_acc_test.yaml │ │ │ │ │ ├── retinanet_R_50_FPN_inference_acc_test.yaml │ │ │ │ │ ├── retinanet_R_50_FPN_instant_test.yaml │ │ │ │ │ ├── rpn_R_50_FPN_inference_acc_test.yaml │ │ │ │ │ ├── rpn_R_50_FPN_instant_test.yaml │ │ │ │ │ ├── semantic_R_50_FPN_inference_acc_test.yaml │ │ │ │ │ ├── semantic_R_50_FPN_instant_test.yaml │ │ │ │ │ └── semantic_R_50_FPN_training_acc_test.yaml │ │ │ ├── demo │ │ │ │ ├── README.md │ │ │ │ ├── demo.py │ │ │ │ └── predictor.py │ │ │ ├── detectron2 │ │ │ │ ├── __init__.py │ │ │ │ ├── checkpoint │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── c2_model_loading.py │ │ │ │ │ ├── catalog.py │ │ │ │ │ └── detection_checkpoint.py │ │ │ │ ├── config │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── config.py │ │ │ │ │ └── defaults.py │ │ │ │ ├── data │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── build.py │ │ │ │ │ ├── catalog.py │ │ │ │ │ ├── common.py │ │ │ │ │ ├── dataset_mapper.py │ │ │ │ │ ├── datasets │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── builtin.py │ │ │ │ │ │ ├── builtin_meta.py │ │ │ │ │ │ ├── cityscapes.py │ │ │ │ │ │ ├── coco.py │ │ │ │ │ │ ├── lvis.py │ │ │ │ │ │ ├── lvis_v0_5_categories.py │ │ │ │ │ │ ├── pascal_voc.py │ │ │ │ │ │ └── register_coco.py │ │ │ │ │ ├── detection_utils.py │ │ │ │ │ ├── samplers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── distributed_sampler.py │ │ │ │ │ │ └── grouped_batch_sampler.py │ │ │ │ │ └── transforms │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── transform.py │ │ │ │ │ │ └── transform_gen.py │ │ │ │ ├── engine │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── defaults.py │ │ │ │ │ ├── hooks.py │ │ │ │ │ ├── launch.py │ │ │ │ │ └── train_loop.py │ │ │ │ ├── evaluation │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cityscapes_evaluation.py │ │ │ │ │ ├── coco_evaluation.py │ │ │ │ │ ├── evaluator.py │ │ │ │ │ ├── lvis_evaluation.py │ │ │ │ │ ├── panoptic_evaluation.py │ │ │ │ │ ├── pascal_voc_evaluation.py │ │ │ │ │ ├── rotated_coco_evaluation.py │ │ │ │ │ ├── sem_seg_evaluation.py │ │ │ │ │ └── testing.py │ │ │ │ ├── export │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── c10.py │ │ │ │ │ ├── caffe2_export.py │ │ │ │ │ ├── caffe2_inference.py │ │ │ │ │ ├── caffe2_modeling.py │ │ │ │ │ ├── patcher.py │ │ │ │ │ └── shared.py │ │ │ │ ├── layers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── batch_norm.py │ │ │ │ │ ├── blocks.py │ │ │ │ │ ├── csrc │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── cuda_version.cu │ │ │ │ │ │ └── vision.cpp │ │ │ │ │ ├── deform_conv.py │ │ │ │ │ ├── mask_ops.py │ │ │ │ │ ├── nms.py │ │ │ │ │ ├── roi_align.py │ │ │ │ │ ├── roi_align_rotated.py │ │ │ │ │ ├── rotated_boxes.py │ │ │ │ │ ├── shape_spec.py │ │ │ │ │ └── wrappers.py │ │ │ │ ├── model_zoo │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── model_zoo.py │ │ │ │ ├── modeling │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── anchor_generator.py │ │ │ │ │ ├── backbone │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backbone.py │ │ │ │ │ │ ├── build.py │ │ │ │ │ │ ├── fpn.py │ │ │ │ │ │ └── resnet.py │ │ │ │ │ ├── box_regression.py │ │ │ │ │ ├── matcher.py │ │ │ │ │ ├── meta_arch │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── build.py │ │ │ │ │ │ ├── panoptic_fpn.py │ │ │ │ │ │ ├── rcnn.py │ │ │ │ │ │ ├── retinanet.py │ │ │ │ │ │ └── semantic_seg.py │ │ │ │ │ ├── poolers.py │ │ │ │ │ ├── postprocessing.py │ │ │ │ │ ├── proposal_generator │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── build.py │ │ │ │ │ │ ├── proposal_utils.py │ │ │ │ │ │ ├── rpn.py │ │ │ │ │ │ ├── rpn_outputs.py │ │ │ │ │ │ └── rrpn.py │ │ │ │ │ ├── roi_heads │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── box_head.py │ │ │ │ │ │ ├── cascade_rcnn.py │ │ │ │ │ │ ├── fast_rcnn.py │ │ │ │ │ │ ├── keypoint_head.py │ │ │ │ │ │ ├── mask_head.py │ │ │ │ │ │ ├── roi_heads.py │ │ │ │ │ │ └── rotated_fast_rcnn.py │ │ │ │ │ ├── sampling.py │ │ │ │ │ └── test_time_augmentation.py │ │ │ │ ├── solver │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── build.py │ │ │ │ │ └── lr_scheduler.py │ │ │ │ ├── structures │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── boxes.py │ │ │ │ │ ├── image_list.py │ │ │ │ │ ├── instances.py │ │ │ │ │ ├── keypoints.py │ │ │ │ │ ├── masks.py │ │ │ │ │ └── rotated_boxes.py │ │ │ │ └── utils │ │ │ │ │ ├── README.md │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── analysis.py │ │ │ │ │ ├── collect_env.py │ │ │ │ │ ├── colormap.py │ │ │ │ │ ├── comm.py │ │ │ │ │ ├── env.py │ │ │ │ │ ├── events.py │ │ │ │ │ ├── logger.py │ │ │ │ │ ├── memory.py │ │ │ │ │ ├── registry.py │ │ │ │ │ ├── serialize.py │ │ │ │ │ ├── video_visualizer.py │ │ │ │ │ └── visualizer.py │ │ │ ├── dev │ │ │ │ ├── README.md │ │ │ │ ├── linter.sh │ │ │ │ ├── packaging │ │ │ │ │ ├── README.md │ │ │ │ │ ├── build_all_wheels.sh │ │ │ │ │ ├── build_wheel.sh │ │ │ │ │ ├── gen_wheel_index.sh │ │ │ │ │ └── pkg_helpers.bash │ │ │ │ ├── parse_results.sh │ │ │ │ ├── run_inference_tests.sh │ │ │ │ └── run_instant_tests.sh │ │ │ ├── docker │ │ │ │ ├── Dockerfile │ │ │ │ ├── Dockerfile-circleci │ │ │ │ ├── README.md │ │ │ │ └── docker-compose.yml │ │ │ ├── docs │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── conf.py │ │ │ │ ├── index.rst │ │ │ │ ├── modules │ │ │ │ │ ├── checkpoint.rst │ │ │ │ │ ├── config.rst │ │ │ │ │ ├── data.rst │ │ │ │ │ ├── engine.rst │ │ │ │ │ ├── evaluation.rst │ │ │ │ │ ├── export.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── layers.rst │ │ │ │ │ ├── model_zoo.rst │ │ │ │ │ ├── modeling.rst │ │ │ │ │ ├── solver.rst │ │ │ │ │ ├── structures.rst │ │ │ │ │ └── utils.rst │ │ │ │ ├── notes │ │ │ │ │ ├── benchmarks.md │ │ │ │ │ ├── changelog.md │ │ │ │ │ ├── compatibility.md │ │ │ │ │ ├── contributing.md │ │ │ │ │ └── index.rst │ │ │ │ └── tutorials │ │ │ │ │ ├── README.md │ │ │ │ │ ├── builtin_datasets.md │ │ │ │ │ ├── configs.md │ │ │ │ │ ├── data_loading.md │ │ │ │ │ ├── datasets.md │ │ │ │ │ ├── deployment.md │ │ │ │ │ ├── evaluation.md │ │ │ │ │ ├── extend.md │ │ │ │ │ ├── getting_started.md │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── install.md │ │ │ │ │ ├── models.md │ │ │ │ │ ├── training.md │ │ │ │ │ └── write-models.md │ │ │ ├── projects │ │ │ │ ├── DensePose │ │ │ │ │ ├── README.md │ │ │ │ │ ├── apply_net.py │ │ │ │ │ ├── configs │ │ │ │ │ │ ├── Base-DensePose-RCNN-FPN.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_101_FPN_DL_WC1_s1x.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_101_FPN_DL_WC2_s1x.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_101_FPN_DL_s1x.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_101_FPN_WC1_s1x.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_101_FPN_WC2_s1x.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_101_FPN_s1x.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_101_FPN_s1x_legacy.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_50_FPN_DL_WC1_s1x.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_50_FPN_DL_WC2_s1x.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_50_FPN_DL_s1x.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_50_FPN_WC1_s1x.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_50_FPN_WC2_s1x.yaml │ │ │ │ │ │ ├── densepose_rcnn_R_50_FPN_s1x.yaml │ │ │ │ │ │ └── densepose_rcnn_R_50_FPN_s1x_legacy.yaml │ │ │ │ │ ├── densepose │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── config.py │ │ │ │ │ │ ├── densepose_coco_evaluation.py │ │ │ │ │ │ ├── densepose_head.py │ │ │ │ │ │ ├── evaluator.py │ │ │ │ │ │ └── roi_head.py │ │ │ │ │ ├── dev │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── run_inference_tests.sh │ │ │ │ │ │ └── run_instant_tests.sh │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── GETTING_STARTED.md │ │ │ │ │ │ ├── MODEL_ZOO.md │ │ │ │ │ │ ├── TOOL_APPLY_NET.md │ │ │ │ │ │ └── TOOL_QUERY_DB.md │ │ │ │ │ ├── query_db.py │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── common.py │ │ │ │ │ │ ├── test_model_e2e.py │ │ │ │ │ │ ├── test_setup.py │ │ │ │ │ │ └── test_structures.py │ │ │ │ │ └── train_net.py │ │ │ │ ├── PointRend │ │ │ │ │ ├── finetune_net.py │ │ │ │ │ ├── logs │ │ │ │ │ │ └── hadoop.kylin.libdfs.log │ │ │ │ │ ├── point_rend │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── coarse_mask_head.py │ │ │ │ │ │ ├── color_augmentation.py │ │ │ │ │ │ ├── config.py │ │ │ │ │ │ ├── dataset_mapper.py │ │ │ │ │ │ ├── point_features.py │ │ │ │ │ │ ├── point_head.py │ │ │ │ │ │ ├── roi_heads.py │ │ │ │ │ │ └── semantic_seg.py │ │ │ │ │ ├── run.sh │ │ │ │ │ └── train_net.py │ │ │ │ ├── README.md │ │ │ │ ├── TensorMask │ │ │ │ │ ├── README.md │ │ │ │ │ ├── configs │ │ │ │ │ │ ├── Base-TensorMask.yaml │ │ │ │ │ │ ├── tensormask_R_50_FPN_1x.yaml │ │ │ │ │ │ └── tensormask_R_50_FPN_6x.yaml │ │ │ │ │ ├── setup.py │ │ │ │ │ ├── tensormask │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── arch.py │ │ │ │ │ │ └── config.py │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── test_swap_align2nat.py │ │ │ │ │ └── train_net.py │ │ │ │ └── TridentNet │ │ │ │ │ ├── README.md │ │ │ │ │ ├── configs │ │ │ │ │ ├── Base-TridentNet-Fast-C4.yaml │ │ │ │ │ ├── tridentnet_fast_R_101_C4_3x.yaml │ │ │ │ │ ├── tridentnet_fast_R_50_C4_1x.yaml │ │ │ │ │ └── tridentnet_fast_R_50_C4_3x.yaml │ │ │ │ │ ├── train_net.py │ │ │ │ │ └── tridentnet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── trident_backbone.py │ │ │ │ │ ├── trident_conv.py │ │ │ │ │ ├── trident_rcnn.py │ │ │ │ │ └── trident_rpn.py │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── tests │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── data │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_coco.py │ │ │ │ │ ├── test_detection_utils.py │ │ │ │ │ ├── test_rotation_transform.py │ │ │ │ │ ├── test_sampler.py │ │ │ │ │ └── test_transforms.py │ │ │ │ ├── layers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_mask_ops.py │ │ │ │ │ ├── test_nms_rotated.py │ │ │ │ │ ├── test_roi_align.py │ │ │ │ │ └── test_roi_align_rotated.py │ │ │ │ ├── modeling │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_anchor_generator.py │ │ │ │ │ ├── test_box2box_transform.py │ │ │ │ │ ├── test_fast_rcnn.py │ │ │ │ │ ├── test_model_e2e.py │ │ │ │ │ ├── test_roi_heads.py │ │ │ │ │ ├── test_roi_pooler.py │ │ │ │ │ └── test_rpn.py │ │ │ │ ├── structures │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_boxes.py │ │ │ │ │ ├── test_imagelist.py │ │ │ │ │ ├── test_instances.py │ │ │ │ │ └── test_rotated_boxes.py │ │ │ │ ├── test_checkpoint.py │ │ │ │ ├── test_config.py │ │ │ │ ├── test_export_caffe2.py │ │ │ │ ├── test_model_analysis.py │ │ │ │ ├── test_model_zoo.py │ │ │ │ └── test_visualizer.py │ │ │ └── tools │ │ │ │ ├── README.md │ │ │ │ ├── analyze_model.py │ │ │ │ ├── benchmark.py │ │ │ │ ├── convert-torchvision-to-d2.py │ │ │ │ ├── deploy │ │ │ │ ├── README.md │ │ │ │ ├── caffe2_converter.py │ │ │ │ ├── caffe2_mask_rcnn.cpp │ │ │ │ └── torchscript_traced_mask_rcnn.cpp │ │ │ │ ├── finetune_net.py │ │ │ │ ├── inference.sh │ │ │ │ ├── plain_train_net.py │ │ │ │ ├── run.sh │ │ │ │ ├── train_net.py │ │ │ │ ├── visualize_data.py │ │ │ │ └── visualize_json_results.py │ │ ├── global_local_parsing │ │ │ ├── global_local_datasets.py │ │ │ ├── global_local_evaluate.py │ │ │ ├── global_local_train.py │ │ │ └── make_id_list.py │ │ ├── logits_fusion.py │ │ ├── make_crop_and_mask_w_mask_nms.py │ │ └── scripts │ │ │ ├── make_coco_style_annotation.sh │ │ │ ├── make_crop.sh │ │ │ └── parsing_fusion.sh │ ├── modules │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── bn.cpython-310.pyc │ │ │ ├── bn.cpython-38.pyc │ │ │ ├── bn.cpython-39.pyc │ │ │ ├── dense.cpython-310.pyc │ │ │ ├── dense.cpython-39.pyc │ │ │ ├── functions.cpython-310.pyc │ │ │ ├── functions.cpython-38.pyc │ │ │ ├── functions.cpython-39.pyc │ │ │ ├── misc.cpython-310.pyc │ │ │ ├── misc.cpython-39.pyc │ │ │ ├── residual.cpython-310.pyc │ │ │ └── residual.cpython-39.pyc │ │ ├── bn.py │ │ ├── deeplab.py │ │ ├── dense.py │ │ ├── functions.py │ │ ├── misc.py │ │ ├── residual.py │ │ └── src │ │ │ ├── checks.h │ │ │ ├── inplace_abn.cpp │ │ │ ├── inplace_abn.h │ │ │ ├── inplace_abn_cpu.cpp │ │ │ ├── inplace_abn_cuda.cu │ │ │ ├── inplace_abn_cuda_half.cu │ │ │ └── utils │ │ │ ├── checks.h │ │ │ ├── common.h │ │ │ └── cuda.cuh │ ├── networks │ │ ├── AugmentCE2P.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── AugmentCE2P.cpython-310.pyc │ │ │ ├── AugmentCE2P.cpython-38.pyc │ │ │ ├── AugmentCE2P.cpython-39.pyc │ │ │ ├── __init__.cpython-310.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── __init__.cpython-39.pyc │ │ ├── backbone │ │ │ ├── mobilenetv2.py │ │ │ ├── resnet.py │ │ │ └── resnext.py │ │ └── context_encoding │ │ │ ├── aspp.py │ │ │ ├── ocnet.py │ │ │ └── psp.py │ ├── requirements.txt │ ├── shai.py │ ├── simple_extractor.py │ ├── simple_extractor_multi.py │ ├── train.py │ └── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-310.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── transforms.cpython-310.pyc │ │ └── transforms.cpython-39.pyc │ │ ├── consistency_loss.py │ │ ├── criterion.py │ │ ├── encoding.py │ │ ├── kl_loss.py │ │ ├── lovasz_softmax.py │ │ ├── miou.py │ │ ├── schp.py │ │ ├── soft_dice_loss.py │ │ ├── transforms.py │ │ └── warmup_scheduler.py ├── __pycache__ │ ├── attn_processor.cpython-310.pyc │ ├── attn_processor.cpython-39.pyc │ ├── cloth_masker.cpython-39.pyc │ ├── pipeline.cpython-39.pyc │ ├── utils.cpython-310.pyc │ └── utils.cpython-39.pyc ├── attn_processor.py ├── cloth_masker.py ├── pipeline.py └── utils.py ├── pyproject.toml ├── requirements.txt ├── utils.py └── workflow └── catvton_workflow.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/ComfyUI-CatVTON.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/.idea/ComfyUI-CatVTON.iml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/__init__.py -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/img.png -------------------------------------------------------------------------------- /model/DensePose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/DensePose/__init__.py -------------------------------------------------------------------------------- /model/DensePose/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/DensePose/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /model/DensePose/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/DensePose/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /model/DensePose/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/DensePose/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/LICENSE -------------------------------------------------------------------------------- /model/SCHP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/README.md -------------------------------------------------------------------------------- /model/SCHP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/__init__.py -------------------------------------------------------------------------------- /model/SCHP/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /model/SCHP/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/SCHP/datasets/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/datasets/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/datasets/__pycache__/simple_extractor_dataset.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/datasets/__pycache__/simple_extractor_dataset.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/datasets/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/datasets/datasets.py -------------------------------------------------------------------------------- /model/SCHP/datasets/simple_extractor_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/datasets/simple_extractor_dataset.py -------------------------------------------------------------------------------- /model/SCHP/datasets/target_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/datasets/target_generation.py -------------------------------------------------------------------------------- /model/SCHP/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/environment.yaml -------------------------------------------------------------------------------- /model/SCHP/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/evaluate.py -------------------------------------------------------------------------------- /model/SCHP/file_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/file_list.txt -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/.ipynb_checkpoints/demo-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/.ipynb_checkpoints/demo-checkpoint.ipynb -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/coco_style_annotation_creator/__pycache__/pycococreatortools.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/coco_style_annotation_creator/__pycache__/pycococreatortools.cpython-37.pyc -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/coco_style_annotation_creator/human_to_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/coco_style_annotation_creator/human_to_coco.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/coco_style_annotation_creator/pycococreatortools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/coco_style_annotation_creator/pycococreatortools.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/coco_style_annotation_creator/test_human2coco_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/coco_style_annotation_creator/test_human2coco_format.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/data/DemoDataset/global_pic/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/data/DemoDataset/global_pic/demo.jpg -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/demo.ipynb -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/demo/demo.jpg -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/demo/demo_global_human_parsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/demo/demo_global_human_parsing.png -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/demo/demo_instance_human_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/demo/demo_instance_human_mask.png -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/demo/demo_multiple_human_parsing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/demo/demo_multiple_human_parsing.png -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.circleci/config.yml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.clang-format -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.flake8 -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.github/Detectron2-Logo-Horz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.github/Detectron2-Logo-Horz.svg -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.github/ISSUE_TEMPLATE/bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.github/ISSUE_TEMPLATE/bugs.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.github/ISSUE_TEMPLATE/questions-help-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.github/ISSUE_TEMPLATE/questions-help-support.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.github/ISSUE_TEMPLATE/unexpected-problems-bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.github/ISSUE_TEMPLATE/unexpected-problems-bugs.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.github/pull_request_template.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/.gitignore -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/GETTING_STARTED.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/INSTALL.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/LICENSE -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/MODEL_ZOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/MODEL_ZOO.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Base-RCNN-C4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Base-RCNN-C4.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Base-RCNN-DilatedC5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Base-RCNN-DilatedC5.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Base-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Base-RCNN-FPN.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Base-RetinaNet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Base-RetinaNet.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/fast_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/fast_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_101_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_101_C4_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_101_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_101_DC5_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_50_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_50_C4_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_50_DC5_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_50_DC5_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_50_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_50_DC5_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_X_101_32x8d_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/faster_rcnn_X_101_32x8d_FPN_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/retinanet_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/retinanet_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/retinanet_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/retinanet_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/retinanet_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/retinanet_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/rpn_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/rpn_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/rpn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Detection/rpn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_C4_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_DC5_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_C4_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_DC5_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Keypoints/Base-Keypoint-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Keypoints/Base-Keypoint-RCNN-FPN.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_101_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_101_FPN_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Keypoints/keypoint_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-Keypoints/keypoint_rcnn_X_101_32x8d_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-Keypoints/keypoint_rcnn_X_101_32x8d_FPN_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-PanopticSegmentation/Base-Panoptic-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-PanopticSegmentation/Base-Panoptic-FPN.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_101_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_101_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/COCO-PanopticSegmentation/panoptic_fpn_R_50_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Cityscapes/mask_rcnn_R_50_FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Cityscapes/mask_rcnn_R_50_FPN.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Detectron1-Comparisons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Detectron1-Comparisons/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Detectron1-Comparisons/faster_rcnn_R_50_FPN_noaug_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Detectron1-Comparisons/faster_rcnn_R_50_FPN_noaug_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Detectron1-Comparisons/keypoint_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Detectron1-Comparisons/keypoint_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Detectron1-Comparisons/mask_rcnn_R_50_FPN_noaug_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Detectron1-Comparisons/mask_rcnn_R_50_FPN_noaug_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/LVIS-InstanceSegmentation/mask_rcnn_R_101_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/LVIS-InstanceSegmentation/mask_rcnn_R_101_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/LVIS-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/LVIS-InstanceSegmentation/mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/LVIS-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/LVIS-InstanceSegmentation/mask_rcnn_X_101_32x8d_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/cascade_mask_rcnn_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/cascade_mask_rcnn_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/cascade_mask_rcnn_R_50_FPN_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/cascade_mask_rcnn_R_50_FPN_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/cascade_mask_rcnn_X_152_32x8d_FPN_IN5k_gn_dconv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/cascade_mask_rcnn_X_152_32x8d_FPN_IN5k_gn_dconv.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/cascade_mask_rcnn_X_152_32x8d_FPN_IN5k_gn_dconv_parsing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/cascade_mask_rcnn_X_152_32x8d_FPN_IN5k_gn_dconv_parsing.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/demo.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/mask_rcnn_R_50_FPN_1x_cls_agnostic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/mask_rcnn_R_50_FPN_1x_cls_agnostic.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/mask_rcnn_R_50_FPN_1x_dconv_c3-c5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/mask_rcnn_R_50_FPN_1x_dconv_c3-c5.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/mask_rcnn_R_50_FPN_3x_dconv_c3-c5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/mask_rcnn_R_50_FPN_3x_dconv_c3-c5.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/mask_rcnn_R_50_FPN_3x_gn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/mask_rcnn_R_50_FPN_3x_gn.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/mask_rcnn_R_50_FPN_3x_syncbn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/mask_rcnn_R_50_FPN_3x_syncbn.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/panoptic_fpn_R_101_dconv_cascade_gn_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/panoptic_fpn_R_101_dconv_cascade_gn_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/parsing_finetune_cihp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/parsing_finetune_cihp.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/parsing_inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/parsing_inference.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/scratch_mask_rcnn_R_50_FPN_3x_gn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/scratch_mask_rcnn_R_50_FPN_3x_gn.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_gn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_gn.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_syncbn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/scratch_mask_rcnn_R_50_FPN_9x_syncbn.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/Misc/semantic_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/Misc/semantic_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/PascalVOC-Detection/faster_rcnn_R_50_C4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/PascalVOC-Detection/faster_rcnn_R_50_C4.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/PascalVOC-Detection/faster_rcnn_R_50_FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/PascalVOC-Detection/faster_rcnn_R_50_FPN.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/my_Base-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/my_Base-RCNN-FPN.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/cascade_mask_rcnn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/cascade_mask_rcnn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/cascade_mask_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/cascade_mask_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/fast_rcnn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/fast_rcnn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/fast_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/fast_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_normalized_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_normalized_training_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/keypoint_rcnn_R_50_FPN_training_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_C4_GCV_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_C4_GCV_instant_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_C4_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_C4_inference_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_C4_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_C4_instant_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_C4_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_C4_training_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_DC5_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_DC5_inference_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_FPN_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/mask_rcnn_R_50_FPN_training_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/panoptic_fpn_R_50_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/panoptic_fpn_R_50_inference_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/panoptic_fpn_R_50_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/panoptic_fpn_R_50_instant_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/panoptic_fpn_R_50_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/panoptic_fpn_R_50_training_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/retinanet_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/retinanet_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/retinanet_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/retinanet_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/rpn_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/rpn_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/rpn_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/rpn_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/semantic_R_50_FPN_inference_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/semantic_R_50_FPN_inference_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/semantic_R_50_FPN_instant_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/semantic_R_50_FPN_instant_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/configs/quick_schedules/semantic_R_50_FPN_training_acc_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/configs/quick_schedules/semantic_R_50_FPN_training_acc_test.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/demo/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/demo/demo.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/demo/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/demo/predictor.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/checkpoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/checkpoint/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/checkpoint/c2_model_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/checkpoint/c2_model_loading.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/checkpoint/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/checkpoint/catalog.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/checkpoint/detection_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/checkpoint/detection_checkpoint.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/config/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/config/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/config/compat.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/config/config.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/config/defaults.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/build.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/catalog.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/common.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/dataset_mapper.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/builtin.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/builtin_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/builtin_meta.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/cityscapes.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/coco.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/lvis.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/lvis_v0_5_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/lvis_v0_5_categories.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/pascal_voc.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/register_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/datasets/register_coco.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/detection_utils.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/samplers/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/samplers/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/samplers/distributed_sampler.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/samplers/grouped_batch_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/samplers/grouped_batch_sampler.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/transforms/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/transforms/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/transforms/transform.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/data/transforms/transform_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/data/transforms/transform_gen.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/engine/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/engine/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/engine/defaults.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/engine/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/engine/hooks.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/engine/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/engine/launch.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/engine/train_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/engine/train_loop.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/evaluation/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/evaluation/cityscapes_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/evaluation/cityscapes_evaluation.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/evaluation/coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/evaluation/coco_evaluation.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/evaluation/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/evaluation/evaluator.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/evaluation/lvis_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/evaluation/lvis_evaluation.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/evaluation/panoptic_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/evaluation/panoptic_evaluation.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/evaluation/pascal_voc_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/evaluation/pascal_voc_evaluation.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/evaluation/rotated_coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/evaluation/rotated_coco_evaluation.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/evaluation/sem_seg_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/evaluation/sem_seg_evaluation.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/evaluation/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/evaluation/testing.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/export/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/export/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/export/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/export/api.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/export/c10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/export/c10.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/export/caffe2_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/export/caffe2_export.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/export/caffe2_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/export/caffe2_inference.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/export/caffe2_modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/export/caffe2_modeling.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/export/patcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/export/patcher.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/export/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/export/shared.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/batch_norm.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/blocks.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/csrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/csrc/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/csrc/cuda_version.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/csrc/cuda_version.cu -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/csrc/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/csrc/vision.cpp -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/deform_conv.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/mask_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/mask_ops.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/nms.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/roi_align.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/roi_align_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/roi_align_rotated.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/rotated_boxes.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/shape_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/shape_spec.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/layers/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/layers/wrappers.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/model_zoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/model_zoo/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/model_zoo/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/model_zoo/model_zoo.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/anchor_generator.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/backbone/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/backbone/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/backbone/backbone.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/backbone/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/backbone/build.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/backbone/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/backbone/fpn.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/backbone/resnet.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/box_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/box_regression.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/matcher.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/meta_arch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/meta_arch/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/meta_arch/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/meta_arch/build.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/meta_arch/panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/meta_arch/panoptic_fpn.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/meta_arch/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/meta_arch/rcnn.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/meta_arch/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/meta_arch/retinanet.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/meta_arch/semantic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/meta_arch/semantic_seg.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/poolers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/poolers.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/postprocessing.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/proposal_generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/proposal_generator/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/proposal_generator/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/proposal_generator/build.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/proposal_generator/proposal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/proposal_generator/proposal_utils.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/proposal_generator/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/proposal_generator/rpn.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/proposal_generator/rpn_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/proposal_generator/rpn_outputs.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/proposal_generator/rrpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/proposal_generator/rrpn.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/box_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/box_head.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/cascade_rcnn.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/fast_rcnn.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/keypoint_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/keypoint_head.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/mask_head.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/roi_heads.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/rotated_fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/roi_heads/rotated_fast_rcnn.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/sampling.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/modeling/test_time_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/modeling/test_time_augmentation.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/solver/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/solver/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/solver/build.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/solver/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/solver/lr_scheduler.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/structures/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/structures/boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/structures/boxes.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/structures/image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/structures/image_list.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/structures/instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/structures/instances.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/structures/keypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/structures/keypoints.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/structures/masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/structures/masks.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/structures/rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/structures/rotated_boxes.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved 2 | -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/analysis.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/collect_env.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/colormap.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/comm.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/env.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/events.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/logger.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/memory.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/registry.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/serialize.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/video_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/video_visualizer.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/detectron2/utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/detectron2/utils/visualizer.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/dev/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/dev/linter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/dev/linter.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/dev/packaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/dev/packaging/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/dev/packaging/build_all_wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/dev/packaging/build_all_wheels.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/dev/packaging/build_wheel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/dev/packaging/build_wheel.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/dev/packaging/gen_wheel_index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/dev/packaging/gen_wheel_index.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/dev/packaging/pkg_helpers.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/dev/packaging/pkg_helpers.bash -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/dev/parse_results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/dev/parse_results.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/dev/run_inference_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/dev/run_inference_tests.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/dev/run_instant_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/dev/run_instant_tests.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docker/Dockerfile -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docker/Dockerfile-circleci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docker/Dockerfile-circleci -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docker/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docker/docker-compose.yml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/Makefile -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/conf.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/index.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/checkpoint.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/checkpoint.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/config.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/data.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/engine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/engine.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/evaluation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/evaluation.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/export.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/export.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/index.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/layers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/layers.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/model_zoo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/model_zoo.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/modeling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/modeling.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/solver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/solver.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/structures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/structures.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/modules/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/modules/utils.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/notes/benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/notes/benchmarks.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/notes/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/notes/changelog.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/notes/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/notes/compatibility.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/notes/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/notes/contributing.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/notes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/notes/index.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/builtin_datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/builtin_datasets.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/configs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/configs.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/data_loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/data_loading.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/datasets.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/deployment.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/evaluation.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/extend.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/getting_started.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/index.rst -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/install.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/models.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/training.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/docs/tutorials/write-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/docs/tutorials/write-models.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/apply_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/apply_net.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/Base-DensePose-RCNN-FPN.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/Base-DensePose-RCNN-FPN.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_DL_WC1_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_DL_WC1_s1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_DL_WC2_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_DL_WC2_s1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_DL_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_DL_s1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_WC1_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_WC1_s1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_WC2_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_WC2_s1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_s1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_s1x_legacy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_101_FPN_s1x_legacy.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_DL_WC1_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_DL_WC1_s1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_DL_WC2_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_DL_WC2_s1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_DL_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_DL_s1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_WC1_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_WC1_s1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_WC2_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_WC2_s1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_s1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_s1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_s1x_legacy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/configs/densepose_rcnn_R_50_FPN_s1x_legacy.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/densepose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/densepose/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/densepose/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/densepose/config.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/densepose/densepose_coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/densepose/densepose_coco_evaluation.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/densepose/densepose_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/densepose/densepose_head.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/densepose/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/densepose/evaluator.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/densepose/roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/densepose/roi_head.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/dev/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/dev/run_inference_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/dev/run_inference_tests.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/dev/run_instant_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/dev/run_instant_tests.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/doc/GETTING_STARTED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/doc/GETTING_STARTED.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/doc/MODEL_ZOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/doc/MODEL_ZOO.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/doc/TOOL_APPLY_NET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/doc/TOOL_APPLY_NET.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/doc/TOOL_QUERY_DB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/doc/TOOL_QUERY_DB.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/query_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/query_db.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/tests/common.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/tests/test_model_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/tests/test_model_e2e.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/tests/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/tests/test_setup.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/tests/test_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/tests/test_structures.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/DensePose/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/DensePose/train_net.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/finetune_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/PointRend/finetune_net.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/logs/hadoop.kylin.libdfs.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/coarse_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/coarse_mask_head.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/color_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/color_augmentation.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/config.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/dataset_mapper.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/point_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/point_features.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/point_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/point_head.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/roi_heads.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/semantic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/PointRend/point_rend/semantic_seg.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/PointRend/run.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/PointRend/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/PointRend/train_net.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TensorMask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TensorMask/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TensorMask/configs/Base-TensorMask.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TensorMask/configs/Base-TensorMask.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TensorMask/configs/tensormask_R_50_FPN_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TensorMask/configs/tensormask_R_50_FPN_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TensorMask/configs/tensormask_R_50_FPN_6x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TensorMask/configs/tensormask_R_50_FPN_6x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TensorMask/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TensorMask/setup.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TensorMask/tensormask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TensorMask/tensormask/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TensorMask/tensormask/arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TensorMask/tensormask/arch.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TensorMask/tensormask/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TensorMask/tensormask/config.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TensorMask/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved 2 | -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TensorMask/tests/test_swap_align2nat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TensorMask/tests/test_swap_align2nat.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TensorMask/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TensorMask/train_net.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TridentNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TridentNet/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TridentNet/configs/Base-TridentNet-Fast-C4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TridentNet/configs/Base-TridentNet-Fast-C4.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TridentNet/configs/tridentnet_fast_R_101_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TridentNet/configs/tridentnet_fast_R_101_C4_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TridentNet/configs/tridentnet_fast_R_50_C4_1x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TridentNet/configs/tridentnet_fast_R_50_C4_1x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TridentNet/configs/tridentnet_fast_R_50_C4_3x.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TridentNet/configs/tridentnet_fast_R_50_C4_3x.yaml -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TridentNet/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TridentNet/train_net.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TridentNet/tridentnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TridentNet/tridentnet/__init__.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TridentNet/tridentnet/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TridentNet/tridentnet/config.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TridentNet/tridentnet/trident_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TridentNet/tridentnet/trident_backbone.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TridentNet/tridentnet/trident_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TridentNet/tridentnet/trident_conv.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TridentNet/tridentnet/trident_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TridentNet/tridentnet/trident_rcnn.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/projects/TridentNet/tridentnet/trident_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/projects/TridentNet/tridentnet/trident_rpn.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/setup.cfg -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/setup.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved 2 | -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/data/test_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/data/test_coco.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/data/test_detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/data/test_detection_utils.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/data/test_rotation_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/data/test_rotation_transform.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/data/test_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/data/test_sampler.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/data/test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/data/test_transforms.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/layers/test_mask_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/layers/test_mask_ops.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/layers/test_nms_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/layers/test_nms_rotated.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/layers/test_roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/layers/test_roi_align.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/layers/test_roi_align_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/layers/test_roi_align_rotated.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/modeling/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/modeling/test_anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/modeling/test_anchor_generator.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/modeling/test_box2box_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/modeling/test_box2box_transform.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/modeling/test_fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/modeling/test_fast_rcnn.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/modeling/test_model_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/modeling/test_model_e2e.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/modeling/test_roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/modeling/test_roi_heads.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/modeling/test_roi_pooler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/modeling/test_roi_pooler.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/modeling/test_rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/modeling/test_rpn.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/structures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/structures/test_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/structures/test_boxes.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/structures/test_imagelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/structures/test_imagelist.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/structures/test_instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/structures/test_instances.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/structures/test_rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/structures/test_rotated_boxes.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/test_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/test_checkpoint.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/test_config.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/test_export_caffe2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/test_export_caffe2.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/test_model_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/test_model_analysis.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/test_model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/test_model_zoo.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tests/test_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tests/test_visualizer.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/analyze_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/analyze_model.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/benchmark.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/convert-torchvision-to-d2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/convert-torchvision-to-d2.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/deploy/README.md -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/deploy/caffe2_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/deploy/caffe2_converter.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/deploy/caffe2_mask_rcnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/deploy/caffe2_mask_rcnn.cpp -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/deploy/torchscript_traced_mask_rcnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/deploy/torchscript_traced_mask_rcnn.cpp -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/finetune_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/finetune_net.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/inference.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/plain_train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/plain_train_net.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/run.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/train_net.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/visualize_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/visualize_data.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/detectron2/tools/visualize_json_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/detectron2/tools/visualize_json_results.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/global_local_parsing/global_local_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/global_local_parsing/global_local_datasets.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/global_local_parsing/global_local_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/global_local_parsing/global_local_evaluate.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/global_local_parsing/global_local_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/global_local_parsing/global_local_train.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/global_local_parsing/make_id_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/global_local_parsing/make_id_list.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/logits_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/logits_fusion.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/make_crop_and_mask_w_mask_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/make_crop_and_mask_w_mask_nms.py -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/scripts/make_coco_style_annotation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/scripts/make_coco_style_annotation.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/scripts/make_crop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/scripts/make_crop.sh -------------------------------------------------------------------------------- /model/SCHP/mhp_extension/scripts/parsing_fusion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/mhp_extension/scripts/parsing_fusion.sh -------------------------------------------------------------------------------- /model/SCHP/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__init__.py -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/bn.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/bn.cpython-310.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/bn.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/bn.cpython-38.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/bn.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/bn.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/dense.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/dense.cpython-310.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/dense.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/dense.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/functions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/functions.cpython-310.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/functions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/functions.cpython-38.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/functions.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/functions.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/misc.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/misc.cpython-310.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/misc.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/misc.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/residual.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/residual.cpython-310.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/__pycache__/residual.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/__pycache__/residual.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/modules/bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/bn.py -------------------------------------------------------------------------------- /model/SCHP/modules/deeplab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/deeplab.py -------------------------------------------------------------------------------- /model/SCHP/modules/dense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/dense.py -------------------------------------------------------------------------------- /model/SCHP/modules/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/functions.py -------------------------------------------------------------------------------- /model/SCHP/modules/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/misc.py -------------------------------------------------------------------------------- /model/SCHP/modules/residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/residual.py -------------------------------------------------------------------------------- /model/SCHP/modules/src/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/src/checks.h -------------------------------------------------------------------------------- /model/SCHP/modules/src/inplace_abn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/src/inplace_abn.cpp -------------------------------------------------------------------------------- /model/SCHP/modules/src/inplace_abn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/src/inplace_abn.h -------------------------------------------------------------------------------- /model/SCHP/modules/src/inplace_abn_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/src/inplace_abn_cpu.cpp -------------------------------------------------------------------------------- /model/SCHP/modules/src/inplace_abn_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/src/inplace_abn_cuda.cu -------------------------------------------------------------------------------- /model/SCHP/modules/src/inplace_abn_cuda_half.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/src/inplace_abn_cuda_half.cu -------------------------------------------------------------------------------- /model/SCHP/modules/src/utils/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/src/utils/checks.h -------------------------------------------------------------------------------- /model/SCHP/modules/src/utils/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/src/utils/common.h -------------------------------------------------------------------------------- /model/SCHP/modules/src/utils/cuda.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/modules/src/utils/cuda.cuh -------------------------------------------------------------------------------- /model/SCHP/networks/AugmentCE2P.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/AugmentCE2P.py -------------------------------------------------------------------------------- /model/SCHP/networks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/__init__.py -------------------------------------------------------------------------------- /model/SCHP/networks/__pycache__/AugmentCE2P.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/__pycache__/AugmentCE2P.cpython-310.pyc -------------------------------------------------------------------------------- /model/SCHP/networks/__pycache__/AugmentCE2P.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/__pycache__/AugmentCE2P.cpython-38.pyc -------------------------------------------------------------------------------- /model/SCHP/networks/__pycache__/AugmentCE2P.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/__pycache__/AugmentCE2P.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/networks/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /model/SCHP/networks/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /model/SCHP/networks/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/networks/backbone/mobilenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/backbone/mobilenetv2.py -------------------------------------------------------------------------------- /model/SCHP/networks/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/backbone/resnet.py -------------------------------------------------------------------------------- /model/SCHP/networks/backbone/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/backbone/resnext.py -------------------------------------------------------------------------------- /model/SCHP/networks/context_encoding/aspp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/context_encoding/aspp.py -------------------------------------------------------------------------------- /model/SCHP/networks/context_encoding/ocnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/context_encoding/ocnet.py -------------------------------------------------------------------------------- /model/SCHP/networks/context_encoding/psp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/networks/context_encoding/psp.py -------------------------------------------------------------------------------- /model/SCHP/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python==4.4.0.46 2 | -------------------------------------------------------------------------------- /model/SCHP/shai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/shai.py -------------------------------------------------------------------------------- /model/SCHP/simple_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/simple_extractor.py -------------------------------------------------------------------------------- /model/SCHP/simple_extractor_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/simple_extractor_multi.py -------------------------------------------------------------------------------- /model/SCHP/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/train.py -------------------------------------------------------------------------------- /model/SCHP/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/SCHP/utils/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /model/SCHP/utils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/utils/__pycache__/transforms.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/__pycache__/transforms.cpython-310.pyc -------------------------------------------------------------------------------- /model/SCHP/utils/__pycache__/transforms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/__pycache__/transforms.cpython-39.pyc -------------------------------------------------------------------------------- /model/SCHP/utils/consistency_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/consistency_loss.py -------------------------------------------------------------------------------- /model/SCHP/utils/criterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/criterion.py -------------------------------------------------------------------------------- /model/SCHP/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/encoding.py -------------------------------------------------------------------------------- /model/SCHP/utils/kl_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/kl_loss.py -------------------------------------------------------------------------------- /model/SCHP/utils/lovasz_softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/lovasz_softmax.py -------------------------------------------------------------------------------- /model/SCHP/utils/miou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/miou.py -------------------------------------------------------------------------------- /model/SCHP/utils/schp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/schp.py -------------------------------------------------------------------------------- /model/SCHP/utils/soft_dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/soft_dice_loss.py -------------------------------------------------------------------------------- /model/SCHP/utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/transforms.py -------------------------------------------------------------------------------- /model/SCHP/utils/warmup_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/SCHP/utils/warmup_scheduler.py -------------------------------------------------------------------------------- /model/__pycache__/attn_processor.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/__pycache__/attn_processor.cpython-310.pyc -------------------------------------------------------------------------------- /model/__pycache__/attn_processor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/__pycache__/attn_processor.cpython-39.pyc -------------------------------------------------------------------------------- /model/__pycache__/cloth_masker.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/__pycache__/cloth_masker.cpython-39.pyc -------------------------------------------------------------------------------- /model/__pycache__/pipeline.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/__pycache__/pipeline.cpython-39.pyc -------------------------------------------------------------------------------- /model/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /model/__pycache__/utils.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/__pycache__/utils.cpython-39.pyc -------------------------------------------------------------------------------- /model/attn_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/attn_processor.py -------------------------------------------------------------------------------- /model/cloth_masker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/cloth_masker.py -------------------------------------------------------------------------------- /model/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/pipeline.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/model/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/utils.py -------------------------------------------------------------------------------- /workflow/catvton_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pzc163/Comfyui-CatVTON/HEAD/workflow/catvton_workflow.json --------------------------------------------------------------------------------