├── .github └── FUNDING.yml ├── INSTANTID WORKFLOWS ├── V1.0 InstantID + ArtGallery【Zho】.json ├── V1.0 InstantID_fromhub【Zho】.json ├── V1.0 InstantID_locally【Zho】.json ├── V2.0 InstantID_fromhub_pose_ref【Zho】.json ├── V2.0 InstantID_locally_pose_ref【Zho】.json └── V2.0 InstantID_pose_ref + ArtGallery 【Zho】.json ├── InstantIDNode.py ├── README.md ├── __init__.py ├── checkpoints └── put_models_here.txt ├── ip_adapter ├── attention_processor.py ├── resampler.py └── utils.py ├── models └── antelopev2 │ ├── 1k3d68.onnx │ ├── 2d106det.onnx │ ├── genderage.onnx │ ├── glintr100.onnx │ └── scrfd_10g_bnkps.onnx ├── pipeline_stable_diffusion_xl_instantid.py ├── requirements.txt └── style_template.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /INSTANTID WORKFLOWS/V1.0 InstantID + ArtGallery【Zho】.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/INSTANTID WORKFLOWS/V1.0 InstantID + ArtGallery【Zho】.json -------------------------------------------------------------------------------- /INSTANTID WORKFLOWS/V1.0 InstantID_fromhub【Zho】.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/INSTANTID WORKFLOWS/V1.0 InstantID_fromhub【Zho】.json -------------------------------------------------------------------------------- /INSTANTID WORKFLOWS/V1.0 InstantID_locally【Zho】.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/INSTANTID WORKFLOWS/V1.0 InstantID_locally【Zho】.json -------------------------------------------------------------------------------- /INSTANTID WORKFLOWS/V2.0 InstantID_fromhub_pose_ref【Zho】.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/INSTANTID WORKFLOWS/V2.0 InstantID_fromhub_pose_ref【Zho】.json -------------------------------------------------------------------------------- /INSTANTID WORKFLOWS/V2.0 InstantID_locally_pose_ref【Zho】.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/INSTANTID WORKFLOWS/V2.0 InstantID_locally_pose_ref【Zho】.json -------------------------------------------------------------------------------- /INSTANTID WORKFLOWS/V2.0 InstantID_pose_ref + ArtGallery 【Zho】.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/INSTANTID WORKFLOWS/V2.0 InstantID_pose_ref + ArtGallery 【Zho】.json -------------------------------------------------------------------------------- /InstantIDNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/InstantIDNode.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/__init__.py -------------------------------------------------------------------------------- /checkpoints/put_models_here.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ip_adapter/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/ip_adapter/attention_processor.py -------------------------------------------------------------------------------- /ip_adapter/resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/ip_adapter/resampler.py -------------------------------------------------------------------------------- /ip_adapter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/ip_adapter/utils.py -------------------------------------------------------------------------------- /models/antelopev2/1k3d68.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/models/antelopev2/1k3d68.onnx -------------------------------------------------------------------------------- /models/antelopev2/2d106det.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/models/antelopev2/2d106det.onnx -------------------------------------------------------------------------------- /models/antelopev2/genderage.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/models/antelopev2/genderage.onnx -------------------------------------------------------------------------------- /models/antelopev2/glintr100.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/models/antelopev2/glintr100.onnx -------------------------------------------------------------------------------- /models/antelopev2/scrfd_10g_bnkps.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/models/antelopev2/scrfd_10g_bnkps.onnx -------------------------------------------------------------------------------- /pipeline_stable_diffusion_xl_instantid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/pipeline_stable_diffusion_xl_instantid.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/requirements.txt -------------------------------------------------------------------------------- /style_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-InstantID/HEAD/style_template.py --------------------------------------------------------------------------------