patrickvonplaten commited on
Commit
fdf6908
1 Parent(s): ff2292f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -42,7 +42,7 @@ pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1
42
  pipe.scheduler = LCMScheduler.from_config(sd_pipe.scheduler.config)
43
  pipe.to("cuda")
44
 
45
- prompt = "a red car standing on the side of the street"
46
 
47
  image = pipe(prompt, num_inference_steps=4, guidance_scale=8.0).images[0]
48
  ```
 
42
  pipe.scheduler = LCMScheduler.from_config(sd_pipe.scheduler.config)
43
  pipe.to("cuda")
44
 
45
+ prompt = "a close-up picture of an old man standing in the rain"
46
 
47
  image = pipe(prompt, num_inference_steps=4, guidance_scale=8.0).images[0]
48
  ```