Update README.md
Browse files
README.md
CHANGED
|
@@ -24,9 +24,9 @@ from diffusers import StableDiffusion3Pipeline
|
|
| 24 |
pipe = StableDiffusion3Pipeline.from_pretrained("yandex/stable-diffusion-3.5-medium-alchemist", torch_dtype=torch.bfloat16)
|
| 25 |
pipe = pipe.to("cuda")
|
| 26 |
image = pipe(
|
| 27 |
-
"
|
| 28 |
num_inference_steps=40,
|
| 29 |
guidance_scale=4.5,
|
| 30 |
).images[0]
|
| 31 |
-
image.save("
|
| 32 |
```
|
|
|
|
| 24 |
pipe = StableDiffusion3Pipeline.from_pretrained("yandex/stable-diffusion-3.5-medium-alchemist", torch_dtype=torch.bfloat16)
|
| 25 |
pipe = pipe.to("cuda")
|
| 26 |
image = pipe(
|
| 27 |
+
"a man standing under a tree",
|
| 28 |
num_inference_steps=40,
|
| 29 |
guidance_scale=4.5,
|
| 30 |
).images[0]
|
| 31 |
+
image.save("man.png")
|
| 32 |
```
|