Update README.md
Browse files
README.md
CHANGED
@@ -26,8 +26,8 @@ pipe = DiffusionPipeline.from_pretrained("yandex/stable-diffusion-2-1-alchemist"
|
|
26 |
pipe = pipe.to("cuda")
|
27 |
image = pipe(
|
28 |
"a man standing under a tree",
|
29 |
-
num_inference_steps=
|
30 |
-
guidance_scale=
|
31 |
).images[0]
|
32 |
image.save("man.png")
|
33 |
```
|
|
|
26 |
pipe = pipe.to("cuda")
|
27 |
image = pipe(
|
28 |
"a man standing under a tree",
|
29 |
+
num_inference_steps=50,
|
30 |
+
guidance_scale=7.5,
|
31 |
).images[0]
|
32 |
image.save("man.png")
|
33 |
```
|