Instructions to use lllyasviel/sd-controlnet-openpose with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use lllyasviel/sd-controlnet-openpose with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline controlnet = ControlNetModel.from_pretrained("lllyasviel/sd-controlnet-openpose") pipe = StableDiffusionControlNetPipeline.from_pretrained( "runwayml/stable-diffusion-v1-5", controlnet=controlnet ) - Notebooks
- Google Colab
- Kaggle
Commit ·
7a2c385
1
Parent(s): e19fb53
Update README.md
Browse files
README.md
CHANGED
|
@@ -82,7 +82,7 @@ $ pip install controlnet_aux
|
|
| 82 |
2. Let's install `diffusers` and related packages:
|
| 83 |
|
| 84 |
```
|
| 85 |
-
$ pip install diffusers transformers
|
| 86 |
```
|
| 87 |
|
| 88 |
3. Run code:
|
|
|
|
| 82 |
2. Let's install `diffusers` and related packages:
|
| 83 |
|
| 84 |
```
|
| 85 |
+
$ pip install diffusers transformers accelerate
|
| 86 |
```
|
| 87 |
|
| 88 |
3. Run code:
|