├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── assets ├── childrendrawing1.png ├── demo │ ├── demo1.jpg │ ├── demo2.jpg │ ├── demo3.jpg │ ├── demo4.jpg │ ├── demo5.jpg │ └── demo6.jpg ├── digitalart1.png ├── model.png ├── natural1.png ├── natural2.png ├── natural3.png ├── natural4.png ├── natural5.png ├── oilpainting1.png ├── oilpainting2.png ├── pose │ └── demo.npz ├── quantitative_results.png ├── relief1.png ├── sculpture1.png ├── shadowplay1.png ├── sketch1.png ├── sketch2.png ├── teaser.png └── watercolor1.png ├── comparison_models ├── ControlNet │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── annotator │ │ ├── canny │ │ │ └── __init__.py │ │ ├── ckpts │ │ │ └── ckpts.txt │ │ ├── hed │ │ │ └── __init__.py │ │ ├── midas │ │ │ ├── LICENSE │ │ │ ├── __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 │ │ │ ├── LICENSE │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ │ ├── mbv2_mlsd_large.py │ │ │ │ └── mbv2_mlsd_tiny.py │ │ │ └── utils.py │ │ ├── openpose │ │ │ ├── LICENSE │ │ │ ├── __init__.py │ │ │ ├── body.py │ │ │ ├── hand.py │ │ │ ├── model.py │ │ │ └── util.py │ │ ├── uniformer │ │ │ ├── LICENSE │ │ │ ├── __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 │ │ │ ├── exp │ │ │ │ └── upernet_global_small │ │ │ │ │ ├── config.py │ │ │ │ │ ├── run.sh │ │ │ │ │ ├── test.sh │ │ │ │ │ ├── test_config_g.py │ │ │ │ │ ├── test_config_h32.py │ │ │ │ │ └── test_config_w32.py │ │ │ ├── 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 │ │ │ ├── mmcv_custom │ │ │ │ ├── __init__.py │ │ │ │ └── checkpoint.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 │ │ │ │ │ ├── uniformer.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 │ │ └── util.py │ ├── cldm │ │ ├── cldm.py │ │ ├── ddim_hacked.py │ │ ├── hack.py │ │ ├── logger.py │ │ └── model.py │ ├── config.py │ ├── docs │ │ ├── annotator.md │ │ ├── faq.md │ │ ├── low_vram.md │ │ └── train.md │ ├── environment.yaml │ ├── font │ │ └── DejaVuSans.ttf │ ├── gradio_annotator.py │ ├── gradio_canny2image.py │ ├── gradio_depth2image.py │ ├── gradio_fake_scribble2image.py │ ├── gradio_hed2image.py │ ├── gradio_hough2image.py │ ├── gradio_normal2image.py │ ├── gradio_pose2image.py │ ├── gradio_scribble2image.py │ ├── gradio_scribble2image_interactive.py │ ├── gradio_seg2image.py │ ├── ldm │ │ ├── data │ │ │ ├── __init__.py │ │ │ └── util.py │ │ ├── models │ │ │ ├── autoencoder.py │ │ │ └── diffusion │ │ │ │ ├── __init__.py │ │ │ │ ├── ddim.py │ │ │ │ ├── ddpm.py │ │ │ │ ├── dpm_solver │ │ │ │ ├── __init__.py │ │ │ │ ├── dpm_solver.py │ │ │ │ └── sampler.py │ │ │ │ ├── plms.py │ │ │ │ └── sampling_util.py │ │ ├── modules │ │ │ ├── attention.py │ │ │ ├── diffusionmodules │ │ │ │ ├── __init__.py │ │ │ │ ├── model.py │ │ │ │ ├── openaimodel.py │ │ │ │ ├── upscaling.py │ │ │ │ └── util.py │ │ │ ├── distributions │ │ │ │ ├── __init__.py │ │ │ │ └── distributions.py │ │ │ ├── ema.py │ │ │ ├── encoders │ │ │ │ ├── __init__.py │ │ │ │ └── modules.py │ │ │ ├── image_degradation │ │ │ │ ├── __init__.py │ │ │ │ ├── bsrgan.py │ │ │ │ ├── bsrgan_light.py │ │ │ │ ├── utils │ │ │ │ │ └── test.png │ │ │ │ └── utils_image.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 │ │ └── util.py │ ├── models │ │ ├── cldm_v15.yaml │ │ └── cldm_v21.yaml │ ├── share.py │ ├── tool_add_control.py │ ├── tool_add_control_sd21.py │ ├── tool_transfer_control.py │ ├── tutorial_dataset.py │ ├── tutorial_dataset_test.py │ ├── tutorial_train.py │ └── tutorial_train_sd21.py └── T2IAdapter │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── adapters │ ├── coadapters.py │ ├── t2i_adapters_for_canny.py │ └── t2i_adapters_for_style.py │ ├── app.py │ ├── app_coadapter.py │ ├── assets │ ├── DejaVuSans.ttf │ ├── doodle.mp4 │ ├── logo.png │ ├── logo2.png │ ├── logo_coadapter.png │ ├── overview1.png │ └── overview2.png │ ├── configs │ ├── mm │ │ ├── faster_rcnn_r50_fpn_coco.py │ │ └── hrnet_w48_coco_256x192.py │ ├── pl_train │ │ └── coadapter-v1-train.yaml │ └── stable-diffusion │ │ ├── app.yaml │ │ ├── sd-v1-inference.yaml │ │ ├── sd-v1-train.yaml │ │ ├── train_keypose.yaml │ │ ├── train_mask.yaml │ │ └── train_sketch.yaml │ ├── dist_util.py │ ├── docs │ ├── AdapterZoo.md │ ├── FAQ.md │ ├── coadapter.md │ └── examples.md │ ├── examples │ ├── README.md │ └── download_examples.py │ ├── ldm │ ├── data │ │ ├── __init__.py │ │ ├── dataset_coco.py │ │ ├── dataset_depth.py │ │ ├── dataset_laion.py │ │ ├── dataset_wikiart.py │ │ └── utils.py │ ├── inference_base.py │ ├── lr_scheduler.py │ ├── models │ │ ├── autoencoder.py │ │ └── diffusion │ │ │ ├── __init__.py │ │ │ ├── ddim.py │ │ │ ├── ddpm.py │ │ │ ├── dpm_solver │ │ │ ├── __init__.py │ │ │ ├── dpm_solver.py │ │ │ └── sampler.py │ │ │ └── plms.py │ ├── modules │ │ ├── attention.py │ │ ├── diffusionmodules │ │ │ ├── __init__.py │ │ │ ├── model.py │ │ │ ├── openaimodel.py │ │ │ └── util.py │ │ ├── distributions │ │ │ ├── __init__.py │ │ │ └── distributions.py │ │ ├── ema.py │ │ ├── encoders │ │ │ ├── __init__.py │ │ │ ├── adapter.py │ │ │ └── modules.py │ │ ├── extra_condition │ │ │ ├── __init__.py │ │ │ ├── api.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 │ │ │ ├── model_edge.py │ │ │ ├── openpose │ │ │ │ ├── __init__.py │ │ │ │ ├── api.py │ │ │ │ ├── body.py │ │ │ │ ├── hand.py │ │ │ │ ├── model.py │ │ │ │ └── util.py │ │ │ └── utils.py │ │ └── image_degradation │ │ │ ├── __init__.py │ │ │ ├── bsrgan.py │ │ │ ├── bsrgan_light.py │ │ │ ├── utils │ │ │ └── test.png │ │ │ └── utils_image.py │ └── util.py │ ├── models │ └── README.md │ ├── requirements.txt │ ├── test_adapter.py │ ├── test_composable_adapters.py │ ├── train.py │ ├── train_depth.py │ ├── train_seg.py │ └── train_sketch.py ├── configs ├── humansd │ ├── humansd-finetune-originalloss.yaml │ ├── humansd-finetune.yaml │ └── humansd-inference.yaml ├── karlo │ ├── decoder_900M_vit_l.yaml │ ├── improved_sr_64_256_1.4B.yaml │ └── prior_1B_vit_l.yaml └── stable-diffusion │ ├── intel │ ├── v2-inference-bf16.yaml │ ├── v2-inference-fp32.yaml │ ├── v2-inference-v-bf16.yaml │ └── v2-inference-v-fp32.yaml │ ├── v2-1-stable-unclip-h-inference.yaml │ ├── v2-1-stable-unclip-l-inference.yaml │ ├── v2-inference-v.yaml │ ├── v2-inference.yaml │ ├── v2-inpainting-inference.yaml │ ├── v2-midas-inference.yaml │ └── x4-upscaling.yaml ├── doc └── UNCLIP.MD ├── environment.yaml ├── humansd_data └── models │ └── mmpose │ └── configs │ ├── _base_ │ ├── datasets │ │ ├── 300w.py │ │ ├── aflw.py │ │ ├── aic.py │ │ ├── animalpose.py │ │ ├── ap10k.py │ │ ├── atrw.py │ │ ├── campus.py │ │ ├── coco.py │ │ ├── coco_wholebody.py │ │ ├── coco_wholebody_face.py │ │ ├── coco_wholebody_hand.py │ │ ├── cofw.py │ │ ├── crowdpose.py │ │ ├── deepfashion2.py │ │ ├── deepfashion_full.py │ │ ├── deepfashion_lower.py │ │ ├── deepfashion_upper.py │ │ ├── fly.py │ │ ├── freihand2d.py │ │ ├── h36m.py │ │ ├── halpe.py │ │ ├── horse10.py │ │ ├── interhand2d.py │ │ ├── interhand3d.py │ │ ├── jhmdb.py │ │ ├── locust.py │ │ ├── macaque.py │ │ ├── mhp.py │ │ ├── mpi_inf_3dhp.py │ │ ├── mpii.py │ │ ├── mpii_trb.py │ │ ├── nvgesture.py │ │ ├── ochuman.py │ │ ├── onehand10k.py │ │ ├── panoptic_body3d.py │ │ ├── panoptic_hand2d.py │ │ ├── posetrack18.py │ │ ├── rhd2d.py │ │ ├── shelf.py │ │ ├── wflw.py │ │ └── zebra.py │ ├── default_runtime.py │ └── filters │ │ ├── gaussian.py │ │ ├── one_euro.py │ │ ├── savizky_golay.py │ │ ├── smoothnet_h36m.md │ │ ├── smoothnet_t16_h36m.py │ │ ├── smoothnet_t32_h36m.py │ │ ├── smoothnet_t64_h36m.py │ │ └── smoothnet_t8_h36m.py │ ├── animal │ └── 2d_kpt_sview_rgb_img │ │ ├── README.md │ │ └── topdown_heatmap │ │ ├── README.md │ │ ├── animalpose │ │ ├── hrnet_animalpose.md │ │ ├── hrnet_animalpose.yml │ │ ├── hrnet_w32_animalpose_256x256.py │ │ ├── hrnet_w48_animalpose_256x256.py │ │ ├── res101_animalpose_256x256.py │ │ ├── res152_animalpose_256x256.py │ │ ├── res50_animalpose_256x256.py │ │ ├── resnet_animalpose.md │ │ └── resnet_animalpose.yml │ │ ├── ap10k │ │ ├── hrnet_ap10k.md │ │ ├── hrnet_ap10k.yml │ │ ├── hrnet_w32_ap10k_256x256.py │ │ ├── hrnet_w48_ap10k_256x256.py │ │ ├── res101_ap10k_256x256.py │ │ ├── res50_ap10k_256x256.py │ │ ├── resnet_ap10k.md │ │ └── resnet_ap10k.yml │ │ ├── atrw │ │ ├── hrnet_atrw.md │ │ ├── hrnet_atrw.yml │ │ ├── hrnet_w32_atrw_256x256.py │ │ ├── hrnet_w48_atrw_256x256.py │ │ ├── res101_atrw_256x256.py │ │ ├── res152_atrw_256x256.py │ │ ├── res50_atrw_256x256.py │ │ ├── resnet_atrw.md │ │ └── resnet_atrw.yml │ │ ├── fly │ │ ├── res101_fly_192x192.py │ │ ├── res152_fly_192x192.py │ │ ├── res50_fly_192x192.py │ │ ├── resnet_fly.md │ │ └── resnet_fly.yml │ │ ├── horse10 │ │ ├── hrnet_horse10.md │ │ ├── hrnet_horse10.yml │ │ ├── hrnet_w32_horse10_256x256-split1.py │ │ ├── hrnet_w32_horse10_256x256-split2.py │ │ ├── hrnet_w32_horse10_256x256-split3.py │ │ ├── hrnet_w48_horse10_256x256-split1.py │ │ ├── hrnet_w48_horse10_256x256-split2.py │ │ ├── hrnet_w48_horse10_256x256-split3.py │ │ ├── res101_horse10_256x256-split1.py │ │ ├── res101_horse10_256x256-split2.py │ │ ├── res101_horse10_256x256-split3.py │ │ ├── res152_horse10_256x256-split1.py │ │ ├── res152_horse10_256x256-split2.py │ │ ├── res152_horse10_256x256-split3.py │ │ ├── res50_horse10_256x256-split1.py │ │ ├── res50_horse10_256x256-split2.py │ │ ├── res50_horse10_256x256-split3.py │ │ ├── resnet_horse10.md │ │ └── resnet_horse10.yml │ │ ├── locust │ │ ├── res101_locust_160x160.py │ │ ├── res152_locust_160x160.py │ │ ├── res50_locust_160x160.py │ │ ├── resnet_locust.md │ │ └── resnet_locust.yml │ │ ├── macaque │ │ ├── hrnet_macaque.md │ │ ├── hrnet_macaque.yml │ │ ├── hrnet_w32_macaque_256x192.py │ │ ├── hrnet_w48_macaque_256x192.py │ │ ├── res101_macaque_256x192.py │ │ ├── res152_macaque_256x192.py │ │ ├── res50_macaque_256x192.py │ │ ├── resnet_macaque.md │ │ └── resnet_macaque.yml │ │ └── zebra │ │ ├── res101_zebra_160x160.py │ │ ├── res152_zebra_160x160.py │ │ ├── res50_zebra_160x160.py │ │ ├── resnet_zebra.md │ │ └── resnet_zebra.yml │ ├── body │ ├── 2d_kpt_sview_rgb_img │ │ ├── README.md │ │ ├── associative_embedding │ │ │ ├── README.md │ │ │ ├── aic │ │ │ │ ├── higherhrnet_aic.md │ │ │ │ ├── higherhrnet_aic.yml │ │ │ │ ├── higherhrnet_w32_aic_512x512.py │ │ │ │ ├── higherhrnet_w32_aic_512x512_udp.py │ │ │ │ ├── hrnet_aic.md │ │ │ │ ├── hrnet_aic.yml │ │ │ │ └── hrnet_w32_aic_512x512.py │ │ │ ├── coco │ │ │ │ ├── higherhrnet_coco.md │ │ │ │ ├── higherhrnet_coco.yml │ │ │ │ ├── higherhrnet_udp_coco.md │ │ │ │ ├── higherhrnet_udp_coco.yml │ │ │ │ ├── higherhrnet_w32_coco_512x512.py │ │ │ │ ├── higherhrnet_w32_coco_512x512_udp.py │ │ │ │ ├── higherhrnet_w32_coco_640x640.py │ │ │ │ ├── higherhrnet_w32_coco_640x640_udp.py │ │ │ │ ├── higherhrnet_w48_coco_512x512.py │ │ │ │ ├── higherhrnet_w48_coco_512x512_udp.py │ │ │ │ ├── hourglass_ae_coco.md │ │ │ │ ├── hourglass_ae_coco.yml │ │ │ │ ├── hourglass_ae_coco_512x512.py │ │ │ │ ├── hrnet_coco.md │ │ │ │ ├── hrnet_coco.yml │ │ │ │ ├── hrnet_udp_coco.md │ │ │ │ ├── hrnet_udp_coco.yml │ │ │ │ ├── hrnet_w32_coco_512x512.py │ │ │ │ ├── hrnet_w32_coco_512x512_udp.py │ │ │ │ ├── hrnet_w32_coco_640x640.py │ │ │ │ ├── hrnet_w32_coco_640x640_udp.py │ │ │ │ ├── hrnet_w48_coco_512x512.py │ │ │ │ ├── hrnet_w48_coco_512x512_udp.py │ │ │ │ ├── hrnet_w48_coco_640x640.py │ │ │ │ ├── hrnet_w48_coco_640x640_udp.py │ │ │ │ ├── mobilenetv2_coco.md │ │ │ │ ├── mobilenetv2_coco.yml │ │ │ │ ├── mobilenetv2_coco_512x512.py │ │ │ │ ├── res101_coco_512x512.py │ │ │ │ ├── res101_coco_640x640.py │ │ │ │ ├── res152_coco_512x512.py │ │ │ │ ├── res152_coco_640x640.py │ │ │ │ ├── res50_coco_512x512.py │ │ │ │ ├── res50_coco_640x640.py │ │ │ │ ├── resnet_coco.md │ │ │ │ └── resnet_coco.yml │ │ │ ├── crowdpose │ │ │ │ ├── higherhrnet_crowdpose.md │ │ │ │ ├── higherhrnet_crowdpose.yml │ │ │ │ ├── higherhrnet_w32_crowdpose_512x512.py │ │ │ │ ├── higherhrnet_w32_crowdpose_512x512_udp.py │ │ │ │ ├── higherhrnet_w32_crowdpose_640x640.py │ │ │ │ ├── higherhrnet_w32_crowdpose_640x640_udp.py │ │ │ │ ├── higherhrnet_w48_crowdpose_512x512.py │ │ │ │ ├── higherhrnet_w48_crowdpose_512x512_udp.py │ │ │ │ ├── mobilenetv2_crowdpose_512x512.py │ │ │ │ ├── res101_crowdpose_512x512.py │ │ │ │ ├── res152_crowdpose_512x512.py │ │ │ │ └── res50_crowdpose_512x512.py │ │ │ └── mhp │ │ │ │ ├── hrnet_mhp.md │ │ │ │ ├── hrnet_mhp.yml │ │ │ │ └── hrnet_w48_mhp_512x512.py │ │ ├── cid │ │ │ └── coco │ │ │ │ ├── hrnet_coco.md │ │ │ │ ├── hrnet_coco.yml │ │ │ │ ├── hrnet_w32_coco_512x512.py │ │ │ │ └── hrnet_w48_coco_512x512.py │ │ ├── deeppose │ │ │ ├── README.md │ │ │ ├── coco │ │ │ │ ├── res101_coco_256x192.py │ │ │ │ ├── res101_coco_256x192_rle.py │ │ │ │ ├── res152_coco_256x192.py │ │ │ │ ├── res152_coco_256x192_rle.py │ │ │ │ ├── res152_coco_384x288_rle.py │ │ │ │ ├── res50_coco_256x192.py │ │ │ │ ├── res50_coco_256x192_rle.py │ │ │ │ ├── resnet_coco.md │ │ │ │ ├── resnet_coco.yml │ │ │ │ ├── resnet_rle_coco.md │ │ │ │ └── resnet_rle_coco.yml │ │ │ └── mpii │ │ │ │ ├── res101_mpii_256x256.py │ │ │ │ ├── res152_mpii_256x256.py │ │ │ │ ├── res50_mpii_256x256.py │ │ │ │ ├── res50_mpii_256x256_rle.py │ │ │ │ ├── resnet_mpii.md │ │ │ │ ├── resnet_mpii.yml │ │ │ │ ├── resnet_rle_mpii.md │ │ │ │ └── resnet_rle_mpii.yml │ │ ├── dekr │ │ │ ├── README.md │ │ │ ├── coco │ │ │ │ ├── hrnet_coco.md │ │ │ │ ├── hrnet_coco.yml │ │ │ │ ├── hrnet_w32_coco_512x512.py │ │ │ │ ├── hrnet_w32_coco_512x512_multiscale.py │ │ │ │ ├── hrnet_w48_coco_640x640.py │ │ │ │ └── hrnet_w48_coco_640x640_multiscale.py │ │ │ └── crowdpose │ │ │ │ ├── hrnet_crowdpose.md │ │ │ │ ├── hrnet_crowdpose.yml │ │ │ │ ├── hrnet_w32_crowdpose_512x512.py │ │ │ │ ├── hrnet_w32_crowdpose_512x512_multiscale.py │ │ │ │ ├── hrnet_w48_crowdpose_640x640.py │ │ │ │ └── hrnet_w48_crowdpose_640x640_multiscale.py │ │ └── topdown_heatmap │ │ │ ├── README.md │ │ │ ├── aic │ │ │ ├── hrnet_aic.md │ │ │ ├── hrnet_aic.yml │ │ │ ├── hrnet_w32_aic_256x192.py │ │ │ ├── hrnet_w32_aic_384x288.py │ │ │ ├── hrnet_w48_aic_256x192.py │ │ │ ├── hrnet_w48_aic_384x288.py │ │ │ ├── res101_aic_256x192.py │ │ │ ├── res101_aic_384x288.py │ │ │ ├── res152_aic_256x192.py │ │ │ ├── res152_aic_384x288.py │ │ │ ├── res50_aic_256x192.py │ │ │ ├── res50_aic_384x288.py │ │ │ ├── resnet_aic.md │ │ │ └── resnet_aic.yml │ │ │ ├── coco │ │ │ ├── 2xmspn50_coco_256x192.py │ │ │ ├── 2xrsn50_coco_256x192.py │ │ │ ├── 3xmspn50_coco_256x192.py │ │ │ ├── 3xrsn50_coco_256x192.py │ │ │ ├── 4xmspn50_coco_256x192.py │ │ │ ├── alexnet_coco.md │ │ │ ├── alexnet_coco.yml │ │ │ ├── alexnet_coco_256x192.py │ │ │ ├── cpm_coco.md │ │ │ ├── cpm_coco.yml │ │ │ ├── cpm_coco_256x192.py │ │ │ ├── cpm_coco_384x288.py │ │ │ ├── hourglass52_coco_256x256.py │ │ │ ├── hourglass52_coco_384x384.py │ │ │ ├── hourglass_coco.md │ │ │ ├── hourglass_coco.yml │ │ │ ├── hrformer_base_coco_256x192.py │ │ │ ├── hrformer_base_coco_384x288.py │ │ │ ├── hrformer_coco.md │ │ │ ├── hrformer_coco.yml │ │ │ ├── hrformer_small_coco_256x192.py │ │ │ ├── hrformer_small_coco_384x288.py │ │ │ ├── hrnet_augmentation_coco.md │ │ │ ├── hrnet_augmentation_coco.yml │ │ │ ├── hrnet_coco.md │ │ │ ├── hrnet_coco.yml │ │ │ ├── hrnet_dark_coco.md │ │ │ ├── hrnet_dark_coco.yml │ │ │ ├── hrnet_fp16_coco.md │ │ │ ├── hrnet_fp16_coco.yml │ │ │ ├── hrnet_udp_coco.md │ │ │ ├── hrnet_udp_coco.yml │ │ │ ├── hrnet_w32_coco_256x192.py │ │ │ ├── hrnet_w32_coco_256x192_coarsedropout.py │ │ │ ├── hrnet_w32_coco_256x192_dark.py │ │ │ ├── hrnet_w32_coco_256x192_fp16_dynamic.py │ │ │ ├── hrnet_w32_coco_256x192_gridmask.py │ │ │ ├── hrnet_w32_coco_256x192_photometric.py │ │ │ ├── hrnet_w32_coco_256x192_udp.py │ │ │ ├── hrnet_w32_coco_256x192_udp_regress.py │ │ │ ├── hrnet_w32_coco_384x288.py │ │ │ ├── hrnet_w32_coco_384x288_dark.py │ │ │ ├── hrnet_w32_coco_384x288_udp.py │ │ │ ├── hrnet_w48_coco_256x192.py │ │ │ ├── hrnet_w48_coco_256x192_dark.py │ │ │ ├── hrnet_w48_coco_256x192_udp.py │ │ │ ├── hrnet_w48_coco_384x288.py │ │ │ ├── hrnet_w48_coco_384x288_dark.py │ │ │ ├── hrnet_w48_coco_384x288_udp.py │ │ │ ├── hrnetv2_w64_coco_384x288_udp.py │ │ │ ├── litehrnet_18_coco_256x192.py │ │ │ ├── litehrnet_18_coco_384x288.py │ │ │ ├── litehrnet_30_coco_256x192.py │ │ │ ├── litehrnet_30_coco_384x288.py │ │ │ ├── litehrnet_coco.md │ │ │ ├── litehrnet_coco.yml │ │ │ ├── mobilenetv2_coco.md │ │ │ ├── mobilenetv2_coco.yml │ │ │ ├── mobilenetv2_coco_256x192.py │ │ │ ├── mobilenetv2_coco_384x288.py │ │ │ ├── mspn50_coco_256x192.py │ │ │ ├── mspn_coco.md │ │ │ ├── mspn_coco.yml │ │ │ ├── pvt-s_coco_256x192.py │ │ │ ├── pvt_coco.md │ │ │ ├── pvt_coco.yml │ │ │ ├── pvtv2-b2_coco_256x192.py │ │ │ ├── res101_coco_256x192.py │ │ │ ├── res101_coco_256x192_dark.py │ │ │ ├── res101_coco_384x288.py │ │ │ ├── res101_coco_384x288_dark.py │ │ │ ├── res152_coco_256x192.py │ │ │ ├── res152_coco_256x192_dark.py │ │ │ ├── res152_coco_384x288.py │ │ │ ├── res152_coco_384x288_dark.py │ │ │ ├── res50_coco_256x192.py │ │ │ ├── res50_coco_256x192_awing.py │ │ │ ├── res50_coco_256x192_dark.py │ │ │ ├── res50_coco_256x192_fp16_dynamic.py │ │ │ ├── res50_coco_384x288.py │ │ │ ├── res50_coco_384x288_dark.py │ │ │ ├── resnest101_coco_256x192.py │ │ │ ├── resnest101_coco_384x288.py │ │ │ ├── resnest200_coco_256x192.py │ │ │ ├── resnest200_coco_384x288.py │ │ │ ├── resnest269_coco_256x192.py │ │ │ ├── resnest269_coco_384x288.py │ │ │ ├── resnest50_coco_256x192.py │ │ │ ├── resnest50_coco_384x288.py │ │ │ ├── resnest_coco.md │ │ │ ├── resnest_coco.yml │ │ │ ├── resnet_coco.md │ │ │ ├── resnet_coco.yml │ │ │ ├── resnet_dark_coco.md │ │ │ ├── resnet_dark_coco.yml │ │ │ ├── resnet_fp16_coco.md │ │ │ ├── resnet_fp16_coco.yml │ │ │ ├── resnetv1d101_coco_256x192.py │ │ │ ├── resnetv1d101_coco_384x288.py │ │ │ ├── resnetv1d152_coco_256x192.py │ │ │ ├── resnetv1d152_coco_384x288.py │ │ │ ├── resnetv1d50_coco_256x192.py │ │ │ ├── resnetv1d50_coco_384x288.py │ │ │ ├── resnetv1d_coco.md │ │ │ ├── resnetv1d_coco.yml │ │ │ ├── resnext101_coco_256x192.py │ │ │ ├── resnext101_coco_384x288.py │ │ │ ├── resnext152_coco_256x192.py │ │ │ ├── resnext152_coco_384x288.py │ │ │ ├── resnext50_coco_256x192.py │ │ │ ├── resnext50_coco_384x288.py │ │ │ ├── resnext_coco.md │ │ │ ├── resnext_coco.yml │ │ │ ├── rsn18_coco_256x192.py │ │ │ ├── rsn50_coco_256x192.py │ │ │ ├── rsn_coco.md │ │ │ ├── rsn_coco.yml │ │ │ ├── scnet101_coco_256x192.py │ │ │ ├── scnet101_coco_384x288.py │ │ │ ├── scnet50_coco_256x192.py │ │ │ ├── scnet50_coco_384x288.py │ │ │ ├── scnet_coco.md │ │ │ ├── scnet_coco.yml │ │ │ ├── seresnet101_coco_256x192.py │ │ │ ├── seresnet101_coco_384x288.py │ │ │ ├── seresnet152_coco_256x192.py │ │ │ ├── seresnet152_coco_384x288.py │ │ │ ├── seresnet50_coco_256x192.py │ │ │ ├── seresnet50_coco_384x288.py │ │ │ ├── seresnet_coco.md │ │ │ ├── seresnet_coco.yml │ │ │ ├── shufflenetv1_coco.md │ │ │ ├── shufflenetv1_coco.yml │ │ │ ├── shufflenetv1_coco_256x192.py │ │ │ ├── shufflenetv1_coco_384x288.py │ │ │ ├── shufflenetv2_coco.md │ │ │ ├── shufflenetv2_coco.yml │ │ │ ├── shufflenetv2_coco_256x192.py │ │ │ ├── shufflenetv2_coco_384x288.py │ │ │ ├── swin_b_p4_w7_coco_256x192.py │ │ │ ├── swin_b_p4_w7_coco_384x288.py │ │ │ ├── swin_b_p4_w7_fpn_coco_256x192.py │ │ │ ├── swin_b_p4_w7_fpn_coco_384x288.py │ │ │ ├── swin_coco.md │ │ │ ├── swin_coco.yml │ │ │ ├── swin_l_p4_w7_coco_256x192.py │ │ │ ├── swin_l_p4_w7_coco_384x288.py │ │ │ ├── swin_t_p4_w7_coco_256x192.py │ │ │ ├── vgg16_bn_coco_256x192.py │ │ │ ├── vgg_coco.md │ │ │ ├── vgg_coco.yml │ │ │ ├── vipnas_coco.md │ │ │ ├── vipnas_coco.yml │ │ │ ├── vipnas_mbv3_coco_256x192.py │ │ │ └── vipnas_res50_coco_256x192.py │ │ │ ├── crowdpose │ │ │ ├── hrnet_crowdpose.md │ │ │ ├── hrnet_crowdpose.yml │ │ │ ├── hrnet_w32_crowdpose_256x192.py │ │ │ ├── hrnet_w32_crowdpose_384x288.py │ │ │ ├── hrnet_w48_crowdpose_256x192.py │ │ │ ├── hrnet_w48_crowdpose_384x288.py │ │ │ ├── res101_crowdpose_256x192.py │ │ │ ├── res101_crowdpose_320x256.py │ │ │ ├── res101_crowdpose_384x288.py │ │ │ ├── res152_crowdpose_256x192.py │ │ │ ├── res152_crowdpose_384x288.py │ │ │ ├── res50_crowdpose_256x192.py │ │ │ ├── res50_crowdpose_384x288.py │ │ │ ├── resnet_crowdpose.md │ │ │ └── resnet_crowdpose.yml │ │ │ ├── h36m │ │ │ ├── hrnet_h36m.md │ │ │ ├── hrnet_h36m.yml │ │ │ ├── hrnet_w32_h36m_256x256.py │ │ │ └── hrnet_w48_h36m_256x256.py │ │ │ ├── jhmdb │ │ │ ├── cpm_jhmdb.md │ │ │ ├── cpm_jhmdb.yml │ │ │ ├── cpm_jhmdb_sub1_368x368.py │ │ │ ├── cpm_jhmdb_sub2_368x368.py │ │ │ ├── cpm_jhmdb_sub3_368x368.py │ │ │ ├── res50_2deconv_jhmdb_sub1_256x256.py │ │ │ ├── res50_2deconv_jhmdb_sub2_256x256.py │ │ │ ├── res50_2deconv_jhmdb_sub3_256x256.py │ │ │ ├── res50_jhmdb_sub1_256x256.py │ │ │ ├── res50_jhmdb_sub2_256x256.py │ │ │ ├── res50_jhmdb_sub3_256x256.py │ │ │ ├── resnet_jhmdb.md │ │ │ └── resnet_jhmdb.yml │ │ │ ├── mhp │ │ │ ├── res50_mhp_256x192.py │ │ │ ├── resnet_mhp.md │ │ │ └── resnet_mhp.yml │ │ │ ├── mpii │ │ │ ├── cpm_mpii.md │ │ │ ├── cpm_mpii.yml │ │ │ ├── cpm_mpii_368x368.py │ │ │ ├── hourglass52_mpii_256x256.py │ │ │ ├── hourglass52_mpii_384x384.py │ │ │ ├── hourglass_mpii.md │ │ │ ├── hourglass_mpii.yml │ │ │ ├── hrnet_dark_mpii.md │ │ │ ├── hrnet_dark_mpii.yml │ │ │ ├── hrnet_mpii.md │ │ │ ├── hrnet_mpii.yml │ │ │ ├── hrnet_w32_mpii_256x256.py │ │ │ ├── hrnet_w32_mpii_256x256_dark.py │ │ │ ├── hrnet_w32_mpii_256x256_udp.py │ │ │ ├── hrnet_w48_mpii_256x256.py │ │ │ ├── hrnet_w48_mpii_256x256_dark.py │ │ │ ├── hrnet_w48_mpii_256x256_udp.py │ │ │ ├── litehrnet_18_mpii_256x256.py │ │ │ ├── litehrnet_30_mpii_256x256.py │ │ │ ├── litehrnet_mpii.md │ │ │ ├── litehrnet_mpii.yml │ │ │ ├── mobilenetv2_mpii.md │ │ │ ├── mobilenetv2_mpii.yml │ │ │ ├── mobilenetv2_mpii_256x256.py │ │ │ ├── res101_mpii_256x256.py │ │ │ ├── res152_mpii_256x256.py │ │ │ ├── res50_mpii_256x256.py │ │ │ ├── resnet_mpii.md │ │ │ ├── resnet_mpii.yml │ │ │ ├── resnetv1d101_mpii_256x256.py │ │ │ ├── resnetv1d152_mpii_256x256.py │ │ │ ├── resnetv1d50_mpii_256x256.py │ │ │ ├── resnetv1d_mpii.md │ │ │ ├── resnetv1d_mpii.yml │ │ │ ├── resnext101_mpii_256x256.py │ │ │ ├── resnext152_mpii_256x256.py │ │ │ ├── resnext50_mpii_256x256.py │ │ │ ├── resnext_mpii.md │ │ │ ├── resnext_mpii.yml │ │ │ ├── scnet101_mpii_256x256.py │ │ │ ├── scnet50_mpii_256x256.py │ │ │ ├── scnet_mpii.md │ │ │ ├── scnet_mpii.yml │ │ │ ├── seresnet101_mpii_256x256.py │ │ │ ├── seresnet152_mpii_256x256.py │ │ │ ├── seresnet50_mpii_256x256.py │ │ │ ├── seresnet_mpii.md │ │ │ ├── seresnet_mpii.yml │ │ │ ├── shufflenetv1_mpii.md │ │ │ ├── shufflenetv1_mpii.yml │ │ │ ├── shufflenetv1_mpii_256x256.py │ │ │ ├── shufflenetv2_mpii.md │ │ │ ├── shufflenetv2_mpii.yml │ │ │ └── shufflenetv2_mpii_256x256.py │ │ │ ├── mpii_trb │ │ │ ├── res101_mpii_trb_256x256.py │ │ │ ├── res152_mpii_trb_256x256.py │ │ │ ├── res50_mpii_trb_256x256.py │ │ │ ├── resnet_mpii_trb.md │ │ │ └── resnet_mpii_trb.yml │ │ │ ├── ochuman │ │ │ ├── hrnet_ochuman.md │ │ │ ├── hrnet_ochuman.yml │ │ │ ├── hrnet_w32_ochuman_256x192.py │ │ │ ├── hrnet_w32_ochuman_384x288.py │ │ │ ├── hrnet_w48_ochuman_256x192.py │ │ │ ├── hrnet_w48_ochuman_384x288.py │ │ │ ├── res101_ochuman_256x192.py │ │ │ ├── res101_ochuman_384x288.py │ │ │ ├── res152_ochuman_256x192.py │ │ │ ├── res152_ochuman_384x288.py │ │ │ ├── res50_ochuman_256x192.py │ │ │ ├── res50_ochuman_384x288.py │ │ │ ├── resnet_ochuman.md │ │ │ └── resnet_ochuman.yml │ │ │ └── posetrack18 │ │ │ ├── hrnet_posetrack18.md │ │ │ ├── hrnet_posetrack18.yml │ │ │ ├── hrnet_w32_posetrack18_256x192.py │ │ │ ├── hrnet_w32_posetrack18_384x288.py │ │ │ ├── hrnet_w48_posetrack18_256x192.py │ │ │ ├── hrnet_w48_posetrack18_384x288.py │ │ │ ├── res50_posetrack18_256x192.py │ │ │ ├── resnet_posetrack18.md │ │ │ └── resnet_posetrack18.yml │ ├── 2d_kpt_sview_rgb_vid │ │ ├── README.md │ │ └── posewarper │ │ │ ├── README.md │ │ │ └── posetrack18 │ │ │ ├── hrnet_posetrack18_posewarper.md │ │ │ ├── hrnet_posetrack18_posewarper.yml │ │ │ ├── hrnet_w48_posetrack18_384x288_posewarper_stage1.py │ │ │ └── hrnet_w48_posetrack18_384x288_posewarper_stage2.py │ ├── 3d_kpt_mview_rgb_img │ │ ├── README.md │ │ └── voxelpose │ │ │ ├── README.md │ │ │ ├── campus │ │ │ ├── voxelpose_campus.md │ │ │ ├── voxelpose_campus.yml │ │ │ ├── voxelpose_prn32x32x32_cpn80x80x20_campus_cam3.py │ │ │ └── voxelpose_prn64x64x64_cpn80x80x20_campus_cam3.py │ │ │ ├── panoptic │ │ │ ├── voxelpose_prn64x64x64_cpn80x80x20_panoptic_cam5.md │ │ │ ├── voxelpose_prn64x64x64_cpn80x80x20_panoptic_cam5.py │ │ │ └── voxelpose_prn64x64x64_cpn80x80x20_panoptic_cam5.yml │ │ │ └── shelf │ │ │ ├── voxelpose_prn32x32x32_cpn48x48x12_shelf_cam5.py │ │ │ ├── voxelpose_prn64x64x64_cpn80x80x20_shelf_cam5.py │ │ │ ├── voxelpose_shelf.md │ │ │ └── voxelpose_shelf.yml │ ├── 3d_kpt_sview_rgb_img │ │ ├── README.md │ │ └── pose_lift │ │ │ ├── README.md │ │ │ ├── h36m │ │ │ ├── simplebaseline3d_h36m.md │ │ │ ├── simplebaseline3d_h36m.py │ │ │ └── simplebaseline3d_h36m.yml │ │ │ └── mpi_inf_3dhp │ │ │ ├── simplebaseline3d_mpi-inf-3dhp.md │ │ │ ├── simplebaseline3d_mpi-inf-3dhp.py │ │ │ └── simplebaseline3d_mpi-inf-3dhp.yml │ ├── 3d_kpt_sview_rgb_vid │ │ ├── README.md │ │ └── video_pose_lift │ │ │ ├── README.md │ │ │ ├── h36m │ │ │ ├── videopose3d_h36m.md │ │ │ ├── videopose3d_h36m.yml │ │ │ ├── videopose3d_h36m_1frame_fullconv_supervised_cpn_ft.py │ │ │ ├── videopose3d_h36m_243frames_fullconv_supervised.py │ │ │ ├── videopose3d_h36m_243frames_fullconv_supervised_cpn_ft.py │ │ │ ├── videopose3d_h36m_27frames_fullconv_semi-supervised.py │ │ │ ├── videopose3d_h36m_27frames_fullconv_semi-supervised_cpn_ft.py │ │ │ ├── videopose3d_h36m_27frames_fullconv_supervised.py │ │ │ └── videopose3d_h36m_81frames_fullconv_supervised.py │ │ │ └── mpi_inf_3dhp │ │ │ ├── videopose3d_mpi-inf-3dhp.md │ │ │ ├── videopose3d_mpi-inf-3dhp.yml │ │ │ └── videopose3d_mpi-inf-3dhp_1frame_fullconv_supervised_gt.py │ └── 3d_mesh_sview_rgb_img │ │ ├── README.md │ │ └── hmr │ │ ├── README.md │ │ └── mixed │ │ ├── res50_mixed_224x224.py │ │ ├── resnet_mixed.md │ │ └── resnet_mixed.yml │ ├── face │ └── 2d_kpt_sview_rgb_img │ │ ├── README.md │ │ ├── deeppose │ │ ├── README.md │ │ └── wflw │ │ │ ├── res50_wflw_256x256.py │ │ │ ├── res50_wflw_256x256_softwingloss.py │ │ │ ├── res50_wflw_256x256_wingloss.py │ │ │ ├── resnet_softwingloss_wflw.md │ │ │ ├── resnet_softwingloss_wflw.yml │ │ │ ├── resnet_wflw.md │ │ │ ├── resnet_wflw.yml │ │ │ ├── resnet_wingloss_wflw.md │ │ │ └── resnet_wingloss_wflw.yml │ │ └── topdown_heatmap │ │ ├── 300w │ │ ├── hrnetv2_300w.md │ │ ├── hrnetv2_300w.yml │ │ ├── hrnetv2_w18_300w_256x256.py │ │ ├── hrnetv2_w18_300w_256x256_dark.py │ │ └── res50_300w_256x256.py │ │ ├── README.md │ │ ├── aflw │ │ ├── hrnetv2_aflw.md │ │ ├── hrnetv2_aflw.yml │ │ ├── hrnetv2_dark_aflw.md │ │ ├── hrnetv2_dark_aflw.yml │ │ ├── hrnetv2_w18_aflw_256x256.py │ │ ├── hrnetv2_w18_aflw_256x256_dark.py │ │ └── res50_aflw_256x256.py │ │ ├── coco_wholebody_face │ │ ├── hourglass52_coco_wholebody_face_256x256.py │ │ ├── hourglass_coco_wholebody_face.md │ │ ├── hourglass_coco_wholebody_face.yml │ │ ├── hrnetv2_coco_wholebody_face.md │ │ ├── hrnetv2_coco_wholebody_face.yml │ │ ├── hrnetv2_dark_coco_wholebody_face.md │ │ ├── hrnetv2_dark_coco_wholebody_face.yml │ │ ├── hrnetv2_w18_coco_wholebody_face_256x256.py │ │ ├── hrnetv2_w18_coco_wholebody_face_256x256_dark.py │ │ ├── mobilenetv2_coco_wholebody_face.md │ │ ├── mobilenetv2_coco_wholebody_face.yml │ │ ├── mobilenetv2_coco_wholebody_face_256x256.py │ │ ├── res50_coco_wholebody_face_256x256.py │ │ ├── resnet_coco_wholebody_face.md │ │ ├── resnet_coco_wholebody_face.yml │ │ ├── scnet50_coco_wholebody_face_256x256.py │ │ ├── scnet_coco_wholebody_face.md │ │ └── scnet_coco_wholebody_face.yml │ │ ├── cofw │ │ ├── hrnetv2_cofw.md │ │ ├── hrnetv2_cofw.yml │ │ ├── hrnetv2_w18_cofw_256x256.py │ │ ├── hrnetv2_w18_cofw_256x256_dark.py │ │ └── res50_cofw_256x256.py │ │ └── wflw │ │ ├── hrnetv2_awing_wflw.md │ │ ├── hrnetv2_awing_wflw.yml │ │ ├── hrnetv2_dark_wflw.md │ │ ├── hrnetv2_dark_wflw.yml │ │ ├── hrnetv2_w18_wflw_256x256.py │ │ ├── hrnetv2_w18_wflw_256x256_awing.py │ │ ├── hrnetv2_w18_wflw_256x256_dark.py │ │ ├── hrnetv2_wflw.md │ │ ├── hrnetv2_wflw.yml │ │ └── res50_wflw_256x256.py │ ├── fashion │ └── 2d_kpt_sview_rgb_img │ │ ├── README.md │ │ ├── deeppose │ │ ├── README.md │ │ └── deepfashion │ │ │ ├── res101_deepfashion_full_256x192.py │ │ │ ├── res101_deepfashion_lower_256x192.py │ │ │ ├── res101_deepfashion_upper_256x192.py │ │ │ ├── res152_deepfashion_full_256x192.py │ │ │ ├── res152_deepfashion_lower_256x192.py │ │ │ ├── res152_deepfashion_upper_256x192.py │ │ │ ├── res50_deepfashion_full_256x192.py │ │ │ ├── res50_deepfashion_lower_256x192.py │ │ │ ├── res50_deepfashion_upper_256x192.py │ │ │ ├── resnet_deepfashion.md │ │ │ └── resnet_deepfashion.yml │ │ └── topdown_heatmap │ │ ├── README.md │ │ ├── deepfashion │ │ ├── hrnet_w32_deepfashion_full_256x192.py │ │ ├── hrnet_w32_deepfashion_full_256x192_udp.py │ │ ├── hrnet_w32_deepfashion_lower_256x192.py │ │ ├── hrnet_w32_deepfashion_lower_256x192_udp.py │ │ ├── hrnet_w32_deepfashion_upper_256x192.py │ │ ├── hrnet_w32_deepfashion_upper_256x192_udp.py │ │ ├── hrnet_w48_deepfashion_full_256x192.py │ │ ├── hrnet_w48_deepfashion_full_256x192_udp.py │ │ ├── hrnet_w48_deepfashion_lower_256x192.py │ │ ├── hrnet_w48_deepfashion_lower_256x192_udp.py │ │ ├── hrnet_w48_deepfashion_upper_256x192.py │ │ ├── hrnet_w48_deepfashion_upper_256x192_udp.py │ │ ├── res101_deepfashion_full_256x192.py │ │ ├── res101_deepfashion_lower_256x192.py │ │ ├── res101_deepfashion_upper_256x192.py │ │ ├── res152_deepfashion_full_256x192.py │ │ ├── res152_deepfashion_lower_256x192.py │ │ ├── res152_deepfashion_upper_256x192.py │ │ ├── res50_deepfashion_full_256x192.py │ │ ├── res50_deepfashion_lower_256x192.py │ │ ├── res50_deepfashion_upper_256x192.py │ │ ├── resnet_deepfashion.md │ │ └── resnet_deepfashion.yml │ │ └── deepfashion2 │ │ ├── res50_deepfashion2_long_sleeved_dress_256x192.py │ │ ├── res50_deepfashion2_long_sleeved_outwear_256x192.py │ │ ├── res50_deepfashion2_long_sleeved_shirt_256x192.py │ │ ├── res50_deepfashion2_short_sleeved_dress_256x192.py │ │ ├── res50_deepfashion2_short_sleeved_outwear_256x192.py │ │ ├── res50_deepfashion2_short_sleeved_shirt_256x192.py │ │ ├── res50_deepfashion2_shorts_256x192.py │ │ ├── res50_deepfashion2_skirt_256x192.py │ │ ├── res50_deepfashion2_sling_256x192.py │ │ ├── res50_deepfashion2_sling_dress_256x192.py │ │ ├── res50_deepfashion2_trousers_256x192.py │ │ ├── res50_deepfashion2_vest_256x192.py │ │ ├── res50_deepfashion2_vest_dress_256x192.py │ │ ├── resnet_deepfashion2.md │ │ └── resnet_deepfashion2.yml │ ├── hand │ ├── 2d_kpt_sview_rgb_img │ │ ├── README.md │ │ ├── deeppose │ │ │ ├── README.md │ │ │ ├── onehand10k │ │ │ │ ├── res50_onehand10k_256x256.py │ │ │ │ ├── resnet_onehand10k.md │ │ │ │ └── resnet_onehand10k.yml │ │ │ ├── panoptic2d │ │ │ │ ├── res50_panoptic2d_256x256.py │ │ │ │ ├── resnet_panoptic2d.md │ │ │ │ └── resnet_panoptic2d.yml │ │ │ └── rhd2d │ │ │ │ ├── res50_rhd2d_256x256.py │ │ │ │ ├── resnet_rhd2d.md │ │ │ │ └── resnet_rhd2d.yml │ │ └── topdown_heatmap │ │ │ ├── README.md │ │ │ ├── coco_wholebody_hand │ │ │ ├── hourglass52_coco_wholebody_hand_256x256.py │ │ │ ├── hourglass_coco_wholebody_hand.md │ │ │ ├── hourglass_coco_wholebody_hand.yml │ │ │ ├── hrnetv2_coco_wholebody_hand.md │ │ │ ├── hrnetv2_coco_wholebody_hand.yml │ │ │ ├── hrnetv2_dark_coco_wholebody_hand.md │ │ │ ├── hrnetv2_dark_coco_wholebody_hand.yml │ │ │ ├── hrnetv2_w18_coco_wholebody_hand_256x256.py │ │ │ ├── hrnetv2_w18_coco_wholebody_hand_256x256_dark.py │ │ │ ├── litehrnet_coco_wholebody_hand.md │ │ │ ├── litehrnet_coco_wholebody_hand.yml │ │ │ ├── litehrnet_w18_coco_wholebody_hand_256x256.py │ │ │ ├── mobilenetv2_coco_wholebody_hand.md │ │ │ ├── mobilenetv2_coco_wholebody_hand.yml │ │ │ ├── mobilenetv2_coco_wholebody_hand_256x256.py │ │ │ ├── res50_coco_wholebody_hand_256x256.py │ │ │ ├── resnet_coco_wholebody_hand.md │ │ │ ├── resnet_coco_wholebody_hand.yml │ │ │ ├── scnet50_coco_wholebody_hand_256x256.py │ │ │ ├── scnet_coco_wholebody_hand.md │ │ │ └── scnet_coco_wholebody_hand.yml │ │ │ ├── freihand2d │ │ │ ├── hrnetv2_w18_freihand2d_256x256.py │ │ │ ├── res50_freihand2d_224x224.py │ │ │ ├── resnet_freihand2d.md │ │ │ └── resnet_freihand2d.yml │ │ │ ├── interhand2d │ │ │ ├── res50_interhand2d_all_256x256.py │ │ │ ├── res50_interhand2d_human_256x256.py │ │ │ ├── res50_interhand2d_machine_256x256.py │ │ │ ├── resnet_interhand2d.md │ │ │ └── resnet_interhand2d.yml │ │ │ ├── onehand10k │ │ │ ├── hrnetv2_dark_onehand10k.md │ │ │ ├── hrnetv2_dark_onehand10k.yml │ │ │ ├── hrnetv2_onehand10k.md │ │ │ ├── hrnetv2_onehand10k.yml │ │ │ ├── hrnetv2_udp_onehand10k.md │ │ │ ├── hrnetv2_udp_onehand10k.yml │ │ │ ├── hrnetv2_w18_onehand10k_256x256.py │ │ │ ├── hrnetv2_w18_onehand10k_256x256_dark.py │ │ │ ├── hrnetv2_w18_onehand10k_256x256_udp.py │ │ │ ├── mobilenetv2_onehand10k.md │ │ │ ├── mobilenetv2_onehand10k.yml │ │ │ ├── mobilenetv2_onehand10k_256x256.py │ │ │ ├── res50_onehand10k_256x256.py │ │ │ ├── resnet_onehand10k.md │ │ │ └── resnet_onehand10k.yml │ │ │ ├── panoptic2d │ │ │ ├── hrnetv2_dark_panoptic2d.md │ │ │ ├── hrnetv2_dark_panoptic2d.yml │ │ │ ├── hrnetv2_panoptic2d.md │ │ │ ├── hrnetv2_panoptic2d.yml │ │ │ ├── hrnetv2_udp_panoptic2d.md │ │ │ ├── hrnetv2_udp_panoptic2d.yml │ │ │ ├── hrnetv2_w18_panoptic2d_256x256.py │ │ │ ├── hrnetv2_w18_panoptic2d_256x256_dark.py │ │ │ ├── hrnetv2_w18_panoptic2d_256x256_udp.py │ │ │ ├── mobilenetv2_panoptic2d.md │ │ │ ├── mobilenetv2_panoptic2d.yml │ │ │ ├── mobilenetv2_panoptic2d_256x256.py │ │ │ ├── res50_panoptic2d_256x256.py │ │ │ ├── resnet_panoptic2d.md │ │ │ └── resnet_panoptic2d.yml │ │ │ └── rhd2d │ │ │ ├── hrnetv2_dark_rhd2d.md │ │ │ ├── hrnetv2_dark_rhd2d.yml │ │ │ ├── hrnetv2_rhd2d.md │ │ │ ├── hrnetv2_rhd2d.yml │ │ │ ├── hrnetv2_udp_rhd2d.md │ │ │ ├── hrnetv2_udp_rhd2d.yml │ │ │ ├── hrnetv2_w18_rhd2d_256x256.py │ │ │ ├── hrnetv2_w18_rhd2d_256x256_dark.py │ │ │ ├── hrnetv2_w18_rhd2d_256x256_udp.py │ │ │ ├── mobilenetv2_rhd2d.md │ │ │ ├── mobilenetv2_rhd2d.yml │ │ │ ├── mobilenetv2_rhd2d_256x256.py │ │ │ ├── res50_rhd2d_224x224.py │ │ │ ├── res50_rhd2d_256x256.py │ │ │ ├── resnet_rhd2d.md │ │ │ └── resnet_rhd2d.yml │ ├── 3d_kpt_sview_rgb_img │ │ ├── README.md │ │ └── internet │ │ │ ├── README.md │ │ │ └── interhand3d │ │ │ ├── internet_interhand3d.md │ │ │ ├── internet_interhand3d.yml │ │ │ └── res50_interhand3d_all_256x256.py │ └── gesture_sview_rgbd_vid │ │ ├── README.md │ │ └── mtut │ │ ├── README.md │ │ └── nvgesture │ │ ├── i3d_nvgesture.md │ │ ├── i3d_nvgesture.yml │ │ ├── i3d_nvgesture_224x224_fps30.py │ │ ├── i3d_nvgesture_bbox_112x112_fps15.py │ │ ├── i3d_nvgesture_bbox_112x112_fps15_rgb.py │ │ └── i3d_nvgesture_bbox_224x224_fps30.py │ └── wholebody │ └── 2d_kpt_sview_rgb_img │ ├── README.md │ ├── associative_embedding │ ├── README.md │ └── coco-wholebody │ │ ├── higherhrnet_coco-wholebody.md │ │ ├── higherhrnet_coco-wholebody.yml │ │ ├── higherhrnet_w32_coco_wholebody_512x512.py │ │ ├── higherhrnet_w32_coco_wholebody_640x640.py │ │ ├── higherhrnet_w48_coco_wholebody_512x512.py │ │ ├── higherhrnet_w48_coco_wholebody_640x640.py │ │ ├── hrnet_coco-wholebody.md │ │ ├── hrnet_coco-wholebody.yml │ │ ├── hrnet_w32_coco_wholebody_512x512.py │ │ ├── hrnet_w32_coco_wholebody_640x640.py │ │ ├── hrnet_w48_coco_wholebody_512x512.py │ │ └── hrnet_w48_coco_wholebody_640x640.py │ ├── deeppose │ └── coco-wholebody │ │ └── res50_coco_wholebody_256x192.py │ └── topdown_heatmap │ ├── README.md │ ├── coco-wholebody │ ├── hrnet_coco-wholebody.md │ ├── hrnet_coco-wholebody.yml │ ├── hrnet_dark_coco-wholebody.md │ ├── hrnet_dark_coco-wholebody.yml │ ├── hrnet_w32_coco_wholebody_256x192.py │ ├── hrnet_w32_coco_wholebody_256x192_dark.py │ ├── hrnet_w32_coco_wholebody_384x288.py │ ├── hrnet_w32_coco_wholebody_384x288_dark.py │ ├── hrnet_w48_coco_wholebody_256x192.py │ ├── hrnet_w48_coco_wholebody_256x192_dark.py │ ├── hrnet_w48_coco_wholebody_384x288.py │ ├── hrnet_w48_coco_wholebody_384x288_dark.py │ ├── hrnet_w48_coco_wholebody_384x288_dark_plus.py │ ├── res101_coco_wholebody_256x192.py │ ├── res101_coco_wholebody_384x288.py │ ├── res152_coco_wholebody_256x192.py │ ├── res152_coco_wholebody_384x288.py │ ├── res50_coco_wholebody_256x192.py │ ├── res50_coco_wholebody_384x288.py │ ├── resnet_coco-wholebody.md │ ├── resnet_coco-wholebody.yml │ ├── tcformer_coco-wholebody.md │ ├── tcformer_coco-wholebody.yml │ ├── tcformer_coco_wholebody_256x192.py │ ├── vipnas_coco-wholebody.md │ ├── vipnas_coco-wholebody.yml │ ├── vipnas_dark_coco-wholebody.md │ ├── vipnas_dark_coco-wholebody.yml │ ├── vipnas_mbv3_coco_wholebody_256x192.py │ ├── vipnas_mbv3_coco_wholebody_256x192_dark.py │ ├── vipnas_res50_coco_wholebody_256x192.py │ └── vipnas_res50_coco_wholebody_256x192_dark.py │ └── halpe │ ├── hrnet_dark_halpe.md │ ├── hrnet_dark_halpe.yml │ ├── hrnet_w32_halpe_256x192.py │ └── hrnet_w48_halpe_384x288_dark_plus.py ├── ldm ├── data │ ├── __init__.py │ ├── base.py │ ├── humansd.py │ └── util.py ├── models │ ├── autoencoder.py │ └── diffusion │ │ ├── __init__.py │ │ ├── ddim.py │ │ ├── ddpm.py │ │ ├── dpm_solver │ │ ├── __init__.py │ │ ├── dpm_solver.py │ │ └── sampler.py │ │ ├── plms.py │ │ └── sampling_util.py ├── modules │ ├── attention.py │ ├── diffusionmodules │ │ ├── __init__.py │ │ ├── model.py │ │ ├── openaimodel.py │ │ ├── upscaling.py │ │ └── util.py │ ├── distributions │ │ ├── __init__.py │ │ └── distributions.py │ ├── ema.py │ ├── encoders │ │ ├── __init__.py │ │ └── modules.py │ ├── image_degradation │ │ ├── __init__.py │ │ ├── bsrgan.py │ │ ├── bsrgan_light.py │ │ ├── utils │ │ │ └── test.png │ │ └── utils_image.py │ ├── karlo │ │ ├── __init__.py │ │ ├── diffusers_pipeline.py │ │ └── kakao │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── clip.py │ │ │ ├── decoder_model.py │ │ │ ├── prior_model.py │ │ │ ├── sr_256_1k.py │ │ │ └── sr_64_256.py │ │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── diffusion │ │ │ │ ├── gaussian_diffusion.py │ │ │ │ └── respace.py │ │ │ ├── nn.py │ │ │ ├── resample.py │ │ │ ├── unet.py │ │ │ └── xf.py │ │ │ ├── sampler.py │ │ │ └── template.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 └── util.py ├── main.py ├── modelcard.md ├── requirements.txt ├── scripts ├── gradio │ ├── depth2img.py │ ├── inpainting.py │ ├── pose2img.py │ └── superresolution.py ├── img2img.py ├── pose2img.py ├── pose2img_metrics.py ├── streamlit │ ├── depth2img.py │ ├── inpainting.py │ ├── stableunclip.py │ └── superresolution.py ├── tests │ └── test_watermark.py └── txt2img.py ├── setup.py └── utils ├── download_data.py └── metrics ├── coco_similarity.py ├── evalute_metrics_of_each_category.py ├── metric_main.py ├── metrics.yaml ├── pose_metrics.py ├── quality_metrics.py └── text_metrics.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/README.md -------------------------------------------------------------------------------- /assets/childrendrawing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/childrendrawing1.png -------------------------------------------------------------------------------- /assets/demo/demo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/demo/demo1.jpg -------------------------------------------------------------------------------- /assets/demo/demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/demo/demo2.jpg -------------------------------------------------------------------------------- /assets/demo/demo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/demo/demo3.jpg -------------------------------------------------------------------------------- /assets/demo/demo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/demo/demo4.jpg -------------------------------------------------------------------------------- /assets/demo/demo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/demo/demo5.jpg -------------------------------------------------------------------------------- /assets/demo/demo6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/demo/demo6.jpg -------------------------------------------------------------------------------- /assets/digitalart1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/digitalart1.png -------------------------------------------------------------------------------- /assets/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/model.png -------------------------------------------------------------------------------- /assets/natural1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/natural1.png -------------------------------------------------------------------------------- /assets/natural2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/natural2.png -------------------------------------------------------------------------------- /assets/natural3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/natural3.png -------------------------------------------------------------------------------- /assets/natural4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/natural4.png -------------------------------------------------------------------------------- /assets/natural5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/natural5.png -------------------------------------------------------------------------------- /assets/oilpainting1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/oilpainting1.png -------------------------------------------------------------------------------- /assets/oilpainting2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/oilpainting2.png -------------------------------------------------------------------------------- /assets/pose/demo.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/pose/demo.npz -------------------------------------------------------------------------------- /assets/quantitative_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/quantitative_results.png -------------------------------------------------------------------------------- /assets/relief1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/relief1.png -------------------------------------------------------------------------------- /assets/sculpture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/sculpture1.png -------------------------------------------------------------------------------- /assets/shadowplay1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/shadowplay1.png -------------------------------------------------------------------------------- /assets/sketch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/sketch1.png -------------------------------------------------------------------------------- /assets/sketch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/sketch2.png -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /assets/watercolor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/assets/watercolor1.png -------------------------------------------------------------------------------- /comparison_models/ControlNet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/.gitignore -------------------------------------------------------------------------------- /comparison_models/ControlNet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/LICENSE -------------------------------------------------------------------------------- /comparison_models/ControlNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/README.md -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/canny/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/canny/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/ckpts/ckpts.txt: -------------------------------------------------------------------------------- 1 | Weights here. -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/hed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/hed/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/midas/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/midas/LICENSE -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/midas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/midas/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/midas/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/midas/api.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/midas/midas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/midas/midas/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/midas/midas/base_model.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/midas/midas/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/midas/midas/blocks.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/midas/midas/dpt_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/midas/midas/dpt_depth.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/midas/midas/midas_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/midas/midas/midas_net.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/midas/midas/midas_net_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/midas/midas/midas_net_custom.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/midas/midas/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/midas/midas/transforms.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/midas/midas/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/midas/midas/vit.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/midas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/midas/utils.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/mlsd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/mlsd/LICENSE -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/mlsd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/mlsd/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/mlsd/models/mbv2_mlsd_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/mlsd/models/mbv2_mlsd_large.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/mlsd/models/mbv2_mlsd_tiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/mlsd/models/mbv2_mlsd_tiny.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/mlsd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/mlsd/utils.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/openpose/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/openpose/LICENSE -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/openpose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/openpose/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/openpose/body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/openpose/body.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/openpose/hand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/openpose/hand.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/openpose/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/openpose/model.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/openpose/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/openpose/util.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/LICENSE -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/ade20k.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/chase_db1.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/cityscapes.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/drive.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/hrf.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/pascal_context.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/pascal_voc12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/pascal_voc12.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/datasets/stare.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/ann_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/ann_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/apcnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/apcnet_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/ccnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/ccnet_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/cgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/cgnet.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/danet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/danet_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/deeplabv3_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/deeplabv3_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/dmnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/dmnet_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/dnl_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/dnl_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/emanet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/emanet_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/encnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/encnet_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/fast_scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/fast_scnn.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/fcn_hr18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/fcn_hr18.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/fcn_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/fcn_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/fcn_unet_s5-d16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/fcn_unet_s5-d16.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/fpn_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/fpn_r50.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/fpn_uniformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/fpn_uniformer.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/gcnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/gcnet_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/lraspp_m-v3-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/lraspp_m-v3-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/nonlocal_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/nonlocal_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/ocrnet_hr18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/ocrnet_hr18.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/ocrnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/ocrnet_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/pointrend_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/pointrend_r50.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/psanet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/psanet_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/pspnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/pspnet_r50-d8.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/upernet_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/models/upernet_r50.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/configs/_base_/schedules/schedule_160k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/configs/_base_/schedules/schedule_160k.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/exp/upernet_global_small/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/exp/upernet_global_small/config.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/exp/upernet_global_small/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/exp/upernet_global_small/run.sh -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/exp/upernet_global_small/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/exp/upernet_global_small/test.sh -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/arraymisc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/arraymisc/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/arraymisc/quantization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/arraymisc/quantization.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/alexnet.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/activation.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/context_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/context_block.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv_module.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv_ws.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/drop.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/hsigmoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/hsigmoid.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/hswish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/hswish.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/non_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/non_local.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/norm.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/padding.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/plugin.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/registry.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/scale.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/swish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/swish.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/transformer.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/upsample.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/bricks/wrappers.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/builder.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/resnet.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/utils/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/utils/flops_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/utils/flops_counter.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/utils/fuse_conv_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/utils/fuse_conv_bn.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/utils/sync_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/utils/sync_bn.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/utils/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/utils/weight_init.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/cnn/vgg.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/engine/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/engine/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/engine/test.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/file_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/file_client.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/handlers/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/handlers/base.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/handlers/json_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/handlers/json_handler.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/handlers/pickle_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/handlers/pickle_handler.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/handlers/yaml_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/handlers/yaml_handler.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/io.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/fileio/parse.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/image/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/image/colorspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/image/colorspace.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/image/geometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/image/geometric.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/image/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/image/io.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/image/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/image/misc.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/image/photometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/image/photometric.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/model_zoo/deprecated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/model_zoo/deprecated.json -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/model_zoo/mmcls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/model_zoo/mmcls.json -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/model_zoo/open_mmlab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/model_zoo/open_mmlab.json -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/assign_score_withk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/assign_score_withk.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/ball_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/ball_query.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/bbox.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/border_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/border_align.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/box_iou_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/box_iou_rotated.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/carafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/carafe.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/cc_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/cc_attention.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/contour_expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/contour_expand.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/corner_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/corner_pool.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/correlation.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/deform_conv.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/deform_roi_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/deform_roi_pool.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/deprecated_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/deprecated_wrappers.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/focal_loss.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/furthest_point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/furthest_point_sample.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/fused_bias_leakyrelu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/fused_bias_leakyrelu.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/gather_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/gather_points.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/group_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/group_points.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/info.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/iou3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/iou3d.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/knn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/knn.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/masked_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/masked_conv.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/merge_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/merge_cells.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/modulated_deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/modulated_deform_conv.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/multi_scale_deform_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/multi_scale_deform_attn.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/nms.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/pixel_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/pixel_group.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/point_sample.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/points_in_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/points_in_boxes.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/points_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/points_sampler.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/psa_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/psa_mask.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/roi_align.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/roi_align_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/roi_align_rotated.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/roi_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/roi_pool.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/roiaware_pool3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/roiaware_pool3d.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/roipoint_pool3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/roipoint_pool3d.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/saconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/saconv.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/scatter_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/scatter_points.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/sync_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/sync_bn.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/three_interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/three_interpolate.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/three_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/three_nn.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/tin_shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/tin_shift.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/upfirdn2d.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/ops/voxelize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/ops/voxelize.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/_functions.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/collate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/collate.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/data_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/data_container.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/data_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/data_parallel.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/distributed.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/distributed_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/distributed_deprecated.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/registry.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/scatter_gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/scatter_gather.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/parallel/utils.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/base_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/base_module.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/base_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/base_runner.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/builder.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/checkpoint.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/default_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/default_constructor.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/dist_utils.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/epoch_based_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/epoch_based_runner.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/fp16_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/fp16_utils.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/checkpoint.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/closure.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/ema.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/evaluation.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/hook.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/iter_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/iter_timer.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/base.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/dvclive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/dvclive.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/mlflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/mlflow.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/neptune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/neptune.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/pavi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/pavi.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/tensorboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/tensorboard.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/text.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/wandb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/wandb.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/lr_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/lr_updater.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/memory.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/momentum_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/momentum_updater.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/optimizer.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/profiler.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/sampler_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/sampler_seed.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/sync_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/hooks/sync_buffer.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/iter_based_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/iter_based_runner.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/log_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/log_buffer.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/optimizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/optimizer/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/optimizer/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/optimizer/builder.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/priority.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/runner/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/runner/utils.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/config.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/env.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/ext_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/ext_loader.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/logging.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/misc.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/parrots_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/parrots_jit.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/parrots_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/parrots_wrapper.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/path.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/progressbar.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/registry.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/testing.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/timer.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/trace.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/utils/version_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/utils/version_utils.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/version.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/video/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/video/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/video/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/video/io.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/video/optflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/video/optflow.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/video/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/video/processing.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/visualization/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/visualization/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/visualization/color.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/visualization/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/visualization/image.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv/visualization/optflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv/visualization/optflow.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv_custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv_custom/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmcv_custom/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmcv_custom/checkpoint.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/apis/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/apis/inference.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/apis/test.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/apis/train.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/core/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/core/evaluation/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/core/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/core/evaluation/class_names.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/core/evaluation/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/core/evaluation/metrics.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/core/seg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/core/seg/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/core/seg/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/core/seg/builder.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/core/seg/sampler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/core/seg/sampler/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/core/utils/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/core/utils/misc.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/ade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/ade.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/builder.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/chase_db1.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/cityscapes.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/custom.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/drive.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/hrf.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/pascal_context.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/stare.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/datasets/voc.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/cgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/cgnet.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/fast_scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/fast_scnn.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/hrnet.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/mobilenet_v3.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/resnest.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/resnet.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/resnext.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/unet.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/uniformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/uniformer.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/backbones/vit.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/builder.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/ann_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/ann_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/apc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/apc_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/aspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/aspp_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/cc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/cc_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/da_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/da_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/dm_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/dm_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/dnl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/dnl_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/ema_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/ema_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/enc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/enc_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/fcn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/fcn_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/fpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/fpn_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/gc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/gc_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/nl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/nl_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/ocr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/ocr_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/point_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/point_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/psa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/psa_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/psp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/psp_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/uper_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/decode_heads/uper_head.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/losses/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/losses/accuracy.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/losses/dice_loss.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/losses/lovasz_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/losses/lovasz_loss.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/losses/utils.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/necks/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/necks/fpn.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/necks/multilevel_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/necks/multilevel_neck.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/segmentors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/segmentors/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/segmentors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/segmentors/base.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/drop.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/inverted_residual.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/make_divisible.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/res_layer.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/se_layer.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/up_conv_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/up_conv_block.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/models/utils/weight_init.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/ops/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/ops/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/ops/encoding.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/ops/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/ops/wrappers.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/utils/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/utils/collect_env.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/uniformer/mmseg/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/uniformer/mmseg/utils/logger.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/annotator/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/annotator/util.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/cldm/cldm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/cldm/cldm.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/cldm/ddim_hacked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/cldm/ddim_hacked.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/cldm/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/cldm/hack.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/cldm/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/cldm/logger.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/cldm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/cldm/model.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/config.py: -------------------------------------------------------------------------------- 1 | save_memory = False 2 | -------------------------------------------------------------------------------- /comparison_models/ControlNet/docs/annotator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/docs/annotator.md -------------------------------------------------------------------------------- /comparison_models/ControlNet/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/docs/faq.md -------------------------------------------------------------------------------- /comparison_models/ControlNet/docs/low_vram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/docs/low_vram.md -------------------------------------------------------------------------------- /comparison_models/ControlNet/docs/train.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/docs/train.md -------------------------------------------------------------------------------- /comparison_models/ControlNet/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/environment.yaml -------------------------------------------------------------------------------- /comparison_models/ControlNet/font/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/font/DejaVuSans.ttf -------------------------------------------------------------------------------- /comparison_models/ControlNet/gradio_annotator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/gradio_annotator.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/gradio_canny2image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/gradio_canny2image.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/gradio_depth2image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/gradio_depth2image.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/gradio_fake_scribble2image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/gradio_fake_scribble2image.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/gradio_hed2image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/gradio_hed2image.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/gradio_hough2image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/gradio_hough2image.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/gradio_normal2image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/gradio_normal2image.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/gradio_pose2image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/gradio_pose2image.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/gradio_scribble2image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/gradio_scribble2image.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/gradio_scribble2image_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/gradio_scribble2image_interactive.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/gradio_seg2image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/gradio_seg2image.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/data/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/data/util.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/models/autoencoder.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/models/diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/models/diffusion/ddim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/models/diffusion/ddim.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/models/diffusion/ddpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/models/diffusion/ddpm.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/models/diffusion/dpm_solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/models/diffusion/dpm_solver/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/models/diffusion/dpm_solver/dpm_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/models/diffusion/dpm_solver/dpm_solver.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/models/diffusion/dpm_solver/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/models/diffusion/dpm_solver/sampler.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/models/diffusion/plms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/models/diffusion/plms.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/models/diffusion/sampling_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/models/diffusion/sampling_util.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/attention.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/diffusionmodules/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/diffusionmodules/model.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/diffusionmodules/openaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/diffusionmodules/openaimodel.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/diffusionmodules/upscaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/diffusionmodules/upscaling.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/diffusionmodules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/diffusionmodules/util.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/distributions/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/distributions/distributions.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/ema.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/encoders/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/encoders/modules.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/image_degradation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/image_degradation/__init__.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/image_degradation/bsrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/image_degradation/bsrgan.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/image_degradation/bsrgan_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/image_degradation/bsrgan_light.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/image_degradation/utils/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/image_degradation/utils/test.png -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/image_degradation/utils_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/image_degradation/utils_image.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/midas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/midas/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/midas/api.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/midas/midas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/midas/midas/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/midas/midas/base_model.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/midas/midas/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/midas/midas/blocks.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/midas/midas/dpt_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/midas/midas/dpt_depth.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/midas/midas/midas_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/midas/midas/midas_net.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/midas/midas/midas_net_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/midas/midas/midas_net_custom.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/midas/midas/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/midas/midas/transforms.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/midas/midas/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/midas/midas/vit.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/modules/midas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/modules/midas/utils.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/ldm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/ldm/util.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/models/cldm_v15.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/models/cldm_v15.yaml -------------------------------------------------------------------------------- /comparison_models/ControlNet/models/cldm_v21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/models/cldm_v21.yaml -------------------------------------------------------------------------------- /comparison_models/ControlNet/share.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/share.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/tool_add_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/tool_add_control.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/tool_add_control_sd21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/tool_add_control_sd21.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/tool_transfer_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/tool_transfer_control.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/tutorial_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/tutorial_dataset.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/tutorial_dataset_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/tutorial_dataset_test.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/tutorial_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/tutorial_train.py -------------------------------------------------------------------------------- /comparison_models/ControlNet/tutorial_train_sd21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/ControlNet/tutorial_train_sd21.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/.gitignore -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/LICENSE -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/README.md -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/adapters/coadapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/adapters/coadapters.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/adapters/t2i_adapters_for_canny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/adapters/t2i_adapters_for_canny.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/adapters/t2i_adapters_for_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/adapters/t2i_adapters_for_style.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/app.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/app_coadapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/app_coadapter.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/assets/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/assets/DejaVuSans.ttf -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/assets/doodle.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/assets/doodle.mp4 -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/assets/logo.png -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/assets/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/assets/logo2.png -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/assets/logo_coadapter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/assets/logo_coadapter.png -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/assets/overview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/assets/overview1.png -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/assets/overview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/assets/overview2.png -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/configs/mm/faster_rcnn_r50_fpn_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/configs/mm/faster_rcnn_r50_fpn_coco.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/configs/mm/hrnet_w48_coco_256x192.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/configs/mm/hrnet_w48_coco_256x192.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/configs/pl_train/coadapter-v1-train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/configs/pl_train/coadapter-v1-train.yaml -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/configs/stable-diffusion/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/configs/stable-diffusion/app.yaml -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/configs/stable-diffusion/sd-v1-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/configs/stable-diffusion/sd-v1-inference.yaml -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/configs/stable-diffusion/sd-v1-train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/configs/stable-diffusion/sd-v1-train.yaml -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/configs/stable-diffusion/train_keypose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/configs/stable-diffusion/train_keypose.yaml -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/configs/stable-diffusion/train_mask.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/configs/stable-diffusion/train_mask.yaml -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/configs/stable-diffusion/train_sketch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/configs/stable-diffusion/train_sketch.yaml -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/dist_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/dist_util.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/docs/AdapterZoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/docs/AdapterZoo.md -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/docs/FAQ.md -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/docs/coadapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/docs/coadapter.md -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/docs/examples.md -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/examples/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/examples/download_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/examples/download_examples.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/data/dataset_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/data/dataset_coco.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/data/dataset_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/data/dataset_depth.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/data/dataset_laion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/data/dataset_laion.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/data/dataset_wikiart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/data/dataset_wikiart.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/data/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/data/utils.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/inference_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/inference_base.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/lr_scheduler.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/models/autoencoder.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/models/diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/models/diffusion/ddim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/models/diffusion/ddim.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/models/diffusion/ddpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/models/diffusion/ddpm.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/models/diffusion/dpm_solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/models/diffusion/dpm_solver/__init__.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/models/diffusion/dpm_solver/dpm_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/models/diffusion/dpm_solver/dpm_solver.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/models/diffusion/dpm_solver/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/models/diffusion/dpm_solver/sampler.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/models/diffusion/plms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/models/diffusion/plms.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/attention.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/diffusionmodules/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/diffusionmodules/model.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/diffusionmodules/openaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/diffusionmodules/openaimodel.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/diffusionmodules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/diffusionmodules/util.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/distributions/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/distributions/distributions.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/ema.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/encoders/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/encoders/adapter.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/encoders/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/encoders/modules.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/api.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/api.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/base_model.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/blocks.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/dpt_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/dpt_depth.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/midas_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/midas_net.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/midas_net_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/midas_net_custom.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/transforms.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/midas/vit.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/midas/utils.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/model_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/model_edge.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/openpose/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/openpose/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/openpose/api.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/openpose/body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/openpose/body.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/openpose/hand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/openpose/hand.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/openpose/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/openpose/model.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/openpose/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/openpose/util.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/extra_condition/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/extra_condition/utils.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/image_degradation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/image_degradation/__init__.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/image_degradation/bsrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/image_degradation/bsrgan.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/image_degradation/bsrgan_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/image_degradation/bsrgan_light.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/image_degradation/utils/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/image_degradation/utils/test.png -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/modules/image_degradation/utils_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/modules/image_degradation/utils_image.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/ldm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/ldm/util.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/models/README.md -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/requirements.txt -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/test_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/test_adapter.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/test_composable_adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/test_composable_adapters.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/train.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/train_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/train_depth.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/train_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/train_seg.py -------------------------------------------------------------------------------- /comparison_models/T2IAdapter/train_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/comparison_models/T2IAdapter/train_sketch.py -------------------------------------------------------------------------------- /configs/humansd/humansd-finetune-originalloss.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/humansd/humansd-finetune-originalloss.yaml -------------------------------------------------------------------------------- /configs/humansd/humansd-finetune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/humansd/humansd-finetune.yaml -------------------------------------------------------------------------------- /configs/humansd/humansd-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/humansd/humansd-inference.yaml -------------------------------------------------------------------------------- /configs/karlo/decoder_900M_vit_l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/karlo/decoder_900M_vit_l.yaml -------------------------------------------------------------------------------- /configs/karlo/improved_sr_64_256_1.4B.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/karlo/improved_sr_64_256_1.4B.yaml -------------------------------------------------------------------------------- /configs/karlo/prior_1B_vit_l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/karlo/prior_1B_vit_l.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/intel/v2-inference-bf16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/stable-diffusion/intel/v2-inference-bf16.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/intel/v2-inference-fp32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/stable-diffusion/intel/v2-inference-fp32.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/intel/v2-inference-v-bf16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/stable-diffusion/intel/v2-inference-v-bf16.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/intel/v2-inference-v-fp32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/stable-diffusion/intel/v2-inference-v-fp32.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v2-1-stable-unclip-h-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/stable-diffusion/v2-1-stable-unclip-h-inference.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v2-1-stable-unclip-l-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/stable-diffusion/v2-1-stable-unclip-l-inference.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v2-inference-v.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/stable-diffusion/v2-inference-v.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v2-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/stable-diffusion/v2-inference.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v2-inpainting-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/stable-diffusion/v2-inpainting-inference.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/v2-midas-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/stable-diffusion/v2-midas-inference.yaml -------------------------------------------------------------------------------- /configs/stable-diffusion/x4-upscaling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/configs/stable-diffusion/x4-upscaling.yaml -------------------------------------------------------------------------------- /doc/UNCLIP.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/doc/UNCLIP.MD -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/environment.yaml -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/300w.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/300w.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/aflw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/aflw.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/aic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/aic.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/animalpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/animalpose.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/ap10k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/ap10k.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/atrw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/atrw.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/campus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/campus.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/coco.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/coco_wholebody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/coco_wholebody.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/coco_wholebody_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/coco_wholebody_face.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/coco_wholebody_hand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/coco_wholebody_hand.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/cofw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/cofw.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/crowdpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/crowdpose.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/deepfashion2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/deepfashion2.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/deepfashion_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/deepfashion_full.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/deepfashion_lower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/deepfashion_lower.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/deepfashion_upper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/deepfashion_upper.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/fly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/fly.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/freihand2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/freihand2d.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/h36m.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/halpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/halpe.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/horse10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/horse10.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/interhand2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/interhand2d.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/interhand3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/interhand3d.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/jhmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/jhmdb.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/locust.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/locust.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/macaque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/macaque.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/mhp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/mhp.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/mpi_inf_3dhp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/mpi_inf_3dhp.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/mpii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/mpii.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/mpii_trb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/mpii_trb.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/nvgesture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/nvgesture.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/ochuman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/ochuman.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/onehand10k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/onehand10k.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/panoptic_body3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/panoptic_body3d.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/panoptic_hand2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/panoptic_hand2d.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/posetrack18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/posetrack18.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/rhd2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/rhd2d.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/shelf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/shelf.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/wflw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/wflw.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/datasets/zebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/datasets/zebra.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/filters/gaussian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/filters/gaussian.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/filters/one_euro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/filters/one_euro.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/filters/savizky_golay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/filters/savizky_golay.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/filters/smoothnet_h36m.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/filters/smoothnet_h36m.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/filters/smoothnet_t16_h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/filters/smoothnet_t16_h36m.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/filters/smoothnet_t32_h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/filters/smoothnet_t32_h36m.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/filters/smoothnet_t64_h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/filters/smoothnet_t64_h36m.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/_base_/filters/smoothnet_t8_h36m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/_base_/filters/smoothnet_t8_h36m.py -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/animal/2d_kpt_sview_rgb_img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/animal/2d_kpt_sview_rgb_img/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/animal/2d_kpt_sview_rgb_img/topdown_heatmap/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/cid/coco/hrnet_coco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/cid/coco/hrnet_coco.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/cid/coco/hrnet_coco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/cid/coco/hrnet_coco.yml -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/deeppose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/deeppose/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/dekr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/dekr/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/dekr/coco/hrnet_coco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/dekr/coco/hrnet_coco.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/dekr/coco/hrnet_coco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/dekr/coco/hrnet_coco.yml -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_img/topdown_heatmap/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_vid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_vid/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_vid/posewarper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/2d_kpt_sview_rgb_vid/posewarper/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/3d_kpt_mview_rgb_img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/3d_kpt_mview_rgb_img/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/3d_kpt_mview_rgb_img/voxelpose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/3d_kpt_mview_rgb_img/voxelpose/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/3d_kpt_sview_rgb_img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/3d_kpt_sview_rgb_img/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/3d_kpt_sview_rgb_img/pose_lift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/3d_kpt_sview_rgb_img/pose_lift/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/3d_kpt_sview_rgb_vid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/3d_kpt_sview_rgb_vid/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/3d_kpt_sview_rgb_vid/video_pose_lift/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/3d_mesh_sview_rgb_img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/3d_mesh_sview_rgb_img/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/3d_mesh_sview_rgb_img/hmr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/3d_mesh_sview_rgb_img/hmr/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/3d_mesh_sview_rgb_img/hmr/mixed/resnet_mixed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/3d_mesh_sview_rgb_img/hmr/mixed/resnet_mixed.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/body/3d_mesh_sview_rgb_img/hmr/mixed/resnet_mixed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/body/3d_mesh_sview_rgb_img/hmr/mixed/resnet_mixed.yml -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/face/2d_kpt_sview_rgb_img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/face/2d_kpt_sview_rgb_img/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/face/2d_kpt_sview_rgb_img/deeppose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/face/2d_kpt_sview_rgb_img/deeppose/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/fashion/2d_kpt_sview_rgb_img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/fashion/2d_kpt_sview_rgb_img/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/fashion/2d_kpt_sview_rgb_img/deeppose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/fashion/2d_kpt_sview_rgb_img/deeppose/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/hand/2d_kpt_sview_rgb_img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/hand/2d_kpt_sview_rgb_img/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/hand/2d_kpt_sview_rgb_img/deeppose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/hand/2d_kpt_sview_rgb_img/deeppose/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/hand/2d_kpt_sview_rgb_img/topdown_heatmap/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/hand/3d_kpt_sview_rgb_img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/hand/3d_kpt_sview_rgb_img/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/hand/3d_kpt_sview_rgb_img/internet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/hand/3d_kpt_sview_rgb_img/internet/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/hand/gesture_sview_rgbd_vid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/hand/gesture_sview_rgbd_vid/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/hand/gesture_sview_rgbd_vid/mtut/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/hand/gesture_sview_rgbd_vid/mtut/README.md -------------------------------------------------------------------------------- /humansd_data/models/mmpose/configs/wholebody/2d_kpt_sview_rgb_img/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/humansd_data/models/mmpose/configs/wholebody/2d_kpt_sview_rgb_img/README.md -------------------------------------------------------------------------------- /ldm/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/data/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/data/base.py -------------------------------------------------------------------------------- /ldm/data/humansd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/data/humansd.py -------------------------------------------------------------------------------- /ldm/data/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/data/util.py -------------------------------------------------------------------------------- /ldm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/models/autoencoder.py -------------------------------------------------------------------------------- /ldm/models/diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/models/diffusion/ddim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/models/diffusion/ddim.py -------------------------------------------------------------------------------- /ldm/models/diffusion/ddpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/models/diffusion/ddpm.py -------------------------------------------------------------------------------- /ldm/models/diffusion/dpm_solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/models/diffusion/dpm_solver/__init__.py -------------------------------------------------------------------------------- /ldm/models/diffusion/dpm_solver/dpm_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/models/diffusion/dpm_solver/dpm_solver.py -------------------------------------------------------------------------------- /ldm/models/diffusion/dpm_solver/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/models/diffusion/dpm_solver/sampler.py -------------------------------------------------------------------------------- /ldm/models/diffusion/plms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/models/diffusion/plms.py -------------------------------------------------------------------------------- /ldm/models/diffusion/sampling_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/models/diffusion/sampling_util.py -------------------------------------------------------------------------------- /ldm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/attention.py -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/diffusionmodules/model.py -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/openaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/diffusionmodules/openaimodel.py -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/upscaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/diffusionmodules/upscaling.py -------------------------------------------------------------------------------- /ldm/modules/diffusionmodules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/diffusionmodules/util.py -------------------------------------------------------------------------------- /ldm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/distributions/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/distributions/distributions.py -------------------------------------------------------------------------------- /ldm/modules/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/ema.py -------------------------------------------------------------------------------- /ldm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/encoders/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/encoders/modules.py -------------------------------------------------------------------------------- /ldm/modules/image_degradation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/image_degradation/__init__.py -------------------------------------------------------------------------------- /ldm/modules/image_degradation/bsrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/image_degradation/bsrgan.py -------------------------------------------------------------------------------- /ldm/modules/image_degradation/bsrgan_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/image_degradation/bsrgan_light.py -------------------------------------------------------------------------------- /ldm/modules/image_degradation/utils/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/image_degradation/utils/test.png -------------------------------------------------------------------------------- /ldm/modules/image_degradation/utils_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/image_degradation/utils_image.py -------------------------------------------------------------------------------- /ldm/modules/karlo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/karlo/diffusers_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/diffusers_pipeline.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/models/clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/models/clip.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/models/decoder_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/models/decoder_model.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/models/prior_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/models/prior_model.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/models/sr_256_1k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/models/sr_256_1k.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/models/sr_64_256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/models/sr_64_256.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/modules/__init__.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/modules/diffusion/gaussian_diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/modules/diffusion/gaussian_diffusion.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/modules/diffusion/respace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/modules/diffusion/respace.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/modules/nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/modules/nn.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/modules/resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/modules/resample.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/modules/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/modules/unet.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/modules/xf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/modules/xf.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/sampler.py -------------------------------------------------------------------------------- /ldm/modules/karlo/kakao/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/karlo/kakao/template.py -------------------------------------------------------------------------------- /ldm/modules/midas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/midas/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/midas/api.py -------------------------------------------------------------------------------- /ldm/modules/midas/midas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ldm/modules/midas/midas/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/midas/midas/base_model.py -------------------------------------------------------------------------------- /ldm/modules/midas/midas/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/midas/midas/blocks.py -------------------------------------------------------------------------------- /ldm/modules/midas/midas/dpt_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/midas/midas/dpt_depth.py -------------------------------------------------------------------------------- /ldm/modules/midas/midas/midas_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/midas/midas/midas_net.py -------------------------------------------------------------------------------- /ldm/modules/midas/midas/midas_net_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/midas/midas/midas_net_custom.py -------------------------------------------------------------------------------- /ldm/modules/midas/midas/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/midas/midas/transforms.py -------------------------------------------------------------------------------- /ldm/modules/midas/midas/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/midas/midas/vit.py -------------------------------------------------------------------------------- /ldm/modules/midas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/modules/midas/utils.py -------------------------------------------------------------------------------- /ldm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/ldm/util.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/main.py -------------------------------------------------------------------------------- /modelcard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/modelcard.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/gradio/depth2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/gradio/depth2img.py -------------------------------------------------------------------------------- /scripts/gradio/inpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/gradio/inpainting.py -------------------------------------------------------------------------------- /scripts/gradio/pose2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/gradio/pose2img.py -------------------------------------------------------------------------------- /scripts/gradio/superresolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/gradio/superresolution.py -------------------------------------------------------------------------------- /scripts/img2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/img2img.py -------------------------------------------------------------------------------- /scripts/pose2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/pose2img.py -------------------------------------------------------------------------------- /scripts/pose2img_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/pose2img_metrics.py -------------------------------------------------------------------------------- /scripts/streamlit/depth2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/streamlit/depth2img.py -------------------------------------------------------------------------------- /scripts/streamlit/inpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/streamlit/inpainting.py -------------------------------------------------------------------------------- /scripts/streamlit/stableunclip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/streamlit/stableunclip.py -------------------------------------------------------------------------------- /scripts/streamlit/superresolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/streamlit/superresolution.py -------------------------------------------------------------------------------- /scripts/tests/test_watermark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/tests/test_watermark.py -------------------------------------------------------------------------------- /scripts/txt2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/scripts/txt2img.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/setup.py -------------------------------------------------------------------------------- /utils/download_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/utils/download_data.py -------------------------------------------------------------------------------- /utils/metrics/coco_similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/utils/metrics/coco_similarity.py -------------------------------------------------------------------------------- /utils/metrics/evalute_metrics_of_each_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/utils/metrics/evalute_metrics_of_each_category.py -------------------------------------------------------------------------------- /utils/metrics/metric_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/utils/metrics/metric_main.py -------------------------------------------------------------------------------- /utils/metrics/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/utils/metrics/metrics.yaml -------------------------------------------------------------------------------- /utils/metrics/pose_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/utils/metrics/pose_metrics.py -------------------------------------------------------------------------------- /utils/metrics/quality_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/utils/metrics/quality_metrics.py -------------------------------------------------------------------------------- /utils/metrics/text_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IDEA-Research/HumanSD/HEAD/utils/metrics/text_metrics.py --------------------------------------------------------------------------------