Instructions to use lllyasviel/sd-controlnet-depth with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use lllyasviel/sd-controlnet-depth with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("lllyasviel/sd-controlnet-depth") pipe = StableDiffusionControlNetPipeline.from_pretrained( "runwayml/stable-diffusion-v1-5", controlnet=controlnet ) - Notebooks
- Google Colab
- Kaggle
Update README.md
#4
by ange949 - opened
README.md
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
---
|
| 2 |
license: openrail
|
| 3 |
-
base_model:
|
|
|
|
| 4 |
tags:
|
| 5 |
- art
|
| 6 |
- controlnet
|
|
|
|
| 1 |
---
|
| 2 |
license: openrail
|
| 3 |
+
base_model:
|
| 4 |
+
- stable-diffusion-v1-5/stable-diffusion-v1-5
|
| 5 |
tags:
|
| 6 |
- art
|
| 7 |
- controlnet
|