Fix default guidance scale
#3
by sippycoder - opened
README.md
CHANGED
|
@@ -110,7 +110,7 @@ image = pipe(
|
|
| 110 |
width=width,
|
| 111 |
height=height,
|
| 112 |
num_inference_steps=50,
|
| 113 |
-
guidance_scale=
|
| 114 |
generator=torch.Generator(device="cuda").manual_seed(42),
|
| 115 |
).images[0]
|
| 116 |
|
|
|
|
| 110 |
width=width,
|
| 111 |
height=height,
|
| 112 |
num_inference_steps=50,
|
| 113 |
+
guidance_scale=4.0,
|
| 114 |
generator=torch.Generator(device="cuda").manual_seed(42),
|
| 115 |
).images[0]
|
| 116 |
|