In the original ControlNet pipeline, we can pass a list of controlnet models like this
self.ptxt = StableDiffusionControlNetPipeline.from_pretrained(
"runwayml/stable-diffusion-v1-5",
safety_checker=None,
requires_safety_checker=False,
controlnet=[
ControlNetModel.from_pretrained("lllyasviel/sd-controlnet-canny", torch_dtype=torch.float16),
ControlNetModel.from_pretrained("lllyasviel/sd-controlnet-depth", torch_dtype=torch.float16)
],
torch_dtype=torch.float16).to("cuda")
Is this supported in this pipeline?
Cheers
In the original ControlNet pipeline, we can pass a list of controlnet models like this
Is this supported in this pipeline?
Cheers