diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-05 00:25:37 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-05 00:25:37 +0000 |
commit | a8a58dbac7b205ae90664c3b249d60e4baa2855c (patch) | |
tree | 68d8912439be31cb6445250319d6133050cbba79 /modules/ui.py | |
parent | f91d0c3d19ac2b849cd15a519f711f9281e782cd (diff) | |
download | stable-diffusion-webui-gfx803-a8a58dbac7b205ae90664c3b249d60e4baa2855c.tar.gz stable-diffusion-webui-gfx803-a8a58dbac7b205ae90664c3b249d60e4baa2855c.tar.bz2 stable-diffusion-webui-gfx803-a8a58dbac7b205ae90664c3b249d60e4baa2855c.zip |
re-integrated tiling option as a UI element
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/ui.py b/modules/ui.py index 4119369e..a2f1124e 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -155,6 +155,7 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo): with gr.Row():
use_gfpgan = gr.Checkbox(label='GFPGAN', value=False, visible=gfpgan.have_gfpgan)
+ tiling = gr.Checkbox(label='Tiling', value=False)
with gr.Row():
batch_count = gr.Slider(minimum=1, maximum=cmd_opts.max_batch_count, step=1, label='Batch count', value=1)
@@ -195,6 +196,7 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo): steps,
sampler_index,
use_gfpgan,
+ tiling,
batch_count,
batch_size,
cfg_scale,
@@ -256,6 +258,7 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo): with gr.Row():
use_gfpgan = gr.Checkbox(label='GFPGAN', value=False, visible=gfpgan.have_gfpgan)
+ tiling = gr.Checkbox(label='Tiling', value=False)
sd_upscale_overlap = gr.Slider(minimum=0, maximum=256, step=16, label='Tile overlap', value=64, visible=False)
with gr.Row():
@@ -339,6 +342,7 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo): mask_blur,
inpainting_fill,
use_gfpgan,
+ tiling,
switch_mode,
batch_count,
batch_size,
|