Commit
•
4a8c75f
1
Parent(s):
bf14bd7
Add CLIP Skip to the diffusers code
Browse files
README.md
CHANGED
@@ -118,7 +118,8 @@ image = pipe(
|
|
118 |
width=1024,
|
119 |
height=1024,
|
120 |
guidance_scale=7,
|
121 |
-
num_inference_steps=50
|
|
|
122 |
).images[0]
|
123 |
|
124 |
|
|
|
118 |
width=1024,
|
119 |
height=1024,
|
120 |
guidance_scale=7,
|
121 |
+
num_inference_steps=50,
|
122 |
+
clip_skip=3
|
123 |
).images[0]
|
124 |
|
125 |
|