├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml └── workflows │ └── tests.yml ├── .gitignore ├── LICENSE ├── README.md ├── annotator ├── binary │ └── __init__.py ├── canny │ └── __init__.py ├── clip │ └── __init__.py ├── color │ └── __init__.py ├── hed │ └── __init__.py ├── informative │ └── __init__.py ├── keypose │ ├── __init__.py │ ├── faster_rcnn_r50_fpn_coco.py │ └── hrnet_w48_coco_256x192.py ├── leres │ ├── __init__.py │ ├── leres │ │ ├── LICENSE │ │ ├── Resnet.py │ │ ├── Resnext_torch.py │ │ ├── depthmap.py │ │ ├── multi_depth_model_woauxi.py │ │ ├── net_tools.py │ │ └── network_auxi.py │ └── pix2pix │ │ ├── LICENSE │ │ ├── models │ │ ├── __init__.py │ │ ├── base_model.py │ │ ├── base_model_hg.py │ │ ├── networks.py │ │ └── pix2pix4depth_model.py │ │ ├── options │ │ ├── __init__.py │ │ ├── base_options.py │ │ └── test_options.py │ │ └── util │ │ ├── __init__.py │ │ ├── get_data.py │ │ ├── guidedfilter.py │ │ ├── html.py │ │ ├── image_pool.py │ │ ├── util.py │ │ └── visualizer.py ├── lineart │ └── __init__.py ├── lineart_anime │ └── __init__.py ├── mediapipe_face │ ├── __init__.py │ └── mediapipe_face_common.py ├── midas │ ├── __init__.py │ ├── api.py │ ├── midas │ │ ├── __init__.py │ │ ├── base_model.py │ │ ├── blocks.py │ │ ├── dpt_depth.py │ │ ├── midas_net.py │ │ ├── midas_net_custom.py │ │ ├── transforms.py │ │ └── vit.py │ └── utils.py ├── mlsd │ ├── __init__.py │ ├── models │ │ ├── mbv2_mlsd_large.py │ │ └── mbv2_mlsd_tiny.py │ └── utils.py ├── mmpkg │ ├── mmcv │ │ ├── __init__.py │ │ ├── arraymisc │ │ │ ├── __init__.py │ │ │ └── quantization.py │ │ ├── cnn │ │ │ ├── __init__.py │ │ │ ├── alexnet.py │ │ │ ├── bricks │ │ │ │ ├── __init__.py │ │ │ │ ├── activation.py │ │ │ │ ├── context_block.py │ │ │ │ ├── conv.py │ │ │ │ ├── conv2d_adaptive_padding.py │ │ │ │ ├── conv_module.py │ │ │ │ ├── conv_ws.py │ │ │ │ ├── depthwise_separable_conv_module.py │ │ │ │ ├── drop.py │ │ │ │ ├── generalized_attention.py │ │ │ │ ├── hsigmoid.py │ │ │ │ ├── hswish.py │ │ │ │ ├── non_local.py │ │ │ │ ├── norm.py │ │ │ │ ├── padding.py │ │ │ │ ├── plugin.py │ │ │ │ ├── registry.py │ │ │ │ ├── scale.py │ │ │ │ ├── swish.py │ │ │ │ ├── transformer.py │ │ │ │ ├── upsample.py │ │ │ │ └── wrappers.py │ │ │ ├── builder.py │ │ │ ├── resnet.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── flops_counter.py │ │ │ │ ├── fuse_conv_bn.py │ │ │ │ ├── sync_bn.py │ │ │ │ └── weight_init.py │ │ │ └── vgg.py │ │ ├── engine │ │ │ ├── __init__.py │ │ │ └── test.py │ │ ├── fileio │ │ │ ├── __init__.py │ │ │ ├── file_client.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── json_handler.py │ │ │ │ ├── pickle_handler.py │ │ │ │ └── yaml_handler.py │ │ │ ├── io.py │ │ │ └── parse.py │ │ ├── image │ │ │ ├── __init__.py │ │ │ ├── colorspace.py │ │ │ ├── geometric.py │ │ │ ├── io.py │ │ │ ├── misc.py │ │ │ └── photometric.py │ │ ├── model_zoo │ │ │ ├── deprecated.json │ │ │ ├── mmcls.json │ │ │ └── open_mmlab.json │ │ ├── ops │ │ │ ├── __init__.py │ │ │ ├── assign_score_withk.py │ │ │ ├── ball_query.py │ │ │ ├── bbox.py │ │ │ ├── border_align.py │ │ │ ├── box_iou_rotated.py │ │ │ ├── carafe.py │ │ │ ├── cc_attention.py │ │ │ ├── contour_expand.py │ │ │ ├── corner_pool.py │ │ │ ├── correlation.py │ │ │ ├── deform_conv.py │ │ │ ├── deform_roi_pool.py │ │ │ ├── deprecated_wrappers.py │ │ │ ├── focal_loss.py │ │ │ ├── furthest_point_sample.py │ │ │ ├── fused_bias_leakyrelu.py │ │ │ ├── gather_points.py │ │ │ ├── group_points.py │ │ │ ├── info.py │ │ │ ├── iou3d.py │ │ │ ├── knn.py │ │ │ ├── masked_conv.py │ │ │ ├── merge_cells.py │ │ │ ├── modulated_deform_conv.py │ │ │ ├── multi_scale_deform_attn.py │ │ │ ├── nms.py │ │ │ ├── pixel_group.py │ │ │ ├── point_sample.py │ │ │ ├── points_in_boxes.py │ │ │ ├── points_sampler.py │ │ │ ├── psa_mask.py │ │ │ ├── roi_align.py │ │ │ ├── roi_align_rotated.py │ │ │ ├── roi_pool.py │ │ │ ├── roiaware_pool3d.py │ │ │ ├── roipoint_pool3d.py │ │ │ ├── saconv.py │ │ │ ├── scatter_points.py │ │ │ ├── sync_bn.py │ │ │ ├── three_interpolate.py │ │ │ ├── three_nn.py │ │ │ ├── tin_shift.py │ │ │ ├── upfirdn2d.py │ │ │ └── voxelize.py │ │ ├── parallel │ │ │ ├── __init__.py │ │ │ ├── _functions.py │ │ │ ├── collate.py │ │ │ ├── data_container.py │ │ │ ├── data_parallel.py │ │ │ ├── distributed.py │ │ │ ├── distributed_deprecated.py │ │ │ ├── registry.py │ │ │ ├── scatter_gather.py │ │ │ └── utils.py │ │ ├── runner │ │ │ ├── __init__.py │ │ │ ├── base_module.py │ │ │ ├── base_runner.py │ │ │ ├── builder.py │ │ │ ├── checkpoint.py │ │ │ ├── default_constructor.py │ │ │ ├── dist_utils.py │ │ │ ├── epoch_based_runner.py │ │ │ ├── fp16_utils.py │ │ │ ├── hooks │ │ │ │ ├── __init__.py │ │ │ │ ├── checkpoint.py │ │ │ │ ├── closure.py │ │ │ │ ├── ema.py │ │ │ │ ├── evaluation.py │ │ │ │ ├── hook.py │ │ │ │ ├── iter_timer.py │ │ │ │ ├── logger │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dvclive.py │ │ │ │ │ ├── mlflow.py │ │ │ │ │ ├── neptune.py │ │ │ │ │ ├── pavi.py │ │ │ │ │ ├── tensorboard.py │ │ │ │ │ ├── text.py │ │ │ │ │ └── wandb.py │ │ │ │ ├── lr_updater.py │ │ │ │ ├── memory.py │ │ │ │ ├── momentum_updater.py │ │ │ │ ├── optimizer.py │ │ │ │ ├── profiler.py │ │ │ │ ├── sampler_seed.py │ │ │ │ └── sync_buffer.py │ │ │ ├── iter_based_runner.py │ │ │ ├── log_buffer.py │ │ │ ├── optimizer │ │ │ │ ├── __init__.py │ │ │ │ ├── builder.py │ │ │ │ └── default_constructor.py │ │ │ ├── priority.py │ │ │ └── utils.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── env.py │ │ │ ├── ext_loader.py │ │ │ ├── logging.py │ │ │ ├── misc.py │ │ │ ├── parrots_jit.py │ │ │ ├── parrots_wrapper.py │ │ │ ├── path.py │ │ │ ├── progressbar.py │ │ │ ├── registry.py │ │ │ ├── testing.py │ │ │ ├── timer.py │ │ │ ├── trace.py │ │ │ └── version_utils.py │ │ ├── version.py │ │ ├── video │ │ │ ├── __init__.py │ │ │ ├── io.py │ │ │ ├── optflow.py │ │ │ └── processing.py │ │ └── visualization │ │ │ ├── __init__.py │ │ │ ├── color.py │ │ │ ├── image.py │ │ │ └── optflow.py │ └── mmseg │ │ ├── apis │ │ ├── __init__.py │ │ ├── inference.py │ │ ├── test.py │ │ └── train.py │ │ ├── core │ │ ├── __init__.py │ │ ├── evaluation │ │ │ ├── __init__.py │ │ │ ├── class_names.py │ │ │ ├── eval_hooks.py │ │ │ └── metrics.py │ │ ├── seg │ │ │ ├── __init__.py │ │ │ ├── builder.py │ │ │ └── sampler │ │ │ │ ├── __init__.py │ │ │ │ ├── base_pixel_sampler.py │ │ │ │ └── ohem_pixel_sampler.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── misc.py │ │ ├── datasets │ │ ├── __init__.py │ │ ├── ade.py │ │ ├── builder.py │ │ ├── chase_db1.py │ │ ├── cityscapes.py │ │ ├── custom.py │ │ ├── dataset_wrappers.py │ │ ├── drive.py │ │ ├── hrf.py │ │ ├── pascal_context.py │ │ ├── pipelines │ │ │ ├── __init__.py │ │ │ ├── compose.py │ │ │ ├── formating.py │ │ │ ├── loading.py │ │ │ ├── test_time_aug.py │ │ │ └── transforms.py │ │ ├── stare.py │ │ └── voc.py │ │ ├── models │ │ ├── __init__.py │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ ├── cgnet.py │ │ │ ├── fast_scnn.py │ │ │ ├── hrnet.py │ │ │ ├── mobilenet_v2.py │ │ │ ├── mobilenet_v3.py │ │ │ ├── resnest.py │ │ │ ├── resnet.py │ │ │ ├── resnext.py │ │ │ ├── unet.py │ │ │ └── vit.py │ │ ├── builder.py │ │ ├── decode_heads │ │ │ ├── __init__.py │ │ │ ├── ann_head.py │ │ │ ├── apc_head.py │ │ │ ├── aspp_head.py │ │ │ ├── cascade_decode_head.py │ │ │ ├── cc_head.py │ │ │ ├── da_head.py │ │ │ ├── decode_head.py │ │ │ ├── dm_head.py │ │ │ ├── dnl_head.py │ │ │ ├── ema_head.py │ │ │ ├── enc_head.py │ │ │ ├── fcn_head.py │ │ │ ├── fpn_head.py │ │ │ ├── gc_head.py │ │ │ ├── lraspp_head.py │ │ │ ├── nl_head.py │ │ │ ├── ocr_head.py │ │ │ ├── point_head.py │ │ │ ├── psa_head.py │ │ │ ├── psp_head.py │ │ │ ├── sep_aspp_head.py │ │ │ ├── sep_fcn_head.py │ │ │ └── uper_head.py │ │ ├── losses │ │ │ ├── __init__.py │ │ │ ├── accuracy.py │ │ │ ├── cross_entropy_loss.py │ │ │ ├── dice_loss.py │ │ │ ├── lovasz_loss.py │ │ │ └── utils.py │ │ ├── necks │ │ │ ├── __init__.py │ │ │ ├── fpn.py │ │ │ └── multilevel_neck.py │ │ ├── segmentors │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── cascade_encoder_decoder.py │ │ │ └── encoder_decoder.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── drop.py │ │ │ ├── inverted_residual.py │ │ │ ├── make_divisible.py │ │ │ ├── res_layer.py │ │ │ ├── se_layer.py │ │ │ ├── self_attention_block.py │ │ │ ├── up_conv_block.py │ │ │ └── weight_init.py │ │ ├── ops │ │ ├── __init__.py │ │ ├── encoding.py │ │ └── wrappers.py │ │ └── utils │ │ ├── __init__.py │ │ ├── collect_env.py │ │ └── logger.py ├── normalbae │ ├── __init__.py │ └── models │ │ ├── NNET.py │ │ ├── baseline.py │ │ └── submodules │ │ ├── decoder.py │ │ ├── efficientnet_repo │ │ ├── .gitignore │ │ ├── BENCHMARK.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── caffe2_benchmark.py │ │ ├── caffe2_validate.py │ │ ├── geffnet │ │ │ ├── __init__.py │ │ │ ├── activations │ │ │ │ ├── __init__.py │ │ │ │ ├── activations.py │ │ │ │ ├── activations_jit.py │ │ │ │ └── activations_me.py │ │ │ ├── config.py │ │ │ ├── conv2d_layers.py │ │ │ ├── efficientnet_builder.py │ │ │ ├── gen_efficientnet.py │ │ │ ├── helpers.py │ │ │ ├── mobilenetv3.py │ │ │ ├── model_factory.py │ │ │ └── version.py │ │ ├── hubconf.py │ │ ├── onnx_export.py │ │ ├── onnx_optimize.py │ │ ├── onnx_to_caffe.py │ │ ├── onnx_validate.py │ │ ├── requirements.txt │ │ ├── setup.py │ │ ├── utils.py │ │ └── validate.py │ │ ├── encoder.py │ │ └── submodules.py ├── oneformer │ ├── __init__.py │ ├── api.py │ ├── configs │ │ ├── ade20k │ │ │ ├── Base-ADE20K-UnifiedSegmentation.yaml │ │ │ ├── oneformer_R50_bs16_160k.yaml │ │ │ └── oneformer_swin_large_IN21k_384_bs16_160k.yaml │ │ └── coco │ │ │ ├── Base-COCO-UnifiedSegmentation.yaml │ │ │ ├── oneformer_R50_bs16_50ep.yaml │ │ │ └── oneformer_swin_large_IN21k_384_bs16_100ep.yaml │ ├── detectron2 │ │ ├── __init__.py │ │ ├── checkpoint │ │ │ ├── __init__.py │ │ │ ├── c2_model_loading.py │ │ │ ├── catalog.py │ │ │ └── detection_checkpoint.py │ │ ├── config │ │ │ ├── __init__.py │ │ │ ├── compat.py │ │ │ ├── config.py │ │ │ ├── defaults.py │ │ │ ├── instantiate.py │ │ │ └── lazy.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── benchmark.py │ │ │ ├── build.py │ │ │ ├── catalog.py │ │ │ ├── common.py │ │ │ ├── dataset_mapper.py │ │ │ ├── datasets │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── builtin.py │ │ │ │ ├── builtin_meta.py │ │ │ │ ├── cityscapes.py │ │ │ │ ├── cityscapes_panoptic.py │ │ │ │ ├── coco.py │ │ │ │ ├── coco_panoptic.py │ │ │ │ ├── lvis.py │ │ │ │ ├── lvis_v0_5_categories.py │ │ │ │ ├── lvis_v1_categories.py │ │ │ │ ├── lvis_v1_category_image_count.py │ │ │ │ ├── pascal_voc.py │ │ │ │ └── register_coco.py │ │ │ ├── detection_utils.py │ │ │ ├── samplers │ │ │ │ ├── __init__.py │ │ │ │ ├── distributed_sampler.py │ │ │ │ └── grouped_batch_sampler.py │ │ │ └── transforms │ │ │ │ ├── __init__.py │ │ │ │ ├── augmentation.py │ │ │ │ ├── augmentation_impl.py │ │ │ │ └── transform.py │ │ ├── engine │ │ │ ├── __init__.py │ │ │ ├── defaults.py │ │ │ ├── hooks.py │ │ │ ├── launch.py │ │ │ └── train_loop.py │ │ ├── evaluation │ │ │ ├── __init__.py │ │ │ ├── cityscapes_evaluation.py │ │ │ ├── coco_evaluation.py │ │ │ ├── evaluator.py │ │ │ ├── fast_eval_api.py │ │ │ ├── lvis_evaluation.py │ │ │ ├── panoptic_evaluation.py │ │ │ ├── pascal_voc_evaluation.py │ │ │ ├── rotated_coco_evaluation.py │ │ │ ├── sem_seg_evaluation.py │ │ │ └── testing.py │ │ ├── export │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── c10.py │ │ │ ├── caffe2_export.py │ │ │ ├── caffe2_inference.py │ │ │ ├── caffe2_modeling.py │ │ │ ├── caffe2_patch.py │ │ │ ├── flatten.py │ │ │ ├── shared.py │ │ │ ├── torchscript.py │ │ │ └── torchscript_patch.py │ │ ├── layers │ │ │ ├── __init__.py │ │ │ ├── aspp.py │ │ │ ├── batch_norm.py │ │ │ ├── blocks.py │ │ │ ├── csrc │ │ │ │ ├── README.md │ │ │ │ ├── ROIAlignRotated │ │ │ │ │ ├── ROIAlignRotated.h │ │ │ │ │ ├── ROIAlignRotated_cpu.cpp │ │ │ │ │ └── ROIAlignRotated_cuda.cu │ │ │ │ ├── box_iou_rotated │ │ │ │ │ ├── box_iou_rotated.h │ │ │ │ │ ├── box_iou_rotated_cpu.cpp │ │ │ │ │ ├── box_iou_rotated_cuda.cu │ │ │ │ │ └── box_iou_rotated_utils.h │ │ │ │ ├── cocoeval │ │ │ │ │ ├── cocoeval.cpp │ │ │ │ │ └── cocoeval.h │ │ │ │ ├── cuda_version.cu │ │ │ │ ├── deformable │ │ │ │ │ ├── deform_conv.h │ │ │ │ │ ├── deform_conv_cuda.cu │ │ │ │ │ └── deform_conv_cuda_kernel.cu │ │ │ │ ├── nms_rotated │ │ │ │ │ ├── nms_rotated.h │ │ │ │ │ ├── nms_rotated_cpu.cpp │ │ │ │ │ └── nms_rotated_cuda.cu │ │ │ │ └── vision.cpp │ │ │ ├── deform_conv.py │ │ │ ├── losses.py │ │ │ ├── mask_ops.py │ │ │ ├── nms.py │ │ │ ├── roi_align.py │ │ │ ├── roi_align_rotated.py │ │ │ ├── rotated_boxes.py │ │ │ ├── shape_spec.py │ │ │ └── wrappers.py │ │ ├── model_zoo │ │ │ ├── __init__.py │ │ │ └── model_zoo.py │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── anchor_generator.py │ │ │ ├── backbone │ │ │ │ ├── __init__.py │ │ │ │ ├── backbone.py │ │ │ │ ├── build.py │ │ │ │ ├── fpn.py │ │ │ │ ├── mvit.py │ │ │ │ ├── regnet.py │ │ │ │ ├── resnet.py │ │ │ │ ├── swin.py │ │ │ │ ├── utils.py │ │ │ │ └── vit.py │ │ │ ├── box_regression.py │ │ │ ├── matcher.py │ │ │ ├── meta_arch │ │ │ │ ├── __init__.py │ │ │ │ ├── build.py │ │ │ │ ├── dense_detector.py │ │ │ │ ├── fcos.py │ │ │ │ ├── panoptic_fpn.py │ │ │ │ ├── rcnn.py │ │ │ │ ├── retinanet.py │ │ │ │ └── semantic_seg.py │ │ │ ├── mmdet_wrapper.py │ │ │ ├── poolers.py │ │ │ ├── postprocessing.py │ │ │ ├── proposal_generator │ │ │ │ ├── __init__.py │ │ │ │ ├── build.py │ │ │ │ ├── proposal_utils.py │ │ │ │ ├── rpn.py │ │ │ │ └── rrpn.py │ │ │ ├── roi_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── box_head.py │ │ │ │ ├── cascade_rcnn.py │ │ │ │ ├── fast_rcnn.py │ │ │ │ ├── keypoint_head.py │ │ │ │ ├── mask_head.py │ │ │ │ ├── roi_heads.py │ │ │ │ └── rotated_fast_rcnn.py │ │ │ ├── sampling.py │ │ │ └── test_time_augmentation.py │ │ ├── projects │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── deeplab │ │ │ │ ├── __init__.py │ │ │ │ ├── build_solver.py │ │ │ │ ├── config.py │ │ │ │ ├── loss.py │ │ │ │ ├── lr_scheduler.py │ │ │ │ ├── resnet.py │ │ │ │ └── semantic_seg.py │ │ ├── solver │ │ │ ├── __init__.py │ │ │ ├── build.py │ │ │ └── lr_scheduler.py │ │ ├── structures │ │ │ ├── __init__.py │ │ │ ├── boxes.py │ │ │ ├── image_list.py │ │ │ ├── instances.py │ │ │ ├── keypoints.py │ │ │ ├── masks.py │ │ │ └── rotated_boxes.py │ │ ├── tracking │ │ │ ├── __init__.py │ │ │ ├── base_tracker.py │ │ │ ├── bbox_iou_tracker.py │ │ │ ├── hungarian_tracker.py │ │ │ ├── iou_weighted_hungarian_bbox_iou_tracker.py │ │ │ ├── utils.py │ │ │ └── vanilla_hungarian_bbox_iou_tracker.py │ │ └── utils │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── analysis.py │ │ │ ├── collect_env.py │ │ │ ├── colormap.py │ │ │ ├── comm.py │ │ │ ├── develop.py │ │ │ ├── env.py │ │ │ ├── events.py │ │ │ ├── file_io.py │ │ │ ├── logger.py │ │ │ ├── memory.py │ │ │ ├── registry.py │ │ │ ├── serialize.py │ │ │ ├── testing.py │ │ │ ├── tracing.py │ │ │ ├── video_visualizer.py │ │ │ └── visualizer.py │ ├── oneformer │ │ ├── __init__.py │ │ ├── config.py │ │ ├── data │ │ │ ├── __init__.py │ │ │ ├── bpe_simple_vocab_16e6.txt.gz │ │ │ ├── build.py │ │ │ ├── dataset_mappers │ │ │ │ ├── __init__.py │ │ │ │ ├── coco_unified_new_baseline_dataset_mapper.py │ │ │ │ ├── dataset_mapper.py │ │ │ │ └── oneformer_unified_dataset_mapper.py │ │ │ ├── datasets │ │ │ │ ├── __init__.py │ │ │ │ ├── register_ade20k_instance.py │ │ │ │ ├── register_ade20k_panoptic.py │ │ │ │ ├── register_cityscapes_panoptic.py │ │ │ │ ├── register_coco_panoptic2instance.py │ │ │ │ └── register_coco_panoptic_annos_semseg.py │ │ │ └── tokenizer.py │ │ ├── demo │ │ │ ├── colormap.py │ │ │ ├── defaults.py │ │ │ ├── predictor.py │ │ │ └── visualizer.py │ │ ├── evaluation │ │ │ ├── __init__.py │ │ │ ├── cityscapes_evaluation.py │ │ │ ├── coco_evaluator.py │ │ │ ├── detection_coco_evaluator.py │ │ │ ├── evaluator.py │ │ │ └── instance_evaluation.py │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── backbone │ │ │ │ ├── __init__.py │ │ │ │ ├── dinat.py │ │ │ │ └── swin.py │ │ │ ├── matcher.py │ │ │ ├── meta_arch │ │ │ │ ├── __init__.py │ │ │ │ └── oneformer_head.py │ │ │ ├── pixel_decoder │ │ │ │ ├── __init__.py │ │ │ │ ├── fpn.py │ │ │ │ ├── msdeformattn.py │ │ │ │ └── ops │ │ │ │ │ ├── functions │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ms_deform_attn_func.py │ │ │ │ │ ├── make.sh │ │ │ │ │ ├── modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ms_deform_attn.py │ │ │ │ │ ├── setup.py │ │ │ │ │ ├── src │ │ │ │ │ ├── cpu │ │ │ │ │ │ ├── ms_deform_attn_cpu.cpp │ │ │ │ │ │ └── ms_deform_attn_cpu.h │ │ │ │ │ ├── cuda │ │ │ │ │ │ ├── ms_deform_attn_cuda.cu │ │ │ │ │ │ ├── ms_deform_attn_cuda.h │ │ │ │ │ │ └── ms_deform_im2col_cuda.cuh │ │ │ │ │ ├── ms_deform_attn.h │ │ │ │ │ └── vision.cpp │ │ │ │ │ └── test.py │ │ │ └── transformer_decoder │ │ │ │ ├── __init__.py │ │ │ │ ├── oneformer_transformer_decoder.py │ │ │ │ ├── position_encoding.py │ │ │ │ ├── text_transformer.py │ │ │ │ └── transformer.py │ │ ├── oneformer_model.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── box_ops.py │ │ │ ├── events.py │ │ │ ├── misc.py │ │ │ └── pos_embed.py │ └── pycocotools │ │ ├── __init__.py │ │ ├── coco.py │ │ ├── cocoeval.py │ │ └── mask.py ├── openpose │ ├── __init__.py │ ├── body.py │ ├── face.py │ ├── hand.py │ ├── model.py │ └── util.py ├── pidinet │ ├── __init__.py │ └── model.py ├── shuffle │ └── __init__.py ├── uniformer │ ├── __init__.py │ ├── configs │ │ └── _base_ │ │ │ ├── datasets │ │ │ ├── ade20k.py │ │ │ ├── chase_db1.py │ │ │ ├── cityscapes.py │ │ │ ├── cityscapes_769x769.py │ │ │ ├── drive.py │ │ │ ├── hrf.py │ │ │ ├── pascal_context.py │ │ │ ├── pascal_context_59.py │ │ │ ├── pascal_voc12.py │ │ │ ├── pascal_voc12_aug.py │ │ │ └── stare.py │ │ │ ├── default_runtime.py │ │ │ ├── models │ │ │ ├── ann_r50-d8.py │ │ │ ├── apcnet_r50-d8.py │ │ │ ├── ccnet_r50-d8.py │ │ │ ├── cgnet.py │ │ │ ├── danet_r50-d8.py │ │ │ ├── deeplabv3_r50-d8.py │ │ │ ├── deeplabv3_unet_s5-d16.py │ │ │ ├── deeplabv3plus_r50-d8.py │ │ │ ├── dmnet_r50-d8.py │ │ │ ├── dnl_r50-d8.py │ │ │ ├── emanet_r50-d8.py │ │ │ ├── encnet_r50-d8.py │ │ │ ├── fast_scnn.py │ │ │ ├── fcn_hr18.py │ │ │ ├── fcn_r50-d8.py │ │ │ ├── fcn_unet_s5-d16.py │ │ │ ├── fpn_r50.py │ │ │ ├── fpn_uniformer.py │ │ │ ├── gcnet_r50-d8.py │ │ │ ├── lraspp_m-v3-d8.py │ │ │ ├── nonlocal_r50-d8.py │ │ │ ├── ocrnet_hr18.py │ │ │ ├── ocrnet_r50-d8.py │ │ │ ├── pointrend_r50.py │ │ │ ├── psanet_r50-d8.py │ │ │ ├── pspnet_r50-d8.py │ │ │ ├── pspnet_unet_s5-d16.py │ │ │ ├── upernet_r50.py │ │ │ └── upernet_uniformer.py │ │ │ └── schedules │ │ │ ├── schedule_160k.py │ │ │ ├── schedule_20k.py │ │ │ ├── schedule_40k.py │ │ │ └── schedule_80k.py │ ├── inference.py │ ├── mmcv_custom │ │ ├── __init__.py │ │ └── checkpoint.py │ ├── uniformer.py │ └── upernet_global_small.py ├── util.py └── zoe │ ├── __init__.py │ └── zoedepth │ ├── models │ ├── __init__.py │ ├── base_models │ │ ├── __init__.py │ │ ├── midas.py │ │ └── midas_repo │ │ │ ├── .gitignore │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── environment.yaml │ │ │ ├── hubconf.py │ │ │ ├── input │ │ │ └── .placeholder │ │ │ ├── midas │ │ │ ├── backbones │ │ │ │ ├── beit.py │ │ │ │ ├── levit.py │ │ │ │ ├── next_vit.py │ │ │ │ ├── swin.py │ │ │ │ ├── swin2.py │ │ │ │ ├── swin_common.py │ │ │ │ ├── utils.py │ │ │ │ └── vit.py │ │ │ ├── base_model.py │ │ │ ├── blocks.py │ │ │ ├── dpt_depth.py │ │ │ ├── midas_net.py │ │ │ ├── midas_net_custom.py │ │ │ ├── model_loader.py │ │ │ └── transforms.py │ │ │ ├── output │ │ │ └── .placeholder │ │ │ ├── ros │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── additions │ │ │ │ ├── do_catkin_make.sh │ │ │ │ ├── downloads.sh │ │ │ │ ├── install_ros_melodic_ubuntu_17_18.sh │ │ │ │ ├── install_ros_noetic_ubuntu_20.sh │ │ │ │ └── make_package_cpp.sh │ │ │ ├── launch_midas_cpp.sh │ │ │ ├── midas_cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── launch │ │ │ │ │ ├── midas_cpp.launch │ │ │ │ │ └── midas_talker_listener.launch │ │ │ │ ├── package.xml │ │ │ │ ├── scripts │ │ │ │ │ ├── listener.py │ │ │ │ │ ├── listener_original.py │ │ │ │ │ └── talker.py │ │ │ │ └── src │ │ │ │ │ └── main.cpp │ │ │ └── run_talker_listener_test.sh │ │ │ ├── run.py │ │ │ ├── tf │ │ │ ├── README.md │ │ │ ├── input │ │ │ │ └── .placeholder │ │ │ ├── make_onnx_model.py │ │ │ ├── output │ │ │ │ └── .placeholder │ │ │ ├── run_onnx.py │ │ │ ├── run_pb.py │ │ │ ├── transforms.py │ │ │ └── utils.py │ │ │ ├── utils.py │ │ │ └── weights │ │ │ └── .placeholder │ ├── builder.py │ ├── depth_model.py │ ├── layers │ │ ├── attractor.py │ │ ├── dist_layers.py │ │ ├── localbins_layers.py │ │ └── patch_transformer.py │ ├── model_io.py │ ├── zoedepth │ │ ├── __init__.py │ │ ├── config_zoedepth.json │ │ ├── config_zoedepth_kitti.json │ │ └── zoedepth_v1.py │ └── zoedepth_nk │ │ ├── __init__.py │ │ ├── config_zoedepth_nk.json │ │ └── zoedepth_nk_v1.py │ └── utils │ ├── __init__.py │ ├── arg_utils.py │ ├── config.py │ ├── easydict │ └── __init__.py │ ├── geometry.py │ └── misc.py ├── example ├── api_img2img.ipynb ├── api_txt2img.ipynb ├── chatgpt.py └── visual_chatgpt.ipynb ├── extract_controlnet.py ├── extract_controlnet_diff.py ├── install.py ├── models ├── cldm_v15.yaml ├── cldm_v21.yaml ├── control_v11e_sd15_ip2p.yaml ├── control_v11e_sd15_shuffle.yaml ├── control_v11f1p_sd15_depth.yaml ├── control_v11p_sd15_canny.yaml ├── control_v11p_sd15_inpaint.yaml ├── control_v11p_sd15_lineart.yaml ├── control_v11p_sd15_mlsd.yaml ├── control_v11p_sd15_normalbae.yaml ├── control_v11p_sd15_openpose.yaml ├── control_v11p_sd15_scribble.yaml ├── control_v11p_sd15_seg.yaml ├── control_v11p_sd15_softedge.yaml ├── control_v11p_sd15s2_lineart_anime.yaml ├── control_v11u_sd15_tile.yaml ├── image_adapter_v14.yaml ├── sketch_adapter_v14.yaml ├── t2iadapter_canny_sd14v1.yaml ├── t2iadapter_canny_sd15v2.yaml ├── t2iadapter_color_sd14v1.yaml ├── t2iadapter_depth_sd14v1.yaml ├── t2iadapter_depth_sd15v2.yaml ├── t2iadapter_keypose_sd14v1.yaml ├── t2iadapter_openpose_sd14v1.yaml ├── t2iadapter_seg_sd14v1.yaml ├── t2iadapter_sketch_sd14v1.yaml ├── t2iadapter_sketch_sd15v2.yaml ├── t2iadapter_style_sd14v1.yaml └── t2iadapter_zoedepth_sd15v1.yaml ├── preload.py ├── requirements.txt ├── samples ├── an-gen.png ├── an-pose.png ├── an-source.jpg ├── bal-gen.png ├── bal-source.png ├── cat_out-2.png ├── cat_sk-2.png ├── dog_out-2.png ├── dog_rel.jpg ├── dog_rel.png ├── dog_sk-2.png ├── evt_gen.png ├── evt_hed.png ├── evt_source.jpg ├── fs_input.png ├── fs_output.png ├── kp_a-2.png ├── kp_a2-2.png ├── kp_o-2.png ├── kp_o2-2.png ├── mahiro-out.png ├── mahiro_canny.png ├── mahiro_input.png ├── nm-gen.png ├── nm-out.png ├── nm-src.png ├── sk-b-dep.png ├── sk-b-out.png └── sk-b-src.png ├── scripts ├── adapter.py ├── api.py ├── cldm.py ├── controlnet.py ├── external_code.py ├── global_state.py ├── hook.py ├── movie2movie.py ├── processor.py ├── utils.py └── xyz_grid_support.py └── tests ├── external_code_api ├── __init__.py ├── external_code_test.py └── script_args_test.py ├── utils.py └── web_api ├── __init__.py └── txt2img_test.py /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/README.md -------------------------------------------------------------------------------- /annotator/binary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/binary/__init__.py -------------------------------------------------------------------------------- /annotator/canny/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/canny/__init__.py -------------------------------------------------------------------------------- /annotator/clip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/clip/__init__.py -------------------------------------------------------------------------------- /annotator/color/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/color/__init__.py -------------------------------------------------------------------------------- /annotator/hed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/hed/__init__.py -------------------------------------------------------------------------------- /annotator/informative/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/informative/__init__.py -------------------------------------------------------------------------------- /annotator/keypose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/keypose/__init__.py -------------------------------------------------------------------------------- /annotator/keypose/faster_rcnn_r50_fpn_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/keypose/faster_rcnn_r50_fpn_coco.py -------------------------------------------------------------------------------- /annotator/keypose/hrnet_w48_coco_256x192.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/keypose/hrnet_w48_coco_256x192.py -------------------------------------------------------------------------------- /annotator/leres/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/__init__.py -------------------------------------------------------------------------------- /annotator/leres/leres/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/leres/LICENSE -------------------------------------------------------------------------------- /annotator/leres/leres/Resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/leres/Resnet.py -------------------------------------------------------------------------------- /annotator/leres/leres/Resnext_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/leres/Resnext_torch.py -------------------------------------------------------------------------------- /annotator/leres/leres/depthmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/leres/depthmap.py -------------------------------------------------------------------------------- /annotator/leres/leres/multi_depth_model_woauxi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/leres/multi_depth_model_woauxi.py -------------------------------------------------------------------------------- /annotator/leres/leres/net_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/leres/net_tools.py -------------------------------------------------------------------------------- /annotator/leres/leres/network_auxi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/leres/network_auxi.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/LICENSE -------------------------------------------------------------------------------- /annotator/leres/pix2pix/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/models/__init__.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/models/base_model.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/models/base_model_hg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/models/base_model_hg.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/models/networks.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/models/pix2pix4depth_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/models/pix2pix4depth_model.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/options/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/options/__init__.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/options/base_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/options/base_options.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/options/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/options/test_options.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/util/__init__.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/util/get_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/util/get_data.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/util/guidedfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/util/guidedfilter.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/util/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/util/html.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/util/image_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/util/image_pool.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/util/util.py -------------------------------------------------------------------------------- /annotator/leres/pix2pix/util/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/leres/pix2pix/util/visualizer.py -------------------------------------------------------------------------------- /annotator/lineart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/lineart/__init__.py -------------------------------------------------------------------------------- /annotator/lineart_anime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/lineart_anime/__init__.py -------------------------------------------------------------------------------- /annotator/mediapipe_face/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mediapipe_face/__init__.py -------------------------------------------------------------------------------- /annotator/mediapipe_face/mediapipe_face_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mediapipe_face/mediapipe_face_common.py -------------------------------------------------------------------------------- /annotator/midas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/midas/__init__.py -------------------------------------------------------------------------------- /annotator/midas/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/midas/api.py -------------------------------------------------------------------------------- /annotator/midas/midas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotator/midas/midas/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/midas/midas/base_model.py -------------------------------------------------------------------------------- /annotator/midas/midas/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/midas/midas/blocks.py -------------------------------------------------------------------------------- /annotator/midas/midas/dpt_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/midas/midas/dpt_depth.py -------------------------------------------------------------------------------- /annotator/midas/midas/midas_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/midas/midas/midas_net.py -------------------------------------------------------------------------------- /annotator/midas/midas/midas_net_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/midas/midas/midas_net_custom.py -------------------------------------------------------------------------------- /annotator/midas/midas/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/midas/midas/transforms.py -------------------------------------------------------------------------------- /annotator/midas/midas/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/midas/midas/vit.py -------------------------------------------------------------------------------- /annotator/midas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/midas/utils.py -------------------------------------------------------------------------------- /annotator/mlsd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mlsd/__init__.py -------------------------------------------------------------------------------- /annotator/mlsd/models/mbv2_mlsd_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mlsd/models/mbv2_mlsd_large.py -------------------------------------------------------------------------------- /annotator/mlsd/models/mbv2_mlsd_tiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mlsd/models/mbv2_mlsd_tiny.py -------------------------------------------------------------------------------- /annotator/mlsd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mlsd/utils.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/arraymisc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/arraymisc/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/arraymisc/quantization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/arraymisc/quantization.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/alexnet.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/activation.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/context_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/context_block.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/conv.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/conv2d_adaptive_padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/conv2d_adaptive_padding.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/conv_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/conv_module.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/conv_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/conv_ws.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/depthwise_separable_conv_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/depthwise_separable_conv_module.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/drop.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/generalized_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/generalized_attention.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/hsigmoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/hsigmoid.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/hswish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/hswish.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/non_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/non_local.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/norm.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/padding.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/plugin.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/registry.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/scale.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/swish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/swish.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/transformer.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/upsample.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/bricks/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/bricks/wrappers.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/builder.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/resnet.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/utils/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/utils/flops_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/utils/flops_counter.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/utils/fuse_conv_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/utils/fuse_conv_bn.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/utils/sync_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/utils/sync_bn.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/utils/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/utils/weight_init.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/cnn/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/cnn/vgg.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/engine/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/engine/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/engine/test.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/fileio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/fileio/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/fileio/file_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/fileio/file_client.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/fileio/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/fileio/handlers/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/fileio/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/fileio/handlers/base.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/fileio/handlers/json_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/fileio/handlers/json_handler.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/fileio/handlers/pickle_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/fileio/handlers/pickle_handler.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/fileio/handlers/yaml_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/fileio/handlers/yaml_handler.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/fileio/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/fileio/io.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/fileio/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/fileio/parse.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/image/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/image/colorspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/image/colorspace.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/image/geometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/image/geometric.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/image/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/image/io.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/image/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/image/misc.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/image/photometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/image/photometric.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/model_zoo/deprecated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/model_zoo/deprecated.json -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/model_zoo/mmcls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/model_zoo/mmcls.json -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/model_zoo/open_mmlab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/model_zoo/open_mmlab.json -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/assign_score_withk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/assign_score_withk.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/ball_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/ball_query.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/bbox.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/border_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/border_align.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/box_iou_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/box_iou_rotated.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/carafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/carafe.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/cc_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/cc_attention.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/contour_expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/contour_expand.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/corner_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/corner_pool.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/correlation.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/deform_conv.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/deform_roi_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/deform_roi_pool.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/deprecated_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/deprecated_wrappers.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/focal_loss.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/furthest_point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/furthest_point_sample.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/fused_bias_leakyrelu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/fused_bias_leakyrelu.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/gather_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/gather_points.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/group_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/group_points.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/info.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/iou3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/iou3d.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/knn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/knn.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/masked_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/masked_conv.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/merge_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/merge_cells.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/modulated_deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/modulated_deform_conv.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/multi_scale_deform_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/multi_scale_deform_attn.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/nms.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/pixel_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/pixel_group.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/point_sample.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/points_in_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/points_in_boxes.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/points_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/points_sampler.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/psa_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/psa_mask.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/roi_align.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/roi_align_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/roi_align_rotated.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/roi_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/roi_pool.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/roiaware_pool3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/roiaware_pool3d.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/roipoint_pool3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/roipoint_pool3d.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/saconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/saconv.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/scatter_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/scatter_points.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/sync_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/sync_bn.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/three_interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/three_interpolate.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/three_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/three_nn.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/tin_shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/tin_shift.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/upfirdn2d.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/ops/voxelize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/ops/voxelize.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/parallel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/parallel/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/parallel/_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/parallel/_functions.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/parallel/collate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/parallel/collate.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/parallel/data_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/parallel/data_container.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/parallel/data_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/parallel/data_parallel.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/parallel/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/parallel/distributed.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/parallel/distributed_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/parallel/distributed_deprecated.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/parallel/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/parallel/registry.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/parallel/scatter_gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/parallel/scatter_gather.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/parallel/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/parallel/utils.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/base_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/base_module.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/base_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/base_runner.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/builder.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/checkpoint.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/default_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/default_constructor.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/dist_utils.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/epoch_based_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/epoch_based_runner.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/fp16_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/fp16_utils.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/checkpoint.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/closure.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/ema.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/evaluation.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/hook.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/iter_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/iter_timer.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/logger/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/logger/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/logger/base.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/logger/dvclive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/logger/dvclive.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/logger/mlflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/logger/mlflow.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/logger/neptune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/logger/neptune.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/logger/pavi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/logger/pavi.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/logger/tensorboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/logger/tensorboard.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/logger/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/logger/text.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/logger/wandb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/logger/wandb.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/lr_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/lr_updater.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/memory.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/momentum_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/momentum_updater.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/optimizer.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/profiler.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/sampler_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/sampler_seed.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/hooks/sync_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/hooks/sync_buffer.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/iter_based_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/iter_based_runner.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/log_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/log_buffer.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/optimizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/optimizer/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/optimizer/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/optimizer/builder.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/optimizer/default_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/optimizer/default_constructor.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/priority.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/runner/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/runner/utils.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/config.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/env.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/ext_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/ext_loader.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/logging.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/misc.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/parrots_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/parrots_jit.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/parrots_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/parrots_wrapper.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/path.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/progressbar.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/registry.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/testing.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/timer.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/trace.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/utils/version_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/utils/version_utils.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/version.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/video/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/video/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/video/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/video/io.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/video/optflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/video/optflow.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/video/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/video/processing.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/visualization/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/visualization/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/visualization/color.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/visualization/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/visualization/image.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmcv/visualization/optflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmcv/visualization/optflow.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/apis/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/apis/inference.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/apis/test.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/apis/train.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/core/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/core/evaluation/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/core/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/core/evaluation/class_names.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/core/evaluation/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/core/evaluation/metrics.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/core/seg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/core/seg/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/core/seg/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/core/seg/builder.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/core/seg/sampler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/core/seg/sampler/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/core/seg/sampler/base_pixel_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/core/seg/sampler/base_pixel_sampler.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/core/seg/sampler/ohem_pixel_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/core/seg/sampler/ohem_pixel_sampler.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/core/utils/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/core/utils/misc.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/ade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/ade.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/builder.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/chase_db1.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/cityscapes.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/custom.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/drive.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/hrf.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/pascal_context.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/pipelines/test_time_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/pipelines/test_time_aug.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/stare.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/datasets/voc.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/backbones/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/backbones/cgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/backbones/cgnet.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/backbones/fast_scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/backbones/fast_scnn.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/backbones/hrnet.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/backbones/mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/backbones/mobilenet_v3.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/backbones/resnest.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/backbones/resnet.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/backbones/resnext.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/backbones/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/backbones/unet.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/backbones/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/backbones/vit.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/builder.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/ann_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/ann_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/apc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/apc_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/aspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/aspp_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/cascade_decode_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/cascade_decode_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/cc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/cc_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/da_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/da_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/decode_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/decode_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/dm_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/dm_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/dnl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/dnl_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/ema_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/ema_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/enc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/enc_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/fcn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/fcn_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/fpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/fpn_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/gc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/gc_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/lraspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/lraspp_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/nl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/nl_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/ocr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/ocr_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/point_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/point_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/psa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/psa_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/psp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/psp_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/sep_aspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/sep_aspp_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/sep_fcn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/sep_fcn_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/decode_heads/uper_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/decode_heads/uper_head.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/losses/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/losses/accuracy.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/losses/dice_loss.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/losses/lovasz_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/losses/lovasz_loss.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/losses/utils.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/necks/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/necks/fpn.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/necks/multilevel_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/necks/multilevel_neck.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/segmentors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/segmentors/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/segmentors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/segmentors/base.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/segmentors/cascade_encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/segmentors/cascade_encoder_decoder.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/segmentors/encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/segmentors/encoder_decoder.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/utils/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/utils/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/utils/drop.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/utils/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/utils/inverted_residual.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/utils/make_divisible.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/utils/res_layer.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/utils/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/utils/se_layer.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/utils/self_attention_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/utils/self_attention_block.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/utils/up_conv_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/utils/up_conv_block.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/models/utils/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/models/utils/weight_init.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/ops/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/ops/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/ops/encoding.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/ops/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/ops/wrappers.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/utils/__init__.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/utils/collect_env.py -------------------------------------------------------------------------------- /annotator/mmpkg/mmseg/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/mmpkg/mmseg/utils/logger.py -------------------------------------------------------------------------------- /annotator/normalbae/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/__init__.py -------------------------------------------------------------------------------- /annotator/normalbae/models/NNET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/NNET.py -------------------------------------------------------------------------------- /annotator/normalbae/models/baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/baseline.py -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/decoder.py -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/efficientnet_repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/efficientnet_repo/.gitignore -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/efficientnet_repo/BENCHMARK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/efficientnet_repo/BENCHMARK.md -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/efficientnet_repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/efficientnet_repo/LICENSE -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/efficientnet_repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/efficientnet_repo/README.md -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/efficientnet_repo/geffnet/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/efficientnet_repo/geffnet/config.py -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/efficientnet_repo/geffnet/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.0.2' 2 | -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/efficientnet_repo/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/efficientnet_repo/hubconf.py -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/efficientnet_repo/onnx_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/efficientnet_repo/onnx_export.py -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/efficientnet_repo/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/efficientnet_repo/setup.py -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/efficientnet_repo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/efficientnet_repo/utils.py -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/efficientnet_repo/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/efficientnet_repo/validate.py -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/encoder.py -------------------------------------------------------------------------------- /annotator/normalbae/models/submodules/submodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/normalbae/models/submodules/submodules.py -------------------------------------------------------------------------------- /annotator/oneformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/api.py -------------------------------------------------------------------------------- /annotator/oneformer/configs/ade20k/oneformer_R50_bs16_160k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/configs/ade20k/oneformer_R50_bs16_160k.yaml -------------------------------------------------------------------------------- /annotator/oneformer/configs/coco/Base-COCO-UnifiedSegmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/configs/coco/Base-COCO-UnifiedSegmentation.yaml -------------------------------------------------------------------------------- /annotator/oneformer/configs/coco/oneformer_R50_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/configs/coco/oneformer_R50_bs16_50ep.yaml -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/checkpoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/checkpoint/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/checkpoint/c2_model_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/checkpoint/c2_model_loading.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/checkpoint/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/checkpoint/catalog.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/checkpoint/detection_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/checkpoint/detection_checkpoint.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/config/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/config/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/config/compat.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/config/config.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/config/defaults.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/config/instantiate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/config/instantiate.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/config/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/config/lazy.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/benchmark.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/build.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/catalog.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/common.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/dataset_mapper.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/README.md -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/builtin.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/builtin_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/builtin_meta.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/cityscapes.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/cityscapes_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/cityscapes_panoptic.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/coco.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/lvis.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/lvis_v0_5_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/lvis_v0_5_categories.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/lvis_v1_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/lvis_v1_categories.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/pascal_voc.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/datasets/register_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/datasets/register_coco.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/detection_utils.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/samplers/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/samplers/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/samplers/distributed_sampler.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/samplers/grouped_batch_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/samplers/grouped_batch_sampler.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/transforms/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/transforms/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/transforms/augmentation.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/transforms/augmentation_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/transforms/augmentation_impl.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/data/transforms/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/data/transforms/transform.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/engine/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/engine/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/engine/defaults.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/engine/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/engine/hooks.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/engine/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/engine/launch.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/engine/train_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/engine/train_loop.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/evaluation/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/evaluation/cityscapes_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/evaluation/cityscapes_evaluation.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/evaluation/coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/evaluation/coco_evaluation.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/evaluation/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/evaluation/evaluator.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/evaluation/fast_eval_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/evaluation/fast_eval_api.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/evaluation/lvis_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/evaluation/lvis_evaluation.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/evaluation/panoptic_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/evaluation/panoptic_evaluation.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/evaluation/pascal_voc_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/evaluation/pascal_voc_evaluation.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/evaluation/rotated_coco_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/evaluation/rotated_coco_evaluation.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/evaluation/sem_seg_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/evaluation/sem_seg_evaluation.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/evaluation/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/evaluation/testing.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/export/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/export/README.md -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/export/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/export/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/export/api.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/export/c10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/export/c10.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/export/caffe2_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/export/caffe2_export.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/export/caffe2_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/export/caffe2_inference.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/export/caffe2_modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/export/caffe2_modeling.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/export/caffe2_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/export/caffe2_patch.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/export/flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/export/flatten.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/export/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/export/shared.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/export/torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/export/torchscript.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/export/torchscript_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/export/torchscript_patch.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/aspp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/aspp.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/batch_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/batch_norm.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/blocks.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/csrc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/csrc/README.md -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/csrc/cocoeval/cocoeval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/csrc/cocoeval/cocoeval.cpp -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/csrc/cocoeval/cocoeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/csrc/cocoeval/cocoeval.h -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/csrc/cuda_version.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/csrc/cuda_version.cu -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/csrc/deformable/deform_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/csrc/deformable/deform_conv.h -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/csrc/nms_rotated/nms_rotated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/csrc/nms_rotated/nms_rotated.h -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/csrc/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/csrc/vision.cpp -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/deform_conv.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/losses.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/mask_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/mask_ops.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/nms.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/roi_align.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/roi_align_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/roi_align_rotated.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/rotated_boxes.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/shape_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/shape_spec.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/layers/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/layers/wrappers.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/model_zoo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/model_zoo/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/model_zoo/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/model_zoo/model_zoo.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/anchor_generator.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/backbone/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/backbone/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/backbone/backbone.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/backbone/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/backbone/build.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/backbone/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/backbone/fpn.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/backbone/mvit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/backbone/mvit.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/backbone/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/backbone/regnet.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/backbone/resnet.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/backbone/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/backbone/swin.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/backbone/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/backbone/utils.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/backbone/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/backbone/vit.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/box_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/box_regression.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/matcher.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/meta_arch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/meta_arch/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/meta_arch/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/meta_arch/build.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/meta_arch/dense_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/meta_arch/dense_detector.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/meta_arch/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/meta_arch/fcos.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/meta_arch/panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/meta_arch/panoptic_fpn.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/meta_arch/rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/meta_arch/rcnn.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/meta_arch/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/meta_arch/retinanet.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/meta_arch/semantic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/meta_arch/semantic_seg.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/mmdet_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/mmdet_wrapper.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/poolers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/poolers.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/postprocessing.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/proposal_generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/proposal_generator/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/proposal_generator/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/proposal_generator/build.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/proposal_generator/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/proposal_generator/rpn.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/proposal_generator/rrpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/proposal_generator/rrpn.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/roi_heads/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/roi_heads/box_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/roi_heads/box_head.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/roi_heads/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/roi_heads/cascade_rcnn.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/roi_heads/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/roi_heads/fast_rcnn.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/roi_heads/keypoint_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/roi_heads/keypoint_head.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/roi_heads/mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/roi_heads/mask_head.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/roi_heads/roi_heads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/roi_heads/roi_heads.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/roi_heads/rotated_fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/roi_heads/rotated_fast_rcnn.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/sampling.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/modeling/test_time_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/modeling/test_time_augmentation.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/projects/README.md -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/projects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/projects/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/projects/deeplab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/projects/deeplab/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/projects/deeplab/build_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/projects/deeplab/build_solver.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/projects/deeplab/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/projects/deeplab/config.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/projects/deeplab/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/projects/deeplab/loss.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/projects/deeplab/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/projects/deeplab/lr_scheduler.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/projects/deeplab/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/projects/deeplab/resnet.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/projects/deeplab/semantic_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/projects/deeplab/semantic_seg.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/solver/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/solver/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/solver/build.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/solver/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/solver/lr_scheduler.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/structures/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/structures/boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/structures/boxes.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/structures/image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/structures/image_list.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/structures/instances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/structures/instances.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/structures/keypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/structures/keypoints.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/structures/masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/structures/masks.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/structures/rotated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/structures/rotated_boxes.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/tracking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/tracking/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/tracking/base_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/tracking/base_tracker.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/tracking/bbox_iou_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/tracking/bbox_iou_tracker.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/tracking/hungarian_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/tracking/hungarian_tracker.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/tracking/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/tracking/utils.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/README.md -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/analysis.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/collect_env.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/colormap.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/comm.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/develop.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/env.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/events.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/file_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/file_io.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/logger.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/memory.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/registry.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/serialize.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/testing.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/tracing.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/video_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/video_visualizer.py -------------------------------------------------------------------------------- /annotator/oneformer/detectron2/utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/detectron2/utils/visualizer.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/config.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/data/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | from . import datasets 3 | -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/data/bpe_simple_vocab_16e6.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/data/bpe_simple_vocab_16e6.txt.gz -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/data/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/data/build.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/data/dataset_mappers/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/data/dataset_mappers/dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/data/dataset_mappers/dataset_mapper.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/data/datasets/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/data/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/data/tokenizer.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/demo/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/demo/colormap.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/demo/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/demo/defaults.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/demo/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/demo/predictor.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/demo/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/demo/visualizer.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/evaluation/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/evaluation/cityscapes_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/evaluation/cityscapes_evaluation.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/evaluation/coco_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/evaluation/coco_evaluator.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/evaluation/detection_coco_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/evaluation/detection_coco_evaluator.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/evaluation/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/evaluation/evaluator.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/evaluation/instance_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/evaluation/instance_evaluation.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/modeling/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/backbone/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/backbone/dinat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/modeling/backbone/dinat.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/backbone/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/modeling/backbone/swin.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/modeling/matcher.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/meta_arch/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/meta_arch/oneformer_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/modeling/meta_arch/oneformer_head.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/pixel_decoder/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/pixel_decoder/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/modeling/pixel_decoder/fpn.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/pixel_decoder/msdeformattn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/modeling/pixel_decoder/msdeformattn.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/pixel_decoder/ops/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/modeling/pixel_decoder/ops/make.sh -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/pixel_decoder/ops/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/modeling/pixel_decoder/ops/setup.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/pixel_decoder/ops/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/modeling/pixel_decoder/ops/test.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/modeling/transformer_decoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/modeling/transformer_decoder/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/oneformer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/oneformer_model.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/utils/__init__.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/utils/box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/utils/box_ops.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/utils/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/utils/events.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/utils/misc.py -------------------------------------------------------------------------------- /annotator/oneformer/oneformer/utils/pos_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/oneformer/utils/pos_embed.py -------------------------------------------------------------------------------- /annotator/oneformer/pycocotools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /annotator/oneformer/pycocotools/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/pycocotools/coco.py -------------------------------------------------------------------------------- /annotator/oneformer/pycocotools/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/pycocotools/cocoeval.py -------------------------------------------------------------------------------- /annotator/oneformer/pycocotools/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/oneformer/pycocotools/mask.py -------------------------------------------------------------------------------- /annotator/openpose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/openpose/__init__.py -------------------------------------------------------------------------------- /annotator/openpose/body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/openpose/body.py -------------------------------------------------------------------------------- /annotator/openpose/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/openpose/face.py -------------------------------------------------------------------------------- /annotator/openpose/hand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/openpose/hand.py -------------------------------------------------------------------------------- /annotator/openpose/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/openpose/model.py -------------------------------------------------------------------------------- /annotator/openpose/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/openpose/util.py -------------------------------------------------------------------------------- /annotator/pidinet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/pidinet/__init__.py -------------------------------------------------------------------------------- /annotator/pidinet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/pidinet/model.py -------------------------------------------------------------------------------- /annotator/shuffle/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/shuffle/__init__.py -------------------------------------------------------------------------------- /annotator/uniformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/__init__.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/datasets/ade20k.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/datasets/chase_db1.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/datasets/cityscapes.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/cityscapes_769x769.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/datasets/cityscapes_769x769.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/datasets/drive.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/datasets/hrf.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/datasets/pascal_context.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/pascal_context_59.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/datasets/pascal_context_59.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/pascal_voc12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/datasets/pascal_voc12.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/pascal_voc12_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/datasets/pascal_voc12_aug.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/datasets/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/datasets/stare.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/ann_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/ann_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/apcnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/apcnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/ccnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/ccnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/cgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/cgnet.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/danet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/danet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/deeplabv3_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/deeplabv3_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/deeplabv3_unet_s5-d16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/deeplabv3_unet_s5-d16.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/deeplabv3plus_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/deeplabv3plus_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/dmnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/dmnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/dnl_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/dnl_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/emanet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/emanet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/encnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/encnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/fast_scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/fast_scnn.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/fcn_hr18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/fcn_hr18.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/fcn_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/fcn_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/fcn_unet_s5-d16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/fcn_unet_s5-d16.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/fpn_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/fpn_r50.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/fpn_uniformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/fpn_uniformer.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/gcnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/gcnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/lraspp_m-v3-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/lraspp_m-v3-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/nonlocal_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/nonlocal_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/ocrnet_hr18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/ocrnet_hr18.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/ocrnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/ocrnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/pointrend_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/pointrend_r50.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/psanet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/psanet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/pspnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/pspnet_r50-d8.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/pspnet_unet_s5-d16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/pspnet_unet_s5-d16.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/upernet_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/upernet_r50.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/models/upernet_uniformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/models/upernet_uniformer.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/schedules/schedule_160k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/schedules/schedule_160k.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/schedules/schedule_20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/schedules/schedule_20k.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/schedules/schedule_40k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/schedules/schedule_40k.py -------------------------------------------------------------------------------- /annotator/uniformer/configs/_base_/schedules/schedule_80k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/configs/_base_/schedules/schedule_80k.py -------------------------------------------------------------------------------- /annotator/uniformer/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/inference.py -------------------------------------------------------------------------------- /annotator/uniformer/mmcv_custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/mmcv_custom/__init__.py -------------------------------------------------------------------------------- /annotator/uniformer/mmcv_custom/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/mmcv_custom/checkpoint.py -------------------------------------------------------------------------------- /annotator/uniformer/uniformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/uniformer.py -------------------------------------------------------------------------------- /annotator/uniformer/upernet_global_small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/uniformer/upernet_global_small.py -------------------------------------------------------------------------------- /annotator/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/util.py -------------------------------------------------------------------------------- /annotator/zoe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/__init__.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/__init__.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/__init__.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/.gitignore -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/Dockerfile -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/LICENSE -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/README.md -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/environment.yaml -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/hubconf.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/input/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/midas/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/blocks.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/output/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/ros/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/LICENSE -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/ros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/README.md -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/run.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/tf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/README.md -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/tf/input/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/tf/output/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/tf/run_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/run_onnx.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/tf/run_pb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/run_pb.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/tf/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/transforms.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/tf/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/utils.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/base_models/midas_repo/utils.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/base_models/midas_repo/weights/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/builder.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/depth_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/depth_model.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/layers/attractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/layers/attractor.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/layers/dist_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/layers/dist_layers.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/layers/localbins_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/layers/localbins_layers.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/layers/patch_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/layers/patch_transformer.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/model_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/model_io.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/zoedepth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/zoedepth/__init__.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/zoedepth/config_zoedepth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/zoedepth/config_zoedepth.json -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/zoedepth/config_zoedepth_kitti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/zoedepth/config_zoedepth_kitti.json -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/zoedepth/zoedepth_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/zoedepth/zoedepth_v1.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/zoedepth_nk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/zoedepth_nk/__init__.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/zoedepth_nk/config_zoedepth_nk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/zoedepth_nk/config_zoedepth_nk.json -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/models/zoedepth_nk/zoedepth_nk_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/models/zoedepth_nk/zoedepth_nk_v1.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/utils/__init__.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/utils/arg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/utils/arg_utils.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/utils/config.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/utils/easydict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/utils/easydict/__init__.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/utils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/utils/geometry.py -------------------------------------------------------------------------------- /annotator/zoe/zoedepth/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/annotator/zoe/zoedepth/utils/misc.py -------------------------------------------------------------------------------- /example/api_img2img.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/example/api_img2img.ipynb -------------------------------------------------------------------------------- /example/api_txt2img.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/example/api_txt2img.ipynb -------------------------------------------------------------------------------- /example/chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/example/chatgpt.py -------------------------------------------------------------------------------- /example/visual_chatgpt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/example/visual_chatgpt.ipynb -------------------------------------------------------------------------------- /extract_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/extract_controlnet.py -------------------------------------------------------------------------------- /extract_controlnet_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/extract_controlnet_diff.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/install.py -------------------------------------------------------------------------------- /models/cldm_v15.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/cldm_v15.yaml -------------------------------------------------------------------------------- /models/cldm_v21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/cldm_v21.yaml -------------------------------------------------------------------------------- /models/control_v11e_sd15_ip2p.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11e_sd15_ip2p.yaml -------------------------------------------------------------------------------- /models/control_v11e_sd15_shuffle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11e_sd15_shuffle.yaml -------------------------------------------------------------------------------- /models/control_v11f1p_sd15_depth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11f1p_sd15_depth.yaml -------------------------------------------------------------------------------- /models/control_v11p_sd15_canny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11p_sd15_canny.yaml -------------------------------------------------------------------------------- /models/control_v11p_sd15_inpaint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11p_sd15_inpaint.yaml -------------------------------------------------------------------------------- /models/control_v11p_sd15_lineart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11p_sd15_lineart.yaml -------------------------------------------------------------------------------- /models/control_v11p_sd15_mlsd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11p_sd15_mlsd.yaml -------------------------------------------------------------------------------- /models/control_v11p_sd15_normalbae.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11p_sd15_normalbae.yaml -------------------------------------------------------------------------------- /models/control_v11p_sd15_openpose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11p_sd15_openpose.yaml -------------------------------------------------------------------------------- /models/control_v11p_sd15_scribble.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11p_sd15_scribble.yaml -------------------------------------------------------------------------------- /models/control_v11p_sd15_seg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11p_sd15_seg.yaml -------------------------------------------------------------------------------- /models/control_v11p_sd15_softedge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11p_sd15_softedge.yaml -------------------------------------------------------------------------------- /models/control_v11p_sd15s2_lineart_anime.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11p_sd15s2_lineart_anime.yaml -------------------------------------------------------------------------------- /models/control_v11u_sd15_tile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/control_v11u_sd15_tile.yaml -------------------------------------------------------------------------------- /models/image_adapter_v14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/image_adapter_v14.yaml -------------------------------------------------------------------------------- /models/sketch_adapter_v14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/sketch_adapter_v14.yaml -------------------------------------------------------------------------------- /models/t2iadapter_canny_sd14v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/t2iadapter_canny_sd14v1.yaml -------------------------------------------------------------------------------- /models/t2iadapter_canny_sd15v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/t2iadapter_canny_sd15v2.yaml -------------------------------------------------------------------------------- /models/t2iadapter_color_sd14v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/t2iadapter_color_sd14v1.yaml -------------------------------------------------------------------------------- /models/t2iadapter_depth_sd14v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/t2iadapter_depth_sd14v1.yaml -------------------------------------------------------------------------------- /models/t2iadapter_depth_sd15v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/t2iadapter_depth_sd15v2.yaml -------------------------------------------------------------------------------- /models/t2iadapter_keypose_sd14v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/t2iadapter_keypose_sd14v1.yaml -------------------------------------------------------------------------------- /models/t2iadapter_openpose_sd14v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/t2iadapter_openpose_sd14v1.yaml -------------------------------------------------------------------------------- /models/t2iadapter_seg_sd14v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/t2iadapter_seg_sd14v1.yaml -------------------------------------------------------------------------------- /models/t2iadapter_sketch_sd14v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/t2iadapter_sketch_sd14v1.yaml -------------------------------------------------------------------------------- /models/t2iadapter_sketch_sd15v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/t2iadapter_sketch_sd15v2.yaml -------------------------------------------------------------------------------- /models/t2iadapter_style_sd14v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/t2iadapter_style_sd14v1.yaml -------------------------------------------------------------------------------- /models/t2iadapter_zoedepth_sd15v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/models/t2iadapter_zoedepth_sd15v1.yaml -------------------------------------------------------------------------------- /preload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/preload.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mediapipe==0.9.1.0 2 | svglib 3 | fvcore 4 | opencv-contrib-python==4.7.0.68 5 | -------------------------------------------------------------------------------- /samples/an-gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/an-gen.png -------------------------------------------------------------------------------- /samples/an-pose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/an-pose.png -------------------------------------------------------------------------------- /samples/an-source.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/an-source.jpg -------------------------------------------------------------------------------- /samples/bal-gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/bal-gen.png -------------------------------------------------------------------------------- /samples/bal-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/bal-source.png -------------------------------------------------------------------------------- /samples/cat_out-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/cat_out-2.png -------------------------------------------------------------------------------- /samples/cat_sk-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/cat_sk-2.png -------------------------------------------------------------------------------- /samples/dog_out-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/dog_out-2.png -------------------------------------------------------------------------------- /samples/dog_rel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/dog_rel.jpg -------------------------------------------------------------------------------- /samples/dog_rel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/dog_rel.png -------------------------------------------------------------------------------- /samples/dog_sk-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/dog_sk-2.png -------------------------------------------------------------------------------- /samples/evt_gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/evt_gen.png -------------------------------------------------------------------------------- /samples/evt_hed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/evt_hed.png -------------------------------------------------------------------------------- /samples/evt_source.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/evt_source.jpg -------------------------------------------------------------------------------- /samples/fs_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/fs_input.png -------------------------------------------------------------------------------- /samples/fs_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/fs_output.png -------------------------------------------------------------------------------- /samples/kp_a-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/kp_a-2.png -------------------------------------------------------------------------------- /samples/kp_a2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/kp_a2-2.png -------------------------------------------------------------------------------- /samples/kp_o-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/kp_o-2.png -------------------------------------------------------------------------------- /samples/kp_o2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/kp_o2-2.png -------------------------------------------------------------------------------- /samples/mahiro-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/mahiro-out.png -------------------------------------------------------------------------------- /samples/mahiro_canny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/mahiro_canny.png -------------------------------------------------------------------------------- /samples/mahiro_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/mahiro_input.png -------------------------------------------------------------------------------- /samples/nm-gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/nm-gen.png -------------------------------------------------------------------------------- /samples/nm-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/nm-out.png -------------------------------------------------------------------------------- /samples/nm-src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/nm-src.png -------------------------------------------------------------------------------- /samples/sk-b-dep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/sk-b-dep.png -------------------------------------------------------------------------------- /samples/sk-b-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/sk-b-out.png -------------------------------------------------------------------------------- /samples/sk-b-src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/samples/sk-b-src.png -------------------------------------------------------------------------------- /scripts/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/scripts/adapter.py -------------------------------------------------------------------------------- /scripts/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/scripts/api.py -------------------------------------------------------------------------------- /scripts/cldm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/scripts/cldm.py -------------------------------------------------------------------------------- /scripts/controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/scripts/controlnet.py -------------------------------------------------------------------------------- /scripts/external_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/scripts/external_code.py -------------------------------------------------------------------------------- /scripts/global_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/scripts/global_state.py -------------------------------------------------------------------------------- /scripts/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/scripts/hook.py -------------------------------------------------------------------------------- /scripts/movie2movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/scripts/movie2movie.py -------------------------------------------------------------------------------- /scripts/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/scripts/processor.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /scripts/xyz_grid_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/scripts/xyz_grid_support.py -------------------------------------------------------------------------------- /tests/external_code_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/external_code_api/external_code_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/tests/external_code_api/external_code_test.py -------------------------------------------------------------------------------- /tests/external_code_api/script_args_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/tests/external_code_api/script_args_test.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/web_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/web_api/txt2img_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crucible-ai/sd-webui-controlnet/HEAD/tests/web_api/txt2img_test.py --------------------------------------------------------------------------------