-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Labels
enhancementNew feature or requestNew feature or request
Description
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
nbharaths
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request