TheRafal commited on
Commit
f1867d5
1 Parent(s): 4808f0a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -69,7 +69,7 @@ pipe = StableDiffusionPipeline.from_pretrained(
69
 
70
  prompt = "1girl, monika \(doki doki literature club\)"
71
  with autocast("cuda"):
72
- image = pipe(prompt, guidance_scale=6)["sample"][0]
73
 
74
  image.save("test.png")
75
  ```
 
69
 
70
  prompt = "1girl, monika \(doki doki literature club\)"
71
  with autocast("cuda"):
72
+ image = pipe(prompt, guidance_scale=7)["images"][0]
73
 
74
  image.save("test.png")
75
  ```