├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── Magic-Me-ComfyUI-workflow.json ├── README.md ├── __assets__ ├── figs │ └── framwork-comfyui-v1.png └── videos │ ├── altman-superman.mp4 │ ├── altman-walking.mp4 │ ├── altman_hapy_new_year.mp4 │ ├── bengio_hapy_new_year.mp4 │ ├── dance_altman.mp4 │ ├── dance_bengio.mp4 │ ├── dance_biden.mp4 │ ├── dance_ori.mp4 │ ├── dance_zuck.mp4 │ ├── happy_new_year_ori.mp4 │ ├── ironman-desert.mp4 │ ├── taylor-light.mp4 │ └── zuck_hapy_new_year.mp4 ├── animatediff ├── data │ └── masked_dataset.py ├── models │ ├── attention.py │ ├── motion_module.py │ ├── resnet.py │ ├── unet.py │ └── unet_blocks.py ├── pipelines │ └── vcd_pipeline_animation.py └── utils │ ├── convert_from_ckpt.py │ ├── convert_lora_safetensor_to_diffusers.py │ └── util.py ├── configs └── ceo.yaml ├── dataset └── ceo │ ├── 1.webp │ ├── 2.jpeg │ ├── 3.webp │ ├── 4.webp │ ├── 5.webp │ ├── 6.jpeg │ ├── 7.webp │ └── 8.jpeg ├── download_checkpoint.sh ├── environment.yaml ├── models ├── DreamBooth_LoRA │ └── Put personalized T2I checkpoints here.txt ├── MotionLoRA │ └── Put MotionLoRA checkpoints here.txt └── Motion_Module │ └── Put motion module checkpoints here.txt ├── train.py └── train.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Magic-Me-ComfyUI-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/Magic-Me-ComfyUI-workflow.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/README.md -------------------------------------------------------------------------------- /__assets__/figs/framwork-comfyui-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/figs/framwork-comfyui-v1.png -------------------------------------------------------------------------------- /__assets__/videos/altman-superman.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/altman-superman.mp4 -------------------------------------------------------------------------------- /__assets__/videos/altman-walking.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/altman-walking.mp4 -------------------------------------------------------------------------------- /__assets__/videos/altman_hapy_new_year.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/altman_hapy_new_year.mp4 -------------------------------------------------------------------------------- /__assets__/videos/bengio_hapy_new_year.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/bengio_hapy_new_year.mp4 -------------------------------------------------------------------------------- /__assets__/videos/dance_altman.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/dance_altman.mp4 -------------------------------------------------------------------------------- /__assets__/videos/dance_bengio.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/dance_bengio.mp4 -------------------------------------------------------------------------------- /__assets__/videos/dance_biden.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/dance_biden.mp4 -------------------------------------------------------------------------------- /__assets__/videos/dance_ori.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/dance_ori.mp4 -------------------------------------------------------------------------------- /__assets__/videos/dance_zuck.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/dance_zuck.mp4 -------------------------------------------------------------------------------- /__assets__/videos/happy_new_year_ori.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/happy_new_year_ori.mp4 -------------------------------------------------------------------------------- /__assets__/videos/ironman-desert.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/ironman-desert.mp4 -------------------------------------------------------------------------------- /__assets__/videos/taylor-light.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/taylor-light.mp4 -------------------------------------------------------------------------------- /__assets__/videos/zuck_hapy_new_year.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/__assets__/videos/zuck_hapy_new_year.mp4 -------------------------------------------------------------------------------- /animatediff/data/masked_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/animatediff/data/masked_dataset.py -------------------------------------------------------------------------------- /animatediff/models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/animatediff/models/attention.py -------------------------------------------------------------------------------- /animatediff/models/motion_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/animatediff/models/motion_module.py -------------------------------------------------------------------------------- /animatediff/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/animatediff/models/resnet.py -------------------------------------------------------------------------------- /animatediff/models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/animatediff/models/unet.py -------------------------------------------------------------------------------- /animatediff/models/unet_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/animatediff/models/unet_blocks.py -------------------------------------------------------------------------------- /animatediff/pipelines/vcd_pipeline_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/animatediff/pipelines/vcd_pipeline_animation.py -------------------------------------------------------------------------------- /animatediff/utils/convert_from_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/animatediff/utils/convert_from_ckpt.py -------------------------------------------------------------------------------- /animatediff/utils/convert_lora_safetensor_to_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/animatediff/utils/convert_lora_safetensor_to_diffusers.py -------------------------------------------------------------------------------- /animatediff/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/animatediff/utils/util.py -------------------------------------------------------------------------------- /configs/ceo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/configs/ceo.yaml -------------------------------------------------------------------------------- /dataset/ceo/1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/dataset/ceo/1.webp -------------------------------------------------------------------------------- /dataset/ceo/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/dataset/ceo/2.jpeg -------------------------------------------------------------------------------- /dataset/ceo/3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/dataset/ceo/3.webp -------------------------------------------------------------------------------- /dataset/ceo/4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/dataset/ceo/4.webp -------------------------------------------------------------------------------- /dataset/ceo/5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/dataset/ceo/5.webp -------------------------------------------------------------------------------- /dataset/ceo/6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/dataset/ceo/6.jpeg -------------------------------------------------------------------------------- /dataset/ceo/7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/dataset/ceo/7.webp -------------------------------------------------------------------------------- /dataset/ceo/8.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/dataset/ceo/8.jpeg -------------------------------------------------------------------------------- /download_checkpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/download_checkpoint.sh -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/environment.yaml -------------------------------------------------------------------------------- /models/DreamBooth_LoRA/Put personalized T2I checkpoints here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/MotionLoRA/Put MotionLoRA checkpoints here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/Motion_Module/Put motion module checkpoints here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/train.py -------------------------------------------------------------------------------- /train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhen-Dong/Magic-Me/HEAD/train.sh --------------------------------------------------------------------------------