├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── __init__.py ├── doc └── image.png ├── example └── workflow_base.png ├── nodes ├── HairNode.py ├── __init__.py └── libs │ ├── __init__.py │ ├── configs │ └── sd15 │ │ ├── feature_extractor │ │ └── preprocessor_config.json │ │ ├── model_index.json │ │ ├── safety_checker │ │ └── config.json │ │ ├── scheduler │ │ └── scheduler_config.json │ │ ├── text_encoder │ │ └── config.json │ │ ├── tokenizer │ │ ├── merges.txt │ │ ├── special_tokens_map.json │ │ ├── tokenizer_config.json │ │ └── vocab.json │ │ ├── unet │ │ └── config.json │ │ ├── v1-inference.yaml │ │ └── vae │ │ └── config.json │ ├── ref_encoder │ ├── __init__.py │ ├── adapter.py │ ├── attention_processor.py │ ├── latent_controlnet.py │ ├── reference_control.py │ └── reference_unet.py │ └── utils │ ├── __init__.py │ ├── pipeline.py │ └── pipeline_cn.py └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/README_EN.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/__init__.py -------------------------------------------------------------------------------- /doc/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/doc/image.png -------------------------------------------------------------------------------- /example/workflow_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/example/workflow_base.png -------------------------------------------------------------------------------- /nodes/HairNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/HairNode.py -------------------------------------------------------------------------------- /nodes/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /nodes/libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/libs/configs/sd15/feature_extractor/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/configs/sd15/feature_extractor/preprocessor_config.json -------------------------------------------------------------------------------- /nodes/libs/configs/sd15/model_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/configs/sd15/model_index.json -------------------------------------------------------------------------------- /nodes/libs/configs/sd15/safety_checker/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/configs/sd15/safety_checker/config.json -------------------------------------------------------------------------------- /nodes/libs/configs/sd15/scheduler/scheduler_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/configs/sd15/scheduler/scheduler_config.json -------------------------------------------------------------------------------- /nodes/libs/configs/sd15/text_encoder/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/configs/sd15/text_encoder/config.json -------------------------------------------------------------------------------- /nodes/libs/configs/sd15/tokenizer/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/configs/sd15/tokenizer/merges.txt -------------------------------------------------------------------------------- /nodes/libs/configs/sd15/tokenizer/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/configs/sd15/tokenizer/special_tokens_map.json -------------------------------------------------------------------------------- /nodes/libs/configs/sd15/tokenizer/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/configs/sd15/tokenizer/tokenizer_config.json -------------------------------------------------------------------------------- /nodes/libs/configs/sd15/tokenizer/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/configs/sd15/tokenizer/vocab.json -------------------------------------------------------------------------------- /nodes/libs/configs/sd15/unet/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/configs/sd15/unet/config.json -------------------------------------------------------------------------------- /nodes/libs/configs/sd15/v1-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/configs/sd15/v1-inference.yaml -------------------------------------------------------------------------------- /nodes/libs/configs/sd15/vae/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/configs/sd15/vae/config.json -------------------------------------------------------------------------------- /nodes/libs/ref_encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/libs/ref_encoder/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/ref_encoder/adapter.py -------------------------------------------------------------------------------- /nodes/libs/ref_encoder/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/ref_encoder/attention_processor.py -------------------------------------------------------------------------------- /nodes/libs/ref_encoder/latent_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/ref_encoder/latent_controlnet.py -------------------------------------------------------------------------------- /nodes/libs/ref_encoder/reference_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/ref_encoder/reference_control.py -------------------------------------------------------------------------------- /nodes/libs/ref_encoder/reference_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/ref_encoder/reference_unet.py -------------------------------------------------------------------------------- /nodes/libs/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/libs/utils/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/utils/pipeline.py -------------------------------------------------------------------------------- /nodes/libs/utils/pipeline_cn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/nodes/libs/utils/pipeline_cn.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lldacing/ComfyUI_StableHair_ll/HEAD/pyproject.toml --------------------------------------------------------------------------------