Commit
•
22cf92b
1
Parent(s):
bf14bd7
Add CLIP Skip to the diffusers code (#7)
Browse files- Add CLIP Skip to the diffusers code (4a8c75f70dac8c9343b0fff1c5faaaab6048df91)
Co-authored-by: Apolinário from multimodal AI art <[email protected]>
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 |
|