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