├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── assets ├── CuteCat.jpeg ├── Dog.png └── Lotus.jpeg ├── bash_scripts ├── canny_controlnet_inference.sh ├── controlnet_tile_inference.sh ├── depth_controlnet_inference.sh └── lora_inference.sh ├── configs ├── control_v11p_sd15.yaml ├── controlnet_sd_1_5.yaml ├── scheduler_config.json ├── sd_xl_base.yaml ├── sdxl_scheduler_config.json ├── sdxl_tokenizer2_config.json ├── sdxl_tokenizer_config.json ├── text_encoder_config.json ├── tokenizer_config.json └── v1-inference.yaml ├── inference.py ├── model ├── adapter.py ├── unet_adapter.py └── utils.py ├── nodes.py ├── pipeline ├── pipeline_sd_xl_adapter.py ├── pipeline_sd_xl_adapter_controlnet.py └── pipeline_sd_xl_adapter_controlnet_img2img.py ├── requirements.txt ├── scripts ├── __pycache__ │ ├── inference_controlnet.cpython-310.pyc │ ├── inference_ctrlnet_tile.cpython-310.pyc │ ├── inference_lora.cpython-310.pyc │ └── utils.cpython-310.pyc ├── inference_controlnet.py ├── inference_ctrlnet_tile.py ├── inference_lora.py └── utils.py ├── utils ├── __init__.py └── single_file_utils.py └── xadapter └── model ├── __init__.py ├── adapter.py ├── unet_adapter.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/CuteCat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/assets/CuteCat.jpeg -------------------------------------------------------------------------------- /assets/Dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/assets/Dog.png -------------------------------------------------------------------------------- /assets/Lotus.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/assets/Lotus.jpeg -------------------------------------------------------------------------------- /bash_scripts/canny_controlnet_inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/bash_scripts/canny_controlnet_inference.sh -------------------------------------------------------------------------------- /bash_scripts/controlnet_tile_inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/bash_scripts/controlnet_tile_inference.sh -------------------------------------------------------------------------------- /bash_scripts/depth_controlnet_inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/bash_scripts/depth_controlnet_inference.sh -------------------------------------------------------------------------------- /bash_scripts/lora_inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/bash_scripts/lora_inference.sh -------------------------------------------------------------------------------- /configs/control_v11p_sd15.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/configs/control_v11p_sd15.yaml -------------------------------------------------------------------------------- /configs/controlnet_sd_1_5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/configs/controlnet_sd_1_5.yaml -------------------------------------------------------------------------------- /configs/scheduler_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/configs/scheduler_config.json -------------------------------------------------------------------------------- /configs/sd_xl_base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/configs/sd_xl_base.yaml -------------------------------------------------------------------------------- /configs/sdxl_scheduler_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/configs/sdxl_scheduler_config.json -------------------------------------------------------------------------------- /configs/sdxl_tokenizer2_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/configs/sdxl_tokenizer2_config.json -------------------------------------------------------------------------------- /configs/sdxl_tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/configs/sdxl_tokenizer_config.json -------------------------------------------------------------------------------- /configs/text_encoder_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/configs/text_encoder_config.json -------------------------------------------------------------------------------- /configs/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/configs/tokenizer_config.json -------------------------------------------------------------------------------- /configs/v1-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/configs/v1-inference.yaml -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/inference.py -------------------------------------------------------------------------------- /model/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/model/adapter.py -------------------------------------------------------------------------------- /model/unet_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/model/unet_adapter.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/model/utils.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/nodes.py -------------------------------------------------------------------------------- /pipeline/pipeline_sd_xl_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/pipeline/pipeline_sd_xl_adapter.py -------------------------------------------------------------------------------- /pipeline/pipeline_sd_xl_adapter_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/pipeline/pipeline_sd_xl_adapter_controlnet.py -------------------------------------------------------------------------------- /pipeline/pipeline_sd_xl_adapter_controlnet_img2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/pipeline/pipeline_sd_xl_adapter_controlnet_img2img.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/__pycache__/inference_controlnet.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/scripts/__pycache__/inference_controlnet.cpython-310.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/inference_ctrlnet_tile.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/scripts/__pycache__/inference_ctrlnet_tile.cpython-310.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/inference_lora.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/scripts/__pycache__/inference_lora.cpython-310.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/scripts/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /scripts/inference_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/scripts/inference_controlnet.py -------------------------------------------------------------------------------- /scripts/inference_ctrlnet_tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/scripts/inference_ctrlnet_tile.py -------------------------------------------------------------------------------- /scripts/inference_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/scripts/inference_lora.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/single_file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/utils/single_file_utils.py -------------------------------------------------------------------------------- /xadapter/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xadapter/model/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/xadapter/model/adapter.py -------------------------------------------------------------------------------- /xadapter/model/unet_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/xadapter/model/unet_adapter.py -------------------------------------------------------------------------------- /xadapter/model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bushc7/ComfyUI-Diffusers-X-Adapter/HEAD/xadapter/model/utils.py --------------------------------------------------------------------------------