sippycoder commited on
Commit
39232b2
·
verified ·
1 Parent(s): 4c5d673

Fix default guidance scale

Browse files

The model page has default guidance scale to 8.0 which is incorrect. This PR fixes that to 4.0.

Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -110,7 +110,7 @@ image = pipe(
110
  width=width,
111
  height=height,
112
  num_inference_steps=50,
113
- guidance_scale=8.0,
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