Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudotensor committed Sep 19, 2024
1 parent a913b45 commit bc7bc40
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "c2fb6c3b4bcd26974e791dd58b0f361bd4630c7c"
__version__ = "a913b4515c10fac40329799cb63de7f63c6dd124"
8 changes: 4 additions & 4 deletions src/vision/stable_diffusion_xl.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,17 +96,17 @@ def make_image(prompt,
height=image_size[0],
width=image_size[1],
num_inference_steps=image_num_inference_steps,
guidance_scale=image_guidance_scale
** extra1,
guidance_scale=image_guidance_scale,
**extra1,
).images
if refiner:
image = refiner(
prompt=prompt,
height=image_size[0],
width=image_size[1],
num_inference_steps=image_num_inference_steps,
guidance_scale=image_guidance_scale
** extra2,
guidance_scale=image_guidance_scale,
**extra2,
image=image,
).images[0]

Expand Down

0 comments on commit bc7bc40

Please sign in to comment.