hyoungwoncho
commited on
Commit
•
0a572ae
1
Parent(s):
fafd3b5
Update README.md
Browse files
README.md
CHANGED
@@ -20,7 +20,6 @@ This repository is based on [Diffusers](https://huggingface.co/docs/diffusers/in
|
|
20 |
## Quickstart
|
21 |
|
22 |
Loading Custom Piepline:
|
23 |
-
|
24 |
```
|
25 |
from diffusers import StableDiffusionPipeline
|
26 |
|
@@ -38,7 +37,6 @@ prompts = ["a corgi"]
|
|
38 |
```
|
39 |
|
40 |
Sampling with PAG:
|
41 |
-
|
42 |
```
|
43 |
output = pipe(
|
44 |
prompts,
|
@@ -52,7 +50,6 @@ output = pipe(
|
|
52 |
```
|
53 |
|
54 |
Sampling with PAG and CFG:
|
55 |
-
|
56 |
```
|
57 |
output = pipe(
|
58 |
prompts,
|
|
|
20 |
## Quickstart
|
21 |
|
22 |
Loading Custom Piepline:
|
|
|
23 |
```
|
24 |
from diffusers import StableDiffusionPipeline
|
25 |
|
|
|
37 |
```
|
38 |
|
39 |
Sampling with PAG:
|
|
|
40 |
```
|
41 |
output = pipe(
|
42 |
prompts,
|
|
|
50 |
```
|
51 |
|
52 |
Sampling with PAG and CFG:
|
|
|
53 |
```
|
54 |
output = pipe(
|
55 |
prompts,
|