Update README.md
Browse files
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=
|
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 |
```
|