patrickvonplaten commited on
Commit
6082a06
1 Parent(s): 2b181d1

Update README.md

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