ControlNet has proven to be a great tool for guiding StableDiffusion models with image-based hints! But what about changing only a part of the image based on that hint?
🔮 The initial set of models of ControlNet were not trained to work with StableDiffusion inpainting backbone, but it turns out that the results can be pretty good!
In this repository, you will find a basic example notebook that shows how this can work. The key trick is to use the right value of the parameter controlnet_conditioning_scale
- while value of 1.0
often works well, it is sometimes beneficial to bring it down a bit when the controlling image does not fit the selected text prompt very well.
Check out the open-source web demo on HuggingFace built on top of this tool:
This code is currently compatible with
diffusers==0.14.0
. An upgrade to the latest version can be expected in the near future (currently, some breaking changes are present in0.15.0
that should ideally be fixed on the side of the diffusers interface).
Here's an example of how this new pipeline (StableDiffusionControlNetInpaintPipeline
) is used with the core backbone of "runwayml/stable-diffusion-inpainting"
:
# load control net and stable diffusion v1-5
controlnet = ControlNetModel.from_pretrained("lllyasviel/sd-controlnet-canny", torch_dtype=torch.float16)
pipe = StableDiffusionControlNetInpaintPipeline.from_pretrained(
"runwayml/stable-diffusion-inpainting", controlnet=controlnet, torch_dtype=torch.float16
)
# speed up diffusion process with faster scheduler and memory optimization
pipe.scheduler = UniPCMultistepScheduler.from_config(pipe.scheduler.config)
# remove following line if xformers is not installed
pipe.enable_xformers_memory_efficient_attention()
pipe.to('cuda')
# generate image
generator = torch.manual_seed(0)
new_image = pipe(
text_prompt,
num_inference_steps=20,
generator=generator,
image=image,
control_image=canny_image,
mask_image=mask_image
).images[0]
(Full example how to get images and run the results is available in the notebook!)
All results below have been generated using the ControlNet-with-Inpaint-Demo.ipynb
notebook.
Let's start with turning a dog into a red panda!
Prompt: "a red panda sitting on a bench"
Prompt: "a red panda sitting on a bench"
Prompt: "a red panda sitting on a bench"
Prompt: "a red panda sitting on a bench"
Prompt: "a red panda sitting on a bench"
For the remaining modalities, the panda example doesn't really make much sense, so we use different images and prompts to illustrate the capability!
Prompt: "an image of a room with a city skyline view"
Prompt: "a man in a knight armor"
Prompt: "a pink eerie scary house"
Let's see how tuning the controlnet_conditioning_scale
works out for a more challenging example of turning the dog into a cheeseburger!
In this case, we demand a large semantic leap and that requires a more subtle guide from the control image!
If you want to learn more about the process of denoising diffusion for images, check out the open-source course DiffusionFastForward with colab notebooks where networks are trained from scratch on high-resolution data! 🔰
There is a related excellent repository of ControlNet-for-Any-Basemodel that, among many other things, also shows similar examples of using ControlNet for inpainting. However, that definition of the pipeline is quite different, but most importantly, does not allow for controlling the controlnet_conditioning_scale
as an input argument.
There are other differences, such as the fact that in this implementation, only one pipeline needs to be instantiated (as opposed to two in the other one), but the key motivation for publishing this repository is to provide a space solely focused on the application of ControlNet for inpainting.