├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── example_workflows └── ref_workflow_example.json ├── models └── clip_fc.safetensors ├── modules └── ref_block.py ├── nodes ├── configure_ref_net_node.py ├── custom_ref_map_node.py ├── prepare_ref_latents.py ├── read_sampler_node.py ├── ref_bank_node.py ├── ref_model_pred_node.py ├── vision_clip_encode_node.py └── write_sampler_node.py ├── pyproject.toml └── utils ├── dilate_mask.py ├── module_utils.py ├── ref_constants.py └── sampler_utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/__init__.py -------------------------------------------------------------------------------- /example_workflows/ref_workflow_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/example_workflows/ref_workflow_example.json -------------------------------------------------------------------------------- /models/clip_fc.safetensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/models/clip_fc.safetensors -------------------------------------------------------------------------------- /modules/ref_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/modules/ref_block.py -------------------------------------------------------------------------------- /nodes/configure_ref_net_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/nodes/configure_ref_net_node.py -------------------------------------------------------------------------------- /nodes/custom_ref_map_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/nodes/custom_ref_map_node.py -------------------------------------------------------------------------------- /nodes/prepare_ref_latents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/nodes/prepare_ref_latents.py -------------------------------------------------------------------------------- /nodes/read_sampler_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/nodes/read_sampler_node.py -------------------------------------------------------------------------------- /nodes/ref_bank_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/nodes/ref_bank_node.py -------------------------------------------------------------------------------- /nodes/ref_model_pred_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/nodes/ref_model_pred_node.py -------------------------------------------------------------------------------- /nodes/vision_clip_encode_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/nodes/vision_clip_encode_node.py -------------------------------------------------------------------------------- /nodes/write_sampler_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/nodes/write_sampler_node.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/pyproject.toml -------------------------------------------------------------------------------- /utils/dilate_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/utils/dilate_mask.py -------------------------------------------------------------------------------- /utils/module_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/utils/module_utils.py -------------------------------------------------------------------------------- /utils/ref_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/utils/ref_constants.py -------------------------------------------------------------------------------- /utils/sampler_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logtd/ComfyUI-RefUNet/HEAD/utils/sampler_utils.py --------------------------------------------------------------------------------