├── .gitignore ├── LICENSE.txt ├── README.md ├── animatediff ├── models │ ├── attention.py │ ├── loaders.py │ ├── motion_module.py │ ├── resnet.py │ ├── unet.py │ └── unet_blocks.py ├── pipelines │ └── controlanimation_pipeline.py └── utils │ ├── convert_from_ckpt.py │ ├── convert_lora_safetensor_to_diffusers.py │ └── util.py ├── configs ├── inference │ ├── inference-v1.yaml │ └── inference-v2.yaml └── prompts │ ├── SampleConfig.yaml │ ├── SampleConfigIPAdapter.yaml │ ├── SampleConfigLCM.yaml │ └── SampleConfigLCMLoRA.yaml ├── download.sh ├── download_bashscripts ├── 0-MotionModule.sh ├── 0-StableDiffusion1-5.sh ├── 1-ToonYou.sh ├── 10-InitImageYoimiya.sh ├── 2-Lyriel.sh ├── 3-RcnzCartoon.sh ├── 4-MajicMix.sh ├── 5-RealisticVision.sh ├── 6-Tusun.sh ├── 7-FilmVelvia.sh ├── 8-GhibliBackground.sh ├── 9-AdditionalNetworks.sh ├── DownloadAbsoluteReality.sh ├── DownloadIPA.py ├── DownloadLCM.py ├── DownloadLCMLoRA.py ├── DownloadSD.py ├── DreamShaper8.sh └── VAE.sh ├── env.yml ├── main.py ├── models ├── LCM_Dreamshaper_v7 │ └── unet │ │ └── config.json └── TI │ └── easynegative.safetensors ├── modules ├── attention_processor.py ├── controlanimate_pipeline.py ├── controlresiduals_pipeline.py ├── ip_adapter.py ├── resampler.py ├── upscaler.py └── utils.py ├── readme ├── fig1_wlogo.png ├── ip_adapter.jpg ├── lcmlora.jpg ├── result1.jpg └── result_lcm.jpg ├── scripts └── vid2vid.py └── start.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/README.md -------------------------------------------------------------------------------- /animatediff/models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/animatediff/models/attention.py -------------------------------------------------------------------------------- /animatediff/models/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/animatediff/models/loaders.py -------------------------------------------------------------------------------- /animatediff/models/motion_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/animatediff/models/motion_module.py -------------------------------------------------------------------------------- /animatediff/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/animatediff/models/resnet.py -------------------------------------------------------------------------------- /animatediff/models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/animatediff/models/unet.py -------------------------------------------------------------------------------- /animatediff/models/unet_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/animatediff/models/unet_blocks.py -------------------------------------------------------------------------------- /animatediff/pipelines/controlanimation_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/animatediff/pipelines/controlanimation_pipeline.py -------------------------------------------------------------------------------- /animatediff/utils/convert_from_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/animatediff/utils/convert_from_ckpt.py -------------------------------------------------------------------------------- /animatediff/utils/convert_lora_safetensor_to_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/animatediff/utils/convert_lora_safetensor_to_diffusers.py -------------------------------------------------------------------------------- /animatediff/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/animatediff/utils/util.py -------------------------------------------------------------------------------- /configs/inference/inference-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/configs/inference/inference-v1.yaml -------------------------------------------------------------------------------- /configs/inference/inference-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/configs/inference/inference-v2.yaml -------------------------------------------------------------------------------- /configs/prompts/SampleConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/configs/prompts/SampleConfig.yaml -------------------------------------------------------------------------------- /configs/prompts/SampleConfigIPAdapter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/configs/prompts/SampleConfigIPAdapter.yaml -------------------------------------------------------------------------------- /configs/prompts/SampleConfigLCM.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/configs/prompts/SampleConfigLCM.yaml -------------------------------------------------------------------------------- /configs/prompts/SampleConfigLCMLoRA.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/configs/prompts/SampleConfigLCMLoRA.yaml -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download.sh -------------------------------------------------------------------------------- /download_bashscripts/0-MotionModule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/0-MotionModule.sh -------------------------------------------------------------------------------- /download_bashscripts/0-StableDiffusion1-5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/0-StableDiffusion1-5.sh -------------------------------------------------------------------------------- /download_bashscripts/1-ToonYou.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/1-ToonYou.sh -------------------------------------------------------------------------------- /download_bashscripts/10-InitImageYoimiya.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/10-InitImageYoimiya.sh -------------------------------------------------------------------------------- /download_bashscripts/2-Lyriel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/2-Lyriel.sh -------------------------------------------------------------------------------- /download_bashscripts/3-RcnzCartoon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/3-RcnzCartoon.sh -------------------------------------------------------------------------------- /download_bashscripts/4-MajicMix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/4-MajicMix.sh -------------------------------------------------------------------------------- /download_bashscripts/5-RealisticVision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/5-RealisticVision.sh -------------------------------------------------------------------------------- /download_bashscripts/6-Tusun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/6-Tusun.sh -------------------------------------------------------------------------------- /download_bashscripts/7-FilmVelvia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/7-FilmVelvia.sh -------------------------------------------------------------------------------- /download_bashscripts/8-GhibliBackground.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/8-GhibliBackground.sh -------------------------------------------------------------------------------- /download_bashscripts/9-AdditionalNetworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/9-AdditionalNetworks.sh -------------------------------------------------------------------------------- /download_bashscripts/DownloadAbsoluteReality.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/DownloadAbsoluteReality.sh -------------------------------------------------------------------------------- /download_bashscripts/DownloadIPA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/DownloadIPA.py -------------------------------------------------------------------------------- /download_bashscripts/DownloadLCM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/DownloadLCM.py -------------------------------------------------------------------------------- /download_bashscripts/DownloadLCMLoRA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/DownloadLCMLoRA.py -------------------------------------------------------------------------------- /download_bashscripts/DownloadSD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/DownloadSD.py -------------------------------------------------------------------------------- /download_bashscripts/DreamShaper8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/DreamShaper8.sh -------------------------------------------------------------------------------- /download_bashscripts/VAE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/download_bashscripts/VAE.sh -------------------------------------------------------------------------------- /env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/env.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/main.py -------------------------------------------------------------------------------- /models/LCM_Dreamshaper_v7/unet/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/models/LCM_Dreamshaper_v7/unet/config.json -------------------------------------------------------------------------------- /models/TI/easynegative.safetensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/models/TI/easynegative.safetensors -------------------------------------------------------------------------------- /modules/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/modules/attention_processor.py -------------------------------------------------------------------------------- /modules/controlanimate_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/modules/controlanimate_pipeline.py -------------------------------------------------------------------------------- /modules/controlresiduals_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/modules/controlresiduals_pipeline.py -------------------------------------------------------------------------------- /modules/ip_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/modules/ip_adapter.py -------------------------------------------------------------------------------- /modules/resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/modules/resampler.py -------------------------------------------------------------------------------- /modules/upscaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/modules/upscaler.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/modules/utils.py -------------------------------------------------------------------------------- /readme/fig1_wlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/readme/fig1_wlogo.png -------------------------------------------------------------------------------- /readme/ip_adapter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/readme/ip_adapter.jpg -------------------------------------------------------------------------------- /readme/lcmlora.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/readme/lcmlora.jpg -------------------------------------------------------------------------------- /readme/result1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/readme/result1.jpg -------------------------------------------------------------------------------- /readme/result_lcm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/readme/result_lcm.jpg -------------------------------------------------------------------------------- /scripts/vid2vid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/scripts/vid2vid.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intellerce/controlanimate/HEAD/start.sh --------------------------------------------------------------------------------