Image-to-Image
Diffusers
StableDiffusionControlNetPipeline
stable-diffusion
stable-diffusion-diffusers
controlnet
jax-diffusers-event
Instructions to use vllab/controlnet-hands with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use vllab/controlnet-hands with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("vllab/controlnet-hands") pipe = StableDiffusionControlNetPipeline.from_pretrained( "runwayml/stable-diffusion-v1-5", controlnet=controlnet ) - Notebooks
- Google Colab
- Kaggle
How to create the conditioning image?
#2
by ghpkishore - opened
Hi I wanted to know how you went about creating the conditioning image and the script for it. I am trying to convert your code to .pth and use in A1111 but an unable to figure out how to create the conditional images.