├── .gitignore ├── InstantCharacter ├── models │ ├── attn_processor.py │ ├── norm_layer.py │ ├── resampler.py │ └── utils.py └── pipeline.py ├── LICENSE ├── README.md ├── __init__.py ├── assets └── show.jpg ├── nodes └── comfy_nodes.py ├── requirements.txt └── workflow ├── InstantCharacter.json └── InstantCharacterFromLocal.json /.gitignore: -------------------------------------------------------------------------------- 1 | dev_notes 2 | pushgit.bat 3 | __pycache__ -------------------------------------------------------------------------------- /InstantCharacter/models/attn_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/InstantCharacter/models/attn_processor.py -------------------------------------------------------------------------------- /InstantCharacter/models/norm_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/InstantCharacter/models/norm_layer.py -------------------------------------------------------------------------------- /InstantCharacter/models/resampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/InstantCharacter/models/resampler.py -------------------------------------------------------------------------------- /InstantCharacter/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/InstantCharacter/models/utils.py -------------------------------------------------------------------------------- /InstantCharacter/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/InstantCharacter/pipeline.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/show.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/assets/show.jpg -------------------------------------------------------------------------------- /nodes/comfy_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/nodes/comfy_nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/requirements.txt -------------------------------------------------------------------------------- /workflow/InstantCharacter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/workflow/InstantCharacter.json -------------------------------------------------------------------------------- /workflow/InstantCharacterFromLocal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-InstantCharacter/HEAD/workflow/InstantCharacterFromLocal.json --------------------------------------------------------------------------------