├── LICENSE ├── README.md ├── assets ├── CuteCat.jpeg ├── Dog.png └── Lotus.jpeg ├── bash_scripts ├── canny_controlnet_inference.sh ├── controlnet_tile_inference.sh ├── depth_controlnet_inference.sh └── lora_inference.sh ├── inference.py ├── model ├── __pycache__ │ ├── adapter.cpython-310.pyc │ └── unet_adapter.cpython-310.pyc ├── adapter.py ├── unet_adapter.py └── utils.py ├── pipeline ├── __pycache__ │ ├── pipeline_sd_xl_adapter.cpython-310.pyc │ ├── pipeline_sd_xl_adapter_controlnet.cpython-310.pyc │ └── pipeline_sd_xl_adapter_controlnet_img2img.cpython-310.pyc ├── 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 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/README.md -------------------------------------------------------------------------------- /assets/CuteCat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/assets/CuteCat.jpeg -------------------------------------------------------------------------------- /assets/Dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/assets/Dog.png -------------------------------------------------------------------------------- /assets/Lotus.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/assets/Lotus.jpeg -------------------------------------------------------------------------------- /bash_scripts/canny_controlnet_inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/bash_scripts/canny_controlnet_inference.sh -------------------------------------------------------------------------------- /bash_scripts/controlnet_tile_inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/bash_scripts/controlnet_tile_inference.sh -------------------------------------------------------------------------------- /bash_scripts/depth_controlnet_inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/bash_scripts/depth_controlnet_inference.sh -------------------------------------------------------------------------------- /bash_scripts/lora_inference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/bash_scripts/lora_inference.sh -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/inference.py -------------------------------------------------------------------------------- /model/__pycache__/adapter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/model/__pycache__/adapter.cpython-310.pyc -------------------------------------------------------------------------------- /model/__pycache__/unet_adapter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/model/__pycache__/unet_adapter.cpython-310.pyc -------------------------------------------------------------------------------- /model/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/model/adapter.py -------------------------------------------------------------------------------- /model/unet_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/model/unet_adapter.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/model/utils.py -------------------------------------------------------------------------------- /pipeline/__pycache__/pipeline_sd_xl_adapter.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/pipeline/__pycache__/pipeline_sd_xl_adapter.cpython-310.pyc -------------------------------------------------------------------------------- /pipeline/__pycache__/pipeline_sd_xl_adapter_controlnet.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/pipeline/__pycache__/pipeline_sd_xl_adapter_controlnet.cpython-310.pyc -------------------------------------------------------------------------------- /pipeline/__pycache__/pipeline_sd_xl_adapter_controlnet_img2img.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/pipeline/__pycache__/pipeline_sd_xl_adapter_controlnet_img2img.cpython-310.pyc -------------------------------------------------------------------------------- /pipeline/pipeline_sd_xl_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/pipeline/pipeline_sd_xl_adapter.py -------------------------------------------------------------------------------- /pipeline/pipeline_sd_xl_adapter_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/pipeline/pipeline_sd_xl_adapter_controlnet.py -------------------------------------------------------------------------------- /pipeline/pipeline_sd_xl_adapter_controlnet_img2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/pipeline/pipeline_sd_xl_adapter_controlnet_img2img.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/__pycache__/inference_controlnet.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/scripts/__pycache__/inference_controlnet.cpython-310.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/inference_ctrlnet_tile.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/scripts/__pycache__/inference_ctrlnet_tile.cpython-310.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/inference_lora.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/scripts/__pycache__/inference_lora.cpython-310.pyc -------------------------------------------------------------------------------- /scripts/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/scripts/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /scripts/inference_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/scripts/inference_controlnet.py -------------------------------------------------------------------------------- /scripts/inference_ctrlnet_tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/scripts/inference_ctrlnet_tile.py -------------------------------------------------------------------------------- /scripts/inference_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/scripts/inference_lora.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/showlab/X-Adapter/HEAD/scripts/utils.py --------------------------------------------------------------------------------