diff options
author | victorca25 <victorca25@users.noreply.github.com> | 2022-10-30 11:52:50 +0000 |
---|---|---|
committer | victorca25 <victor@Victors-MBP.lan> | 2022-10-30 11:54:06 +0000 |
commit | c9bb33dd43dbb9479ff1b70351df14508c89ac60 (patch) | |
tree | f1d516669f810f26dc4206c0dea5bd7041224879 /modules/ui.py | |
parent | 17a2076f72562b428052ee3fc8c43d19c03ecd1e (diff) | |
download | stable-diffusion-webui-gfx803-c9bb33dd43dbb9479ff1b70351df14508c89ac60.tar.gz stable-diffusion-webui-gfx803-c9bb33dd43dbb9479ff1b70351df14508c89ac60.tar.bz2 stable-diffusion-webui-gfx803-c9bb33dd43dbb9479ff1b70351df14508c89ac60.zip |
add resrgan 8x, allow use 1x and up to 8x extra models, move BSRGAN model, add nearest
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py index 5055ca64..47610f5c 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1059,7 +1059,7 @@ def create_ui(wrap_gradio_gpu_call): with gr.Tabs(elem_id="extras_resize_mode"):
with gr.TabItem('Scale by'):
- upscaling_resize = gr.Slider(minimum=1.0, maximum=4.0, step=0.05, label="Resize", value=2)
+ upscaling_resize = gr.Slider(minimum=1.0, maximum=8.0, step=0.05, label="Resize", value=4)
with gr.TabItem('Scale to'):
with gr.Group():
with gr.Row():
|