alfredplpl commited on
Commit
a2c8268
1 Parent(s): cd6e01b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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, street, buildings"
82
  images = pipe(prompt, num_inference_steps=30, height=512, width=768).images
83
- images[0].save("girl.png")
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