├── .gitignore ├── LICENSE.txt ├── README.md ├── TikTok-v4 └── put the dataset here.txt ├── dataset ├── __init__.py ├── hdfs_io.py ├── kv_dataset.py ├── mask.py ├── safty.py ├── tiktok_video_arnold_copy.py ├── tiktok_video_mm.py └── transforms.py ├── environment.yml ├── example_data ├── image │ ├── human │ │ ├── 0001.png │ │ └── 0125.png │ └── out-of-domain │ │ ├── 001.png │ │ └── 181020.png └── pose_sequence │ ├── 001 │ ├── 0001.png │ ├── 0002.png │ ├── 0003.png │ ├── 0004.png │ ├── 0005.png │ ├── 0006.png │ ├── 0007.png │ ├── 0008.png │ ├── 0009.png │ ├── 0010.png │ ├── 0011.png │ ├── 0012.png │ ├── 0013.png │ ├── 0014.png │ ├── 0015.png │ ├── 0016.png │ ├── 0017.png │ ├── 0018.png │ ├── 0019.png │ ├── 0020.png │ ├── 0021.png │ ├── 0022.png │ ├── 0023.png │ ├── 0024.png │ └── 0025.png │ ├── 002 │ ├── 0001.png │ ├── 0006.png │ ├── 0011.png │ ├── 0016.png │ ├── 0021.png │ ├── 0026.png │ ├── 0031.png │ ├── 0036.png │ ├── 0041.png │ ├── 0046.png │ ├── 0051.png │ ├── 0056.png │ ├── 0061.png │ ├── 0066.png │ ├── 0071.png │ ├── 0076.png │ ├── 0081.png │ ├── 0086.png │ ├── 0091.png │ ├── 0096.png │ ├── 0101.png │ ├── 0106.png │ ├── 0111.png │ ├── 0116.png │ ├── 0121.png │ ├── 0126.png │ ├── 0131.png │ ├── 0136.png │ ├── 0141.png │ ├── 0146.png │ ├── 0151.png │ ├── 0156.png │ ├── 0161.png │ ├── 0166.png │ ├── 0171.png │ ├── 0176.png │ ├── 0181.png │ ├── 0186.png │ ├── 0191.png │ └── 0196.png │ └── 003 │ ├── 0001.png │ ├── 0006.png │ ├── 0011.png │ ├── 0016.png │ ├── 0021.png │ ├── 0026.png │ ├── 0031.png │ ├── 0036.png │ ├── 0041.png │ ├── 0046.png │ ├── 0051.png │ ├── 0057.png │ ├── 0062.png │ ├── 0067.png │ ├── 0072.png │ ├── 0077.png │ ├── 0082.png │ ├── 0087.png │ ├── 0092.png │ ├── 0097.png │ ├── 0102.png │ ├── 0107.png │ ├── 0112.png │ ├── 0117.png │ ├── 0122.png │ ├── 0127.png │ ├── 0132.png │ ├── 0137.png │ ├── 0142.png │ ├── 0147.png │ ├── 0152.png │ ├── 0157.png │ ├── 0162.png │ ├── 0167.png │ ├── 0172.png │ ├── 0177.png │ ├── 0182.png │ ├── 0187.png │ ├── 0192.png │ └── 0197.png ├── figures ├── 1.gif ├── 2.gif ├── Comparison_Animate_Anyone.gif ├── magicanimate_1.png ├── magicanimate_2.png ├── teaser.jpg ├── tiktok.png ├── video_play.png ├── zeroshot_1.png └── zeroshot_2.png ├── misc_scripts ├── detect_openpose_map_tiktok.py └── keypoint │ ├── __init__.py │ ├── face_keypoint.py │ └── idls │ ├── base.thrift │ ├── common.thrift │ └── faceattr.thrift ├── model_lib └── ControlNet │ ├── annotator │ ├── canny │ │ └── __init__.py │ ├── ckpts │ │ ├── blip2-opt-2.7b │ │ │ ├── config.json │ │ │ ├── merges.txt │ │ │ ├── preprocessor_config.json │ │ │ ├── special_tokens_map.json │ │ │ ├── tokenizer.json │ │ │ ├── tokenizer_config.json │ │ │ └── vocab.json │ │ └── ckpts.txt │ ├── hed │ │ └── __init__.py │ ├── midas │ │ ├── __init__.py │ │ ├── api.py │ │ ├── midas │ │ │ ├── backbones │ │ │ │ ├── beit.py │ │ │ │ ├── levit.py │ │ │ │ ├── next_vit.py │ │ │ │ ├── swin.py │ │ │ │ ├── swin2.py │ │ │ │ ├── swin_common.py │ │ │ │ ├── utils.py │ │ │ │ └── vit.py │ │ │ ├── base_model.py │ │ │ ├── blocks.py │ │ │ ├── dpt_depth.py │ │ │ ├── midas_net.py │ │ │ ├── midas_net_custom.py │ │ │ ├── model_loader.py │ │ │ └── transforms.py │ │ └── utils.py │ ├── mlsd │ │ ├── __init__.py │ │ ├── models │ │ │ ├── mbv2_mlsd_large.py │ │ │ └── mbv2_mlsd_tiny.py │ │ └── utils.py │ ├── openpose │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── body.py │ │ ├── face.py │ │ ├── hand.py │ │ ├── model.py │ │ └── util.py │ ├── openpose_old │ │ ├── __init__.py │ │ ├── body.py │ │ ├── hand.py │ │ ├── model.py │ │ └── util.py │ ├── uniformer │ │ ├── __init__.py │ │ ├── configs │ │ │ └── _base_ │ │ │ │ ├── datasets │ │ │ │ ├── ade20k.py │ │ │ │ ├── chase_db1.py │ │ │ │ ├── cityscapes.py │ │ │ │ ├── cityscapes_769x769.py │ │ │ │ ├── drive.py │ │ │ │ ├── hrf.py │ │ │ │ ├── pascal_context.py │ │ │ │ ├── pascal_context_59.py │ │ │ │ ├── pascal_voc12.py │ │ │ │ ├── pascal_voc12_aug.py │ │ │ │ └── stare.py │ │ │ │ ├── default_runtime.py │ │ │ │ ├── models │ │ │ │ ├── ann_r50-d8.py │ │ │ │ ├── apcnet_r50-d8.py │ │ │ │ ├── ccnet_r50-d8.py │ │ │ │ ├── cgnet.py │ │ │ │ ├── danet_r50-d8.py │ │ │ │ ├── deeplabv3_r50-d8.py │ │ │ │ ├── deeplabv3_unet_s5-d16.py │ │ │ │ ├── deeplabv3plus_r50-d8.py │ │ │ │ ├── dmnet_r50-d8.py │ │ │ │ ├── dnl_r50-d8.py │ │ │ │ ├── emanet_r50-d8.py │ │ │ │ ├── encnet_r50-d8.py │ │ │ │ ├── fast_scnn.py │ │ │ │ ├── fcn_hr18.py │ │ │ │ ├── fcn_r50-d8.py │ │ │ │ ├── fcn_unet_s5-d16.py │ │ │ │ ├── fpn_r50.py │ │ │ │ ├── fpn_uniformer.py │ │ │ │ ├── gcnet_r50-d8.py │ │ │ │ ├── lraspp_m-v3-d8.py │ │ │ │ ├── nonlocal_r50-d8.py │ │ │ │ ├── ocrnet_hr18.py │ │ │ │ ├── ocrnet_r50-d8.py │ │ │ │ ├── pointrend_r50.py │ │ │ │ ├── psanet_r50-d8.py │ │ │ │ ├── pspnet_r50-d8.py │ │ │ │ ├── pspnet_unet_s5-d16.py │ │ │ │ ├── upernet_r50.py │ │ │ │ └── upernet_uniformer.py │ │ │ │ └── schedules │ │ │ │ ├── schedule_160k.py │ │ │ │ ├── schedule_20k.py │ │ │ │ ├── schedule_40k.py │ │ │ │ └── schedule_80k.py │ │ ├── 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 │ └── zoe │ │ ├── LICENSE │ │ ├── __init__.py │ │ └── zoedepth │ │ ├── data │ │ ├── __init__.py │ │ ├── data_mono.py │ │ ├── ddad.py │ │ ├── diml_indoor_test.py │ │ ├── diml_outdoor_test.py │ │ ├── diode.py │ │ ├── hypersim.py │ │ ├── ibims.py │ │ ├── preprocess.py │ │ ├── sun_rgbd_loader.py │ │ ├── transforms.py │ │ ├── vkitti.py │ │ └── vkitti2.py │ │ ├── models │ │ ├── __init__.py │ │ ├── base_models │ │ │ ├── __init__.py │ │ │ ├── midas.py │ │ │ └── midas_repo │ │ │ │ ├── .gitignore │ │ │ │ ├── Dockerfile │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── environment.yaml │ │ │ │ ├── hubconf.py │ │ │ │ ├── input │ │ │ │ └── .placeholder │ │ │ │ ├── midas │ │ │ │ ├── backbones │ │ │ │ │ ├── beit.py │ │ │ │ │ ├── levit.py │ │ │ │ │ ├── next_vit.py │ │ │ │ │ ├── swin.py │ │ │ │ │ ├── swin2.py │ │ │ │ │ ├── swin_common.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── vit.py │ │ │ │ ├── base_model.py │ │ │ │ ├── blocks.py │ │ │ │ ├── dpt_depth.py │ │ │ │ ├── midas_net.py │ │ │ │ ├── midas_net_custom.py │ │ │ │ ├── model_loader.py │ │ │ │ └── transforms.py │ │ │ │ ├── mobile │ │ │ │ ├── README.md │ │ │ │ ├── android │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── EXPLORE_THE_CODE.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── app │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ ├── proguard-rules.pro │ │ │ │ │ │ └── src │ │ │ │ │ │ │ ├── androidTest │ │ │ │ │ │ │ └── java │ │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ │ └── org │ │ │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ │ │ └── lite │ │ │ │ │ │ │ │ └── examples │ │ │ │ │ │ │ │ └── classification │ │ │ │ │ │ │ │ └── ClassifierTest.java │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ ├── java │ │ │ │ │ │ │ └── org │ │ │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ │ │ └── lite │ │ │ │ │ │ │ │ └── examples │ │ │ │ │ │ │ │ └── classification │ │ │ │ │ │ │ │ ├── CameraActivity.java │ │ │ │ │ │ │ │ ├── CameraConnectionFragment.java │ │ │ │ │ │ │ │ ├── ClassifierActivity.java │ │ │ │ │ │ │ │ ├── LegacyCameraConnectionFragment.java │ │ │ │ │ │ │ │ └── customview │ │ │ │ │ │ │ │ ├── AutoFitTextureView.java │ │ │ │ │ │ │ │ ├── OverlayView.java │ │ │ │ │ │ │ │ ├── RecognitionScoreView.java │ │ │ │ │ │ │ │ └── ResultsView.java │ │ │ │ │ │ │ └── res │ │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ ├── bottom_sheet_bg.xml │ │ │ │ │ │ │ ├── ic_baseline_add.xml │ │ │ │ │ │ │ ├── ic_baseline_remove.xml │ │ │ │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ │ │ │ └── rectangle.xml │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── tfe_ic_activity_camera.xml │ │ │ │ │ │ │ ├── tfe_ic_camera_connection_fragment.xml │ │ │ │ │ │ │ └── tfe_ic_layout_bottom_sheet.xml │ │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ │ └── styles.xml │ │ │ │ │ ├── build.gradle │ │ │ │ │ ├── gradle.properties │ │ │ │ │ ├── gradle │ │ │ │ │ │ └── wrapper │ │ │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ │ │ └── gradle-wrapper.properties │ │ │ │ │ ├── gradlew │ │ │ │ │ ├── gradlew.bat │ │ │ │ │ ├── lib_support │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ ├── proguard-rules.pro │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ │ └── lite │ │ │ │ │ │ │ └── examples │ │ │ │ │ │ │ └── classification │ │ │ │ │ │ │ └── tflite │ │ │ │ │ │ │ ├── Classifier.java │ │ │ │ │ │ │ ├── ClassifierFloatEfficientNet.java │ │ │ │ │ │ │ ├── ClassifierFloatMobileNet.java │ │ │ │ │ │ │ ├── ClassifierQuantizedEfficientNet.java │ │ │ │ │ │ │ └── ClassifierQuantizedMobileNet.java │ │ │ │ │ ├── lib_task_api │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ ├── proguard-rules.pro │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ │ └── java │ │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── tensorflow │ │ │ │ │ │ │ └── lite │ │ │ │ │ │ │ └── examples │ │ │ │ │ │ │ └── classification │ │ │ │ │ │ │ └── tflite │ │ │ │ │ │ │ ├── Classifier.java │ │ │ │ │ │ │ ├── ClassifierFloatEfficientNet.java │ │ │ │ │ │ │ ├── ClassifierFloatMobileNet.java │ │ │ │ │ │ │ ├── ClassifierQuantizedEfficientNet.java │ │ │ │ │ │ │ └── ClassifierQuantizedMobileNet.java │ │ │ │ │ ├── models │ │ │ │ │ │ ├── build.gradle │ │ │ │ │ │ ├── download.gradle │ │ │ │ │ │ ├── proguard-rules.pro │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── main │ │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ └── settings.gradle │ │ │ │ └── ios │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Midas.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ ├── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ │ └── admin.xcuserdatad │ │ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ └── admin.xcuserdatad │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ │ ├── Midas │ │ │ │ │ ├── AppDelegate.swift │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Camera Feed │ │ │ │ │ │ ├── CameraFeedManager.swift │ │ │ │ │ │ └── PreviewView.swift │ │ │ │ │ ├── Cells │ │ │ │ │ │ └── InfoCell.swift │ │ │ │ │ ├── Constants.swift │ │ │ │ │ ├── Extensions │ │ │ │ │ │ ├── CGSizeExtension.swift │ │ │ │ │ │ ├── CVPixelBufferExtension.swift │ │ │ │ │ │ └── TFLiteExtension.swift │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ModelDataHandler │ │ │ │ │ │ └── ModelDataHandler.swift │ │ │ │ │ ├── Storyboards │ │ │ │ │ │ └── Base.lproj │ │ │ │ │ │ │ ├── Launch Screen.storyboard │ │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── ViewControllers │ │ │ │ │ │ └── ViewController.swift │ │ │ │ │ └── Views │ │ │ │ │ │ └── OverlayView.swift │ │ │ │ │ ├── Podfile │ │ │ │ │ ├── README.md │ │ │ │ │ └── RunScripts │ │ │ │ │ └── download_models.sh │ │ │ │ ├── output │ │ │ │ └── .placeholder │ │ │ │ ├── ros │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── additions │ │ │ │ │ ├── do_catkin_make.sh │ │ │ │ │ ├── downloads.sh │ │ │ │ │ ├── install_ros_melodic_ubuntu_17_18.sh │ │ │ │ │ ├── install_ros_noetic_ubuntu_20.sh │ │ │ │ │ └── make_package_cpp.sh │ │ │ │ ├── launch_midas_cpp.sh │ │ │ │ ├── midas_cpp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── launch │ │ │ │ │ │ ├── midas_cpp.launch │ │ │ │ │ │ └── midas_talker_listener.launch │ │ │ │ │ ├── package.xml │ │ │ │ │ ├── scripts │ │ │ │ │ │ ├── listener.py │ │ │ │ │ │ ├── listener_original.py │ │ │ │ │ │ └── talker.py │ │ │ │ │ └── src │ │ │ │ │ │ └── main.cpp │ │ │ │ └── run_talker_listener_test.sh │ │ │ │ ├── run.py │ │ │ │ ├── tf │ │ │ │ ├── README.md │ │ │ │ ├── input │ │ │ │ │ └── .placeholder │ │ │ │ ├── make_onnx_model.py │ │ │ │ ├── output │ │ │ │ │ └── .placeholder │ │ │ │ ├── run_onnx.py │ │ │ │ ├── run_pb.py │ │ │ │ ├── transforms.py │ │ │ │ └── utils.py │ │ │ │ ├── utils.py │ │ │ │ └── weights │ │ │ │ └── .placeholder │ │ ├── builder.py │ │ ├── depth_model.py │ │ ├── layers │ │ │ ├── attractor.py │ │ │ ├── dist_layers.py │ │ │ ├── localbins_layers.py │ │ │ └── patch_transformer.py │ │ ├── model_io.py │ │ ├── zoedepth │ │ │ ├── __init__.py │ │ │ ├── config_zoedepth.json │ │ │ ├── config_zoedepth_kitti.json │ │ │ └── zoedepth_v1.py │ │ └── zoedepth_nk │ │ │ ├── __init__.py │ │ │ ├── config_zoedepth_nk.json │ │ │ └── zoedepth_nk_v1.py │ │ ├── trainers │ │ ├── base_trainer.py │ │ ├── builder.py │ │ ├── loss.py │ │ ├── zoedepth_nk_trainer.py │ │ └── zoedepth_trainer.py │ │ └── utils │ │ ├── __init__.py │ │ ├── arg_utils.py │ │ ├── config.py │ │ ├── easydict │ │ └── __init__.py │ │ ├── geometry.py │ │ └── misc.py │ ├── cldm │ ├── cldm.py │ ├── hack.py │ ├── logger.py │ └── model.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 │ │ │ ├── overlap_sampling.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_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 │ │ └── motion_module.py │ └── util.py │ └── models │ ├── cldm_v15.yaml │ ├── cldm_v15_reference_only.yaml │ └── cldm_v15_reference_only_pose.yaml ├── pretrained_weights └── put your model ckpts here.txt ├── scripts ├── appearance_control_pretraining.sh ├── appearance_disentangle_pose_control.sh ├── inference_any_image_pose.sh └── inference_tiktok_dataset.sh ├── test_any_image_pose.py ├── test_tiktok.py ├── tool ├── ClipScore.py ├── cleanfid │ ├── __init__.py │ ├── downloads_helper.py │ ├── features.py │ ├── fid.py │ ├── inception_pytorch.py │ ├── inception_torchscript.py │ ├── leaderboard.py │ ├── resize.py │ └── utils.py ├── inception_score.py ├── metrics │ ├── __init__.py │ ├── downloads_helper.py │ ├── features.py │ ├── fid.py │ ├── inception3d.py │ ├── inception_pytorch.py │ ├── inception_torchscript.py │ ├── leaderboard.py │ ├── metric_center.py │ ├── readme.md │ ├── resize.py │ ├── resnet3d.py │ ├── ssim_l1_lpips_psnr.py │ └── utils.py ├── test_SD2 └── video │ ├── gen_gifs_for_fvd.py │ ├── gen_vid.py │ ├── gen_vid_command.py │ ├── gen_vid_folder.py │ ├── reencode_vid_folder_forvis.py │ └── runsh │ ├── process_video.sh │ └── process_video_demo.sh ├── train_tiktok.py └── utils ├── __init__.py ├── checkpoint.py ├── io_utils.py ├── lr_scheduler.py ├── time_utils.py ├── txt_utils.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/README.md -------------------------------------------------------------------------------- /TikTok-v4/put the dataset here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/hdfs_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/dataset/hdfs_io.py -------------------------------------------------------------------------------- /dataset/kv_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/dataset/kv_dataset.py -------------------------------------------------------------------------------- /dataset/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/dataset/mask.py -------------------------------------------------------------------------------- /dataset/safty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/dataset/safty.py -------------------------------------------------------------------------------- /dataset/tiktok_video_arnold_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/dataset/tiktok_video_arnold_copy.py -------------------------------------------------------------------------------- /dataset/tiktok_video_mm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/dataset/tiktok_video_mm.py -------------------------------------------------------------------------------- /dataset/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/dataset/transforms.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/environment.yml -------------------------------------------------------------------------------- /example_data/image/human/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/image/human/0001.png -------------------------------------------------------------------------------- /example_data/image/human/0125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/image/human/0125.png -------------------------------------------------------------------------------- /example_data/image/out-of-domain/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/image/out-of-domain/001.png -------------------------------------------------------------------------------- /example_data/image/out-of-domain/181020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/image/out-of-domain/181020.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0001.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0002.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0003.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0004.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0005.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0006.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0007.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0008.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0009.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0010.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0011.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0012.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0013.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0014.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0015.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0016.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0017.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0018.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0019.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0020.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0021.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0022.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0023.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0024.png -------------------------------------------------------------------------------- /example_data/pose_sequence/001/0025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/001/0025.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0001.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0006.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0011.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0016.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0021.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0026.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0031.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0036.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0041.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0046.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0051.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0056.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0061.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0066.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0071.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0076.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0081.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0086.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0086.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0091.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0091.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0096.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0101.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0106.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0111.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0116.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0121.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0126.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0131.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0136.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0141.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0146.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0151.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0156.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0161.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0166.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0171.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0176.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0181.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0186.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0191.png -------------------------------------------------------------------------------- /example_data/pose_sequence/002/0196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/002/0196.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0001.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0006.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0011.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0016.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0021.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0026.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0031.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0036.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0041.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0046.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0051.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0057.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0062.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0067.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0072.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0077.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0082.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0082.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0087.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0092.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0092.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0097.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0102.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0107.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0112.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0117.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0122.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0127.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0132.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0137.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0142.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0147.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0152.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0157.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0162.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0167.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0172.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0177.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0182.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0187.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0192.png -------------------------------------------------------------------------------- /example_data/pose_sequence/003/0197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/example_data/pose_sequence/003/0197.png -------------------------------------------------------------------------------- /figures/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/figures/1.gif -------------------------------------------------------------------------------- /figures/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/figures/2.gif -------------------------------------------------------------------------------- /figures/Comparison_Animate_Anyone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/figures/Comparison_Animate_Anyone.gif -------------------------------------------------------------------------------- /figures/magicanimate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/figures/magicanimate_1.png -------------------------------------------------------------------------------- /figures/magicanimate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/figures/magicanimate_2.png -------------------------------------------------------------------------------- /figures/teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/figures/teaser.jpg -------------------------------------------------------------------------------- /figures/tiktok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/figures/tiktok.png -------------------------------------------------------------------------------- /figures/video_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/figures/video_play.png -------------------------------------------------------------------------------- /figures/zeroshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/figures/zeroshot_1.png -------------------------------------------------------------------------------- /figures/zeroshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/figures/zeroshot_2.png -------------------------------------------------------------------------------- /misc_scripts/detect_openpose_map_tiktok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/misc_scripts/detect_openpose_map_tiktok.py -------------------------------------------------------------------------------- /misc_scripts/keypoint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/misc_scripts/keypoint/__init__.py -------------------------------------------------------------------------------- /misc_scripts/keypoint/face_keypoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/misc_scripts/keypoint/face_keypoint.py -------------------------------------------------------------------------------- /misc_scripts/keypoint/idls/base.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/misc_scripts/keypoint/idls/base.thrift -------------------------------------------------------------------------------- /misc_scripts/keypoint/idls/common.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/misc_scripts/keypoint/idls/common.thrift -------------------------------------------------------------------------------- /misc_scripts/keypoint/idls/faceattr.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/misc_scripts/keypoint/idls/faceattr.thrift -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/canny/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/canny/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/config.json -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/merges.txt -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/preprocessor_config.json -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/special_tokens_map.json -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/tokenizer.json -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/tokenizer_config.json -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/ckpts/blip2-opt-2.7b/vocab.json -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/ckpts/ckpts.txt: -------------------------------------------------------------------------------- 1 | Weights here. -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/hed/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/hed/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/api.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/backbones/beit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/backbones/beit.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/backbones/levit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/backbones/levit.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/backbones/next_vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/backbones/next_vit.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/backbones/swin.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/backbones/swin2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/backbones/swin2.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/backbones/swin_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/backbones/swin_common.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/backbones/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/backbones/utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/backbones/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/backbones/vit.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/base_model.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/blocks.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/dpt_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/dpt_depth.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/midas_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/midas_net.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/midas_net_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/midas_net_custom.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/model_loader.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/midas/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/midas/transforms.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/midas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/midas/utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/mlsd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/mlsd/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/mlsd/models/mbv2_mlsd_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/mlsd/models/mbv2_mlsd_large.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/mlsd/models/mbv2_mlsd_tiny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/mlsd/models/mbv2_mlsd_tiny.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/mlsd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/mlsd/utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/openpose/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/openpose/LICENSE -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/openpose/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/openpose/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/openpose/body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/openpose/body.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/openpose/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/openpose/face.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/openpose/hand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/openpose/hand.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/openpose/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/openpose/model.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/openpose/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/openpose/util.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/openpose_old/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/openpose_old/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/openpose_old/body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/openpose_old/body.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/openpose_old/hand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/openpose_old/hand.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/openpose_old/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/openpose_old/model.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/openpose_old/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/openpose_old/util.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/ade20k.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/chase_db1.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/cityscapes.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/cityscapes_769x769.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/cityscapes_769x769.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/drive.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/hrf.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/pascal_context.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/pascal_context_59.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/pascal_context_59.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/pascal_voc12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/pascal_voc12.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/pascal_voc12_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/pascal_voc12_aug.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/datasets/stare.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/ann_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/ann_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/apcnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/apcnet_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/ccnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/ccnet_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/cgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/cgnet.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/danet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/danet_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/deeplabv3_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/deeplabv3_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/deeplabv3_unet_s5-d16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/deeplabv3_unet_s5-d16.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/deeplabv3plus_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/deeplabv3plus_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/dmnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/dmnet_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/dnl_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/dnl_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/emanet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/emanet_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/encnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/encnet_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/fast_scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/fast_scnn.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/fcn_hr18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/fcn_hr18.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/fcn_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/fcn_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/fcn_unet_s5-d16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/fcn_unet_s5-d16.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/fpn_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/fpn_r50.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/fpn_uniformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/fpn_uniformer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/gcnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/gcnet_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/lraspp_m-v3-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/lraspp_m-v3-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/nonlocal_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/nonlocal_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/ocrnet_hr18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/ocrnet_hr18.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/ocrnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/ocrnet_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/pointrend_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/pointrend_r50.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/psanet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/psanet_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/pspnet_r50-d8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/pspnet_r50-d8.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/pspnet_unet_s5-d16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/pspnet_unet_s5-d16.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/upernet_r50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/upernet_r50.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/models/upernet_uniformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/models/upernet_uniformer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/schedules/schedule_160k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/schedules/schedule_160k.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/schedules/schedule_20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/schedules/schedule_20k.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/schedules/schedule_40k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/schedules/schedule_40k.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/configs/_base_/schedules/schedule_80k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/configs/_base_/schedules/schedule_80k.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/exp/upernet_global_small/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/exp/upernet_global_small/config.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/exp/upernet_global_small/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/exp/upernet_global_small/run.sh -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/exp/upernet_global_small/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/exp/upernet_global_small/test.sh -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/exp/upernet_global_small/test_config_g.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/exp/upernet_global_small/test_config_g.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/exp/upernet_global_small/test_config_h32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/exp/upernet_global_small/test_config_h32.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/exp/upernet_global_small/test_config_w32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/exp/upernet_global_small/test_config_w32.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/arraymisc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/arraymisc/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/arraymisc/quantization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/arraymisc/quantization.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/alexnet.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/activation.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/context_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/context_block.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv2d_adaptive_padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv2d_adaptive_padding.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv_module.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv_ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/conv_ws.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/depthwise_separable_conv_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/depthwise_separable_conv_module.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/drop.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/generalized_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/generalized_attention.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/hsigmoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/hsigmoid.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/hswish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/hswish.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/non_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/non_local.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/norm.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/padding.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/plugin.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/registry.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/scale.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/swish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/swish.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/transformer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/upsample.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/bricks/wrappers.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/builder.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/resnet.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/utils/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/utils/flops_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/utils/flops_counter.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/utils/fuse_conv_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/utils/fuse_conv_bn.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/utils/sync_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/utils/sync_bn.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/utils/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/utils/weight_init.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/cnn/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/cnn/vgg.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/engine/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/engine/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/engine/test.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/fileio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/fileio/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/fileio/file_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/fileio/file_client.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/fileio/handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/fileio/handlers/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/fileio/handlers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/fileio/handlers/base.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/fileio/handlers/json_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/fileio/handlers/json_handler.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/fileio/handlers/pickle_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/fileio/handlers/pickle_handler.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/fileio/handlers/yaml_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/fileio/handlers/yaml_handler.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/fileio/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/fileio/io.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/fileio/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/fileio/parse.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/image/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/image/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/image/colorspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/image/colorspace.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/image/geometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/image/geometric.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/image/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/image/io.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/image/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/image/misc.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/image/photometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/image/photometric.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/model_zoo/deprecated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/model_zoo/deprecated.json -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/model_zoo/mmcls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/model_zoo/mmcls.json -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/model_zoo/open_mmlab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/model_zoo/open_mmlab.json -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/assign_score_withk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/assign_score_withk.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/ball_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/ball_query.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/bbox.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/border_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/border_align.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/box_iou_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/box_iou_rotated.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/carafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/carafe.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/cc_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/cc_attention.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/contour_expand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/contour_expand.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/corner_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/corner_pool.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/correlation.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/deform_conv.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/deform_roi_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/deform_roi_pool.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/deprecated_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/deprecated_wrappers.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/focal_loss.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/furthest_point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/furthest_point_sample.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/fused_bias_leakyrelu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/fused_bias_leakyrelu.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/gather_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/gather_points.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/group_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/group_points.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/info.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/iou3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/iou3d.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/knn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/knn.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/masked_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/masked_conv.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/merge_cells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/merge_cells.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/modulated_deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/modulated_deform_conv.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/multi_scale_deform_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/multi_scale_deform_attn.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/nms.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/pixel_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/pixel_group.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/point_sample.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/points_in_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/points_in_boxes.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/points_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/points_sampler.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/psa_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/psa_mask.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/roi_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/roi_align.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/roi_align_rotated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/roi_align_rotated.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/roi_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/roi_pool.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/roiaware_pool3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/roiaware_pool3d.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/roipoint_pool3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/roipoint_pool3d.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/saconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/saconv.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/scatter_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/scatter_points.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/sync_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/sync_bn.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/three_interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/three_interpolate.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/three_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/three_nn.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/tin_shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/tin_shift.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/upfirdn2d.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/ops/voxelize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/ops/voxelize.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/parallel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/parallel/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/parallel/_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/parallel/_functions.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/parallel/collate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/parallel/collate.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/parallel/data_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/parallel/data_container.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/parallel/data_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/parallel/data_parallel.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/parallel/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/parallel/distributed.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/parallel/distributed_deprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/parallel/distributed_deprecated.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/parallel/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/parallel/registry.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/parallel/scatter_gather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/parallel/scatter_gather.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/parallel/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/parallel/utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/base_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/base_module.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/base_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/base_runner.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/builder.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/checkpoint.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/default_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/default_constructor.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/dist_utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/epoch_based_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/epoch_based_runner.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/fp16_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/fp16_utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/checkpoint.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/closure.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/ema.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/evaluation.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/hook.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/iter_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/iter_timer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/base.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/dvclive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/dvclive.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/mlflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/mlflow.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/neptune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/neptune.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/pavi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/pavi.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/tensorboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/tensorboard.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/text.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/wandb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/logger/wandb.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/lr_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/lr_updater.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/memory.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/momentum_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/momentum_updater.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/optimizer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/profiler.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/sampler_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/sampler_seed.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/sync_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/hooks/sync_buffer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/iter_based_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/iter_based_runner.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/log_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/log_buffer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/optimizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/optimizer/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/optimizer/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/optimizer/builder.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/optimizer/default_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/optimizer/default_constructor.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/priority.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/runner/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/runner/utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/config.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/env.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/ext_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/ext_loader.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/logging.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/misc.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/parrots_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/parrots_jit.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/parrots_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/parrots_wrapper.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/path.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/progressbar.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/registry.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/testing.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/timer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/trace.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/utils/version_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/utils/version_utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/version.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/video/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/video/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/video/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/video/io.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/video/optflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/video/optflow.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/video/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/video/processing.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/visualization/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/visualization/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/visualization/color.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/visualization/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/visualization/image.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv/visualization/optflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv/visualization/optflow.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv_custom/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv_custom/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmcv_custom/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmcv_custom/checkpoint.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/apis/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/apis/inference.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/apis/test.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/apis/train.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/core/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/core/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/core/evaluation/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/core/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/core/evaluation/class_names.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/core/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/core/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/core/evaluation/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/core/evaluation/metrics.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/core/seg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/core/seg/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/core/seg/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/core/seg/builder.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/core/seg/sampler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/core/seg/sampler/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/core/seg/sampler/base_pixel_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/core/seg/sampler/base_pixel_sampler.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/core/seg/sampler/ohem_pixel_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/core/seg/sampler/ohem_pixel_sampler.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/core/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/core/utils/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/core/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/core/utils/misc.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/ade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/ade.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/builder.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/chase_db1.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/cityscapes.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/custom.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/drive.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/hrf.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pascal_context.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/test_time_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/test_time_aug.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/stare.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/datasets/voc.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/cgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/cgnet.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/fast_scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/fast_scnn.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/hrnet.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/mobilenet_v3.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/resnest.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/resnet.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/resnext.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/unet.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/uniformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/uniformer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/backbones/vit.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/builder.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/ann_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/ann_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/apc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/apc_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/aspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/aspp_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/cascade_decode_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/cascade_decode_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/cc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/cc_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/da_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/da_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/decode_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/decode_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/dm_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/dm_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/dnl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/dnl_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/ema_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/ema_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/enc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/enc_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/fcn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/fcn_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/fpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/fpn_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/gc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/gc_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/lraspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/lraspp_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/nl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/nl_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/ocr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/ocr_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/point_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/point_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/psa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/psa_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/psp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/psp_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/sep_aspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/sep_aspp_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/sep_fcn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/sep_fcn_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/uper_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/decode_heads/uper_head.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/losses/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/losses/accuracy.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/losses/dice_loss.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/losses/lovasz_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/losses/lovasz_loss.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/losses/utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/necks/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/necks/fpn.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/necks/multilevel_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/necks/multilevel_neck.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/segmentors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/segmentors/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/segmentors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/segmentors/base.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/segmentors/cascade_encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/segmentors/cascade_encoder_decoder.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/segmentors/encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/segmentors/encoder_decoder.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/drop.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/inverted_residual.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/make_divisible.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/res_layer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/se_layer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/self_attention_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/self_attention_block.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/up_conv_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/up_conv_block.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/models/utils/weight_init.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/ops/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/ops/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/ops/encoding.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/ops/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/ops/wrappers.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/utils/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/utils/collect_env.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/uniformer/mmseg/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/uniformer/mmseg/utils/logger.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/util.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/LICENSE -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/data_mono.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/data_mono.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/ddad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/ddad.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/diml_indoor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/diml_indoor_test.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/diml_outdoor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/diml_outdoor_test.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/diode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/diode.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/hypersim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/hypersim.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/ibims.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/ibims.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/preprocess.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/sun_rgbd_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/sun_rgbd_loader.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/transforms.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/vkitti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/vkitti.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/data/vkitti2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/data/vkitti2.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/.gitignore -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/Dockerfile -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/LICENSE -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/README.md -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/environment.yaml -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/hubconf.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/input/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/beit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/beit.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/levit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/levit.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/next_vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/next_vit.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/swin.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/swin2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/swin2.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/swin_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/swin_common.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/backbones/vit.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/base_model.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/blocks.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/dpt_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/dpt_depth.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/midas_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/midas_net.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/midas_net_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/midas_net_custom.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/model_loader.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/midas/transforms.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/README.md -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/.gitignore -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/EXPLORE_THE_CODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/EXPLORE_THE_CODE.md -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/LICENSE -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/README.md -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/app/.gitignore -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/app/build.gradle -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/build.gradle -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/gradle.properties -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/gradlew -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/gradlew.bat -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/models/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/models/build.gradle -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/android/settings.gradle -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/.gitignore: -------------------------------------------------------------------------------- 1 | # ignore model file 2 | #*.tflite 3 | -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/LICENSE -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/Midas/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/Midas/AppDelegate.swift -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/Midas/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/Midas/Constants.swift -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/Midas/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/Midas/Info.plist -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/Podfile -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/mobile/ios/README.md -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/output/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/LICENSE -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/README.md -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/additions/do_catkin_make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/additions/do_catkin_make.sh -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/additions/downloads.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/additions/downloads.sh -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/additions/make_package_cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/additions/make_package_cpp.sh -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/launch_midas_cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/launch_midas_cpp.sh -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/midas_cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/midas_cpp/CMakeLists.txt -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/midas_cpp/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/midas_cpp/package.xml -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/midas_cpp/scripts/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/midas_cpp/scripts/listener.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/midas_cpp/scripts/talker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/midas_cpp/scripts/talker.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/midas_cpp/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/midas_cpp/src/main.cpp -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/run_talker_listener_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/ros/run_talker_listener_test.sh -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/run.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/README.md -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/input/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/make_onnx_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/make_onnx_model.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/output/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/run_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/run_onnx.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/run_pb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/run_pb.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/transforms.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/tf/utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/base_models/midas_repo/weights/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/builder.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/depth_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/depth_model.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/layers/attractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/layers/attractor.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/layers/dist_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/layers/dist_layers.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/layers/localbins_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/layers/localbins_layers.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/layers/patch_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/layers/patch_transformer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/model_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/model_io.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth/config_zoedepth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth/config_zoedepth.json -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth/config_zoedepth_kitti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth/config_zoedepth_kitti.json -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth/zoedepth_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth/zoedepth_v1.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth_nk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth_nk/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth_nk/config_zoedepth_nk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth_nk/config_zoedepth_nk.json -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth_nk/zoedepth_nk_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/models/zoedepth_nk/zoedepth_nk_v1.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/trainers/base_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/trainers/base_trainer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/trainers/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/trainers/builder.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/trainers/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/trainers/loss.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/trainers/zoedepth_nk_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/trainers/zoedepth_nk_trainer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/trainers/zoedepth_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/trainers/zoedepth_trainer.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/utils/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/utils/arg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/utils/arg_utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/utils/config.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/utils/easydict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/utils/easydict/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/utils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/utils/geometry.py -------------------------------------------------------------------------------- /model_lib/ControlNet/annotator/zoe/zoedepth/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/annotator/zoe/zoedepth/utils/misc.py -------------------------------------------------------------------------------- /model_lib/ControlNet/cldm/cldm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/cldm/cldm.py -------------------------------------------------------------------------------- /model_lib/ControlNet/cldm/hack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/cldm/hack.py -------------------------------------------------------------------------------- /model_lib/ControlNet/cldm/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/cldm/logger.py -------------------------------------------------------------------------------- /model_lib/ControlNet/cldm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/cldm/model.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/data/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/data/util.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/models/autoencoder.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/models/diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/models/diffusion/ddim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/models/diffusion/ddim.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/models/diffusion/ddpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/models/diffusion/ddpm.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/models/diffusion/dpm_solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/models/diffusion/dpm_solver/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/models/diffusion/dpm_solver/dpm_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/models/diffusion/dpm_solver/dpm_solver.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/models/diffusion/dpm_solver/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/models/diffusion/dpm_solver/sampler.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/models/diffusion/overlap_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/models/diffusion/overlap_sampling.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/models/diffusion/plms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/models/diffusion/plms.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/models/diffusion/sampling_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/models/diffusion/sampling_util.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/attention.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/diffusionmodules/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/diffusionmodules/model.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/diffusionmodules/openaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/diffusionmodules/openaimodel.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/diffusionmodules/upscaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/diffusionmodules/upscaling.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/diffusionmodules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/diffusionmodules/util.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/distributions/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/distributions/distributions.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/ema.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/encoders/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/encoders/modules.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/image_degradation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/image_degradation/__init__.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/image_degradation/bsrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/image_degradation/bsrgan.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/image_degradation/bsrgan_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/image_degradation/bsrgan_light.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/image_degradation/utils_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/image_degradation/utils_image.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/midas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/midas/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/midas/api.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/midas/midas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/midas/midas/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/midas/midas/base_model.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/midas/midas/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/midas/midas/blocks.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/midas/midas/dpt_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/midas/midas/dpt_depth.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/midas/midas/midas_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/midas/midas/midas_net.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/midas/midas/midas_net_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/midas/midas/midas_net_custom.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/midas/midas/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/midas/midas/transforms.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/midas/midas/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/midas/midas/vit.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/midas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/midas/utils.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/modules/motion_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/modules/motion_module.py -------------------------------------------------------------------------------- /model_lib/ControlNet/ldm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/ldm/util.py -------------------------------------------------------------------------------- /model_lib/ControlNet/models/cldm_v15.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/models/cldm_v15.yaml -------------------------------------------------------------------------------- /model_lib/ControlNet/models/cldm_v15_reference_only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/models/cldm_v15_reference_only.yaml -------------------------------------------------------------------------------- /model_lib/ControlNet/models/cldm_v15_reference_only_pose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/model_lib/ControlNet/models/cldm_v15_reference_only_pose.yaml -------------------------------------------------------------------------------- /pretrained_weights/put your model ckpts here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/appearance_control_pretraining.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/scripts/appearance_control_pretraining.sh -------------------------------------------------------------------------------- /scripts/appearance_disentangle_pose_control.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/scripts/appearance_disentangle_pose_control.sh -------------------------------------------------------------------------------- /scripts/inference_any_image_pose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/scripts/inference_any_image_pose.sh -------------------------------------------------------------------------------- /scripts/inference_tiktok_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/scripts/inference_tiktok_dataset.sh -------------------------------------------------------------------------------- /test_any_image_pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/test_any_image_pose.py -------------------------------------------------------------------------------- /test_tiktok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/test_tiktok.py -------------------------------------------------------------------------------- /tool/ClipScore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/ClipScore.py -------------------------------------------------------------------------------- /tool/cleanfid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool/cleanfid/downloads_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/cleanfid/downloads_helper.py -------------------------------------------------------------------------------- /tool/cleanfid/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/cleanfid/features.py -------------------------------------------------------------------------------- /tool/cleanfid/fid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/cleanfid/fid.py -------------------------------------------------------------------------------- /tool/cleanfid/inception_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/cleanfid/inception_pytorch.py -------------------------------------------------------------------------------- /tool/cleanfid/inception_torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/cleanfid/inception_torchscript.py -------------------------------------------------------------------------------- /tool/cleanfid/leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/cleanfid/leaderboard.py -------------------------------------------------------------------------------- /tool/cleanfid/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/cleanfid/resize.py -------------------------------------------------------------------------------- /tool/cleanfid/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/cleanfid/utils.py -------------------------------------------------------------------------------- /tool/inception_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/inception_score.py -------------------------------------------------------------------------------- /tool/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool/metrics/downloads_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/downloads_helper.py -------------------------------------------------------------------------------- /tool/metrics/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/features.py -------------------------------------------------------------------------------- /tool/metrics/fid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/fid.py -------------------------------------------------------------------------------- /tool/metrics/inception3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/inception3d.py -------------------------------------------------------------------------------- /tool/metrics/inception_pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/inception_pytorch.py -------------------------------------------------------------------------------- /tool/metrics/inception_torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/inception_torchscript.py -------------------------------------------------------------------------------- /tool/metrics/leaderboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/leaderboard.py -------------------------------------------------------------------------------- /tool/metrics/metric_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/metric_center.py -------------------------------------------------------------------------------- /tool/metrics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/readme.md -------------------------------------------------------------------------------- /tool/metrics/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/resize.py -------------------------------------------------------------------------------- /tool/metrics/resnet3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/resnet3d.py -------------------------------------------------------------------------------- /tool/metrics/ssim_l1_lpips_psnr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/ssim_l1_lpips_psnr.py -------------------------------------------------------------------------------- /tool/metrics/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/metrics/utils.py -------------------------------------------------------------------------------- /tool/test_SD2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/test_SD2 -------------------------------------------------------------------------------- /tool/video/gen_gifs_for_fvd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/video/gen_gifs_for_fvd.py -------------------------------------------------------------------------------- /tool/video/gen_vid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/video/gen_vid.py -------------------------------------------------------------------------------- /tool/video/gen_vid_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/video/gen_vid_command.py -------------------------------------------------------------------------------- /tool/video/gen_vid_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/video/gen_vid_folder.py -------------------------------------------------------------------------------- /tool/video/reencode_vid_folder_forvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/video/reencode_vid_folder_forvis.py -------------------------------------------------------------------------------- /tool/video/runsh/process_video.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/video/runsh/process_video.sh -------------------------------------------------------------------------------- /tool/video/runsh/process_video_demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/tool/video/runsh/process_video_demo.sh -------------------------------------------------------------------------------- /train_tiktok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/train_tiktok.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/utils/checkpoint.py -------------------------------------------------------------------------------- /utils/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/utils/io_utils.py -------------------------------------------------------------------------------- /utils/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/utils/lr_scheduler.py -------------------------------------------------------------------------------- /utils/time_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/utils/time_utils.py -------------------------------------------------------------------------------- /utils/txt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/utils/txt_utils.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/MagicDance/HEAD/utils/utils.py --------------------------------------------------------------------------------