├── ID_Animator_node.py ├── LICENSE ├── README.md ├── __init__.py ├── animatediff ├── models │ ├── attention.py │ ├── attention_bkp.py │ ├── file │ ├── motion_module.py │ ├── motion_module_bkp.py │ ├── resnet.py │ ├── sparse_controlnet.py │ ├── unet.py │ └── unet_blocks.py ├── pipelines │ └── pipeline_animation.py └── utils │ ├── convert_from_ckpt.py │ ├── convert_lora_safetensor_to_diffusers.py │ ├── convert_original_stable_diffusion_to_diffusers.py │ └── util.py ├── demo ├── ComfyUI_ID_Animator.gif ├── example.json └── lecun.png ├── faceadapter ├── attention_processor.py ├── face_adapter.py ├── init.py ├── resampler.py └── utils.py ├── if miss module check this requirements.txt ├── inference-v2.yaml ├── models ├── adapter │ └── put adapter file here ├── animatediff_models │ └── put animatediff_models here ├── image_encoder │ ├── config.json │ └── put image_encoder model here └── text_encoder │ ├── config.json │ └── put text_encoder model here └── pyproject.toml /ID_Animator_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/ID_Animator_node.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/__init__.py -------------------------------------------------------------------------------- /animatediff/models/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/models/attention.py -------------------------------------------------------------------------------- /animatediff/models/attention_bkp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/models/attention_bkp.py -------------------------------------------------------------------------------- /animatediff/models/file: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /animatediff/models/motion_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/models/motion_module.py -------------------------------------------------------------------------------- /animatediff/models/motion_module_bkp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/models/motion_module_bkp.py -------------------------------------------------------------------------------- /animatediff/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/models/resnet.py -------------------------------------------------------------------------------- /animatediff/models/sparse_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/models/sparse_controlnet.py -------------------------------------------------------------------------------- /animatediff/models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/models/unet.py -------------------------------------------------------------------------------- /animatediff/models/unet_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/models/unet_blocks.py -------------------------------------------------------------------------------- /animatediff/pipelines/pipeline_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/pipelines/pipeline_animation.py -------------------------------------------------------------------------------- /animatediff/utils/convert_from_ckpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/utils/convert_from_ckpt.py -------------------------------------------------------------------------------- /animatediff/utils/convert_lora_safetensor_to_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/utils/convert_lora_safetensor_to_diffusers.py -------------------------------------------------------------------------------- /animatediff/utils/convert_original_stable_diffusion_to_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/utils/convert_original_stable_diffusion_to_diffusers.py -------------------------------------------------------------------------------- /animatediff/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/animatediff/utils/util.py -------------------------------------------------------------------------------- /demo/ComfyUI_ID_Animator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/demo/ComfyUI_ID_Animator.gif -------------------------------------------------------------------------------- /demo/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/demo/example.json -------------------------------------------------------------------------------- /demo/lecun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/demo/lecun.png -------------------------------------------------------------------------------- /faceadapter/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/faceadapter/attention_processor.py -------------------------------------------------------------------------------- /faceadapter/face_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/faceadapter/face_adapter.py -------------------------------------------------------------------------------- /faceadapter/init.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /faceadapter/resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/faceadapter/resampler.py -------------------------------------------------------------------------------- /faceadapter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/faceadapter/utils.py -------------------------------------------------------------------------------- /if miss module check this requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/if miss module check this requirements.txt -------------------------------------------------------------------------------- /inference-v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/inference-v2.yaml -------------------------------------------------------------------------------- /models/adapter/put adapter file here: -------------------------------------------------------------------------------- 1 | put adapter file here 2 | -------------------------------------------------------------------------------- /models/animatediff_models/put animatediff_models here: -------------------------------------------------------------------------------- 1 | put animatediff_models here 2 | -------------------------------------------------------------------------------- /models/image_encoder/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/models/image_encoder/config.json -------------------------------------------------------------------------------- /models/image_encoder/put image_encoder model here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /models/text_encoder/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/models/text_encoder/config.json -------------------------------------------------------------------------------- /models/text_encoder/put text_encoder model here: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smthemex/ComfyUI_ID_Animator/HEAD/pyproject.toml --------------------------------------------------------------------------------