Commit
·
a2c8268
1
Parent(s):
cd6e01b
Update README.md
Browse files
README.md
CHANGED
@@ -78,9 +78,9 @@ scheduler = EulerAncestralDiscreteScheduler.from_pretrained(model_id, subfolder=
|
|
78 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, scheduler=scheduler, torch_dtype=torch.float16)
|
79 |
pipe = pipe.to("cuda")
|
80 |
|
81 |
-
prompt = "monochrome, grayscale,
|
82 |
images = pipe(prompt, num_inference_steps=30, height=512, width=768).images
|
83 |
-
images[0].save("
|
84 |
|
85 |
```
|
86 |
|
|
|
78 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, scheduler=scheduler, torch_dtype=torch.float16)
|
79 |
pipe = pipe.to("cuda")
|
80 |
|
81 |
+
prompt = "monochrome, grayscale, tower"
|
82 |
images = pipe(prompt, num_inference_steps=30, height=512, width=768).images
|
83 |
+
images[0].save("tower.png")
|
84 |
|
85 |
```
|
86 |
|