gitextract_7etsfbwj/ ├── .gitignore ├── README.md ├── configs/ │ └── test.yaml ├── constants.py ├── inference_ctrl.py ├── mimicmotion/ │ ├── __init__.py │ ├── dwpose/ │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── dwpose_detector.py │ │ ├── onnxdet.py │ │ ├── onnxpose.py │ │ ├── preprocess.py │ │ ├── util.py │ │ └── wholebody.py │ ├── modules/ │ │ ├── __init__.py │ │ ├── attention.py │ │ ├── cmp/ │ │ │ ├── experiments/ │ │ │ │ ├── rep_learning/ │ │ │ │ │ ├── alexnet_yfcc+youtube_voc_16gpu_140k/ │ │ │ │ │ │ ├── config.yaml │ │ │ │ │ │ ├── resume.sh │ │ │ │ │ │ ├── resume_slurm.sh │ │ │ │ │ │ ├── train.sh │ │ │ │ │ │ ├── train_slurm.sh │ │ │ │ │ │ ├── validate.sh │ │ │ │ │ │ └── validate_slurm.sh │ │ │ │ │ ├── alexnet_yfcc_voc_16gpu_70k/ │ │ │ │ │ │ ├── config.yaml │ │ │ │ │ │ ├── resume.sh │ │ │ │ │ │ ├── resume_slurm.sh │ │ │ │ │ │ ├── train.sh │ │ │ │ │ │ ├── train_slurm.sh │ │ │ │ │ │ ├── validate.sh │ │ │ │ │ │ └── validate_slurm.sh │ │ │ │ │ ├── alexnet_yfcc_voc_8gpu_140k/ │ │ │ │ │ │ ├── config.yaml │ │ │ │ │ │ ├── resume.sh │ │ │ │ │ │ ├── resume_slurm.sh │ │ │ │ │ │ ├── train.sh │ │ │ │ │ │ ├── train_slurm.sh │ │ │ │ │ │ ├── validate.sh │ │ │ │ │ │ └── validate_slurm.sh │ │ │ │ │ ├── resnet50_yfcc+youtube+vip+mpii_lip_16gpu_70k/ │ │ │ │ │ │ ├── config.yaml │ │ │ │ │ │ ├── resume.sh │ │ │ │ │ │ ├── resume_slurm.sh │ │ │ │ │ │ ├── train.sh │ │ │ │ │ │ ├── train_slurm.sh │ │ │ │ │ │ ├── validate.sh │ │ │ │ │ │ └── validate_slurm.sh │ │ │ │ │ ├── resnet50_yfcc_coco_16gpu_42k/ │ │ │ │ │ │ ├── config.yaml │ │ │ │ │ │ ├── resume.sh │ │ │ │ │ │ ├── resume_slurm.sh │ │ │ │ │ │ ├── train.sh │ │ │ │ │ │ ├── train_slurm.sh │ │ │ │ │ │ ├── validate.sh │ │ │ │ │ │ └── validate_slurm.sh │ │ │ │ │ └── resnet50_yfcc_voc_16gpu_42k/ │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── resume.sh │ │ │ │ │ ├── resume_slurm.sh │ │ │ │ │ ├── train.sh │ │ │ │ │ ├── train_slurm.sh │ │ │ │ │ ├── validate.sh │ │ │ │ │ └── validate_slurm.sh │ │ │ │ └── semiauto_annot/ │ │ │ │ └── resnet50_vip+mpii_liteflow/ │ │ │ │ ├── config.yaml │ │ │ │ ├── resume.sh │ │ │ │ ├── resume_slurm.sh │ │ │ │ ├── train.sh │ │ │ │ ├── train_slurm.sh │ │ │ │ ├── validate.sh │ │ │ │ └── validate_slurm.sh │ │ │ ├── losses.py │ │ │ ├── models/ │ │ │ │ ├── __init__.py │ │ │ │ ├── backbone/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── alexnet.py │ │ │ │ │ └── resnet.py │ │ │ │ ├── cmp.py │ │ │ │ ├── modules/ │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cmp.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── others.py │ │ │ │ │ ├── shallownet.py │ │ │ │ │ └── warp.py │ │ │ │ └── single_stage_model.py │ │ │ └── utils/ │ │ │ ├── __init__.py │ │ │ ├── common_utils.py │ │ │ ├── data_utils.py │ │ │ ├── distributed_utils.py │ │ │ ├── flowlib.py │ │ │ ├── scheduler.py │ │ │ └── visualize_utils.py │ │ ├── cmp_model.py │ │ ├── controlnet.py │ │ ├── point_adapter.py │ │ ├── pose_net.py │ │ └── unet.py │ ├── pipelines/ │ │ ├── pipeline_ctrl.py │ │ └── pipeline_mimicmotion.py │ └── utils/ │ ├── __init__.py │ ├── dift_utils.py │ ├── flow_utils.py │ ├── geglu_patch.py │ ├── loader.py │ ├── utils.py │ └── visualizer.py ├── requirements.txt └── scripts/ └── test.sh