Replies: 1 comment 7 replies
-
To save the inpaint resolution and set it to 1024x1024, you need to adjust the values of w.ad_inpaint_width = gr.Slider(
label="inpaint width" + suffix(n),
minimum=64,
maximum=2048,
step=4,
value=1024, # Set the width to 1024
visible=True,
elem_id=eid("ad_inpaint_width"),
)
w.ad_inpaint_height = gr.Slider(
label="inpaint height" + suffix(n),
minimum=64,
maximum=2048,
step=4,
value=1024, # Set the height to 1024
visible=True,
elem_id=eid("ad_inpaint_height"),
) This will set the inpaint resolution to 1024x1024 [1]. |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
title
Beta Was this translation helpful? Give feedback.
All reactions