Update README.md
Browse files
README.md
CHANGED
@@ -21,7 +21,6 @@ This repository is based on [Diffusers](https://huggingface.co/docs/diffusers/in
|
|
21 |
## Quickstart
|
22 |
|
23 |
Loading ControlNet and Custom Piepline:
|
24 |
-
|
25 |
```
|
26 |
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline
|
27 |
|
@@ -42,7 +41,6 @@ pipe = pipe.to(device)
|
|
42 |
```
|
43 |
|
44 |
Prepare Conditional Images
|
45 |
-
|
46 |
```
|
47 |
from controlnet_aux import OpenposeDetector
|
48 |
|
@@ -54,7 +52,6 @@ openpose_image = openpose(original_image)
|
|
54 |
```
|
55 |
|
56 |
Conditional Generation with ControlNet and PAG:
|
57 |
-
|
58 |
```
|
59 |
output = pipe(
|
60 |
"",
|
|
|
21 |
## Quickstart
|
22 |
|
23 |
Loading ControlNet and Custom Piepline:
|
|
|
24 |
```
|
25 |
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline
|
26 |
|
|
|
41 |
```
|
42 |
|
43 |
Prepare Conditional Images
|
|
|
44 |
```
|
45 |
from controlnet_aux import OpenposeDetector
|
46 |
|
|
|
52 |
```
|
53 |
|
54 |
Conditional Generation with ControlNet and PAG:
|
|
|
55 |
```
|
56 |
output = pipe(
|
57 |
"",
|