How to use lllyasviel/sd-controlnet-scribble with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("lllyasviel/sd-controlnet-scribble") pipe = StableDiffusionControlNetPipeline.from_pretrained( "runwayml/stable-diffusion-v1-5", controlnet=controlnet )
Is it possible to turn on the guess mode by tuning some parameters?How can I make it?thx
· Sign up or log in to comment