Instructions to use thibaud/controlnet-sd21-depth-diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use thibaud/controlnet-sd21-depth-diffusers with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("thibaud/controlnet-sd21-depth-diffusers") pipe = StableDiffusionControlNetPipeline.from_pretrained( "fill-in-base-model", controlnet=controlnet ) - Notebooks
- Google Colab
- Kaggle
add pipeline_tag
#4
by radames - opened
README.md
CHANGED
|
@@ -7,6 +7,7 @@ tags:
|
|
| 7 |
- diffusers
|
| 8 |
- stable diffusion
|
| 9 |
- controlnet
|
|
|
|
| 10 |
---
|
| 11 |
Here's the first version of controlnet for stablediffusion 2.1 for diffusers
|
| 12 |
Trained on a subset of laion/laion-art
|
|
|
|
| 7 |
- diffusers
|
| 8 |
- stable diffusion
|
| 9 |
- controlnet
|
| 10 |
+
pipeline_tag: image-to-image
|
| 11 |
---
|
| 12 |
Here's the first version of controlnet for stablediffusion 2.1 for diffusers
|
| 13 |
Trained on a subset of laion/laion-art
|