How to use lllyasviel/sd-controlnet-normal with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("lllyasviel/sd-controlnet-normal") pipe = StableDiffusionControlNetPipeline.from_pretrained( "runwayml/stable-diffusion-v1-5", controlnet=controlnet )
Would we be able to get float16 versions of these models as well for use with the fp16 SD 1.5 model?
Β· Sign up or log in to comment