Update README.md
Browse files
README.md
CHANGED
@@ -55,6 +55,10 @@ pipe = PlaygroundV2dot5Pipeline.from_pretrained(
|
|
55 |
)
|
56 |
pipe.to("cuda")
|
57 |
|
|
|
|
|
|
|
|
|
58 |
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
|
59 |
image = pipe(prompt=prompt, guidance_scale=7.0).images[0]
|
60 |
```
|
|
|
55 |
)
|
56 |
pipe.to("cuda")
|
57 |
|
58 |
+
# # Optional: use DPM++ 2M Karras scheduler for improved quality on small details
|
59 |
+
# from diffusers import DPMSolverMultistepScheduler
|
60 |
+
# pipe.scheduler = DPMSolverMultistepScheduler(**common_config, use_karras_sigmas=True)
|
61 |
+
|
62 |
prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
|
63 |
image = pipe(prompt=prompt, guidance_scale=7.0).images[0]
|
64 |
```
|