Is Multiple Conditioning in Stable Diffusion XL with ControlNet Possible? #7659
-
I am encountering issues when trying to use multiple conditionings with the Stable Diffusion XL model using ControlNet. I followed a guide and successfully ran ControlNet with depth and segmentation conditionings. The guide was based on stable-diffusion-v1-5, and I wanted to adapt this setup for Stable Diffusion XL. However, I'm facing errors indicating issues with handling multiple ControlNetModels for image conditioning. The errors are as follows:
I am wondering if Multiple Conditioning in Stable Diffusion XL with ControlNet is Possible. Here is the code snippet that resulted in the aforementioned errors, intending to use depth and segmentation as two conditions with Stable Diffusion XL:
Any insights or updates that could facilitate this use case would be greatly appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Could you see this documentation page for SD-XL with MultiControlNet? |
Beta Was this translation helpful? Give feedback.
you're probably using the wrong pipeline, you're using
StableDiffusionXLControlNetPipeline
when you should useStableDiffusionXLControlNetImg2ImgPipeline
to be able to pass theimage
andcontrol_image
args.