Skip to content

Commit

Permalink
blur: more sensible maximum
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Dengler committed Nov 16, 2023
1 parent 66f7c4c commit 8d4d8e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/prompt_travel.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ def switch_genesis(genesis:str):
label="SSIM min threshold", value=75, minimum=0, maximum=100, step=1
)
ssim_blur = gr.Slider(
label="SSIM blur (helps with images featuring many small changing details)", value=0, minimum=0, maximum=100, step=1
label="SSIM blur (helps with images featuring many small changing details)", value=0, minimum=0, maximum=20, step=1
)

return [
Expand Down

0 comments on commit 8d4d8e8

Please sign in to comment.