diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-11-02 11:09:38 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-02 11:09:38 +0000 |
commit | e359268be9936db1c16c78adf544d622d33d1bfb (patch) | |
tree | 15d41dc2832ea849192eb46f22a26cb2255f76f9 /modules/ui.py | |
parent | bb21a4cb35986d95ec63ace48ce13b75a776f5a5 (diff) | |
parent | c9bb33dd43dbb9479ff1b70351df14508c89ac60 (diff) | |
download | stable-diffusion-webui-gfx803-e359268be9936db1c16c78adf544d622d33d1bfb.tar.gz stable-diffusion-webui-gfx803-e359268be9936db1c16c78adf544d622d33d1bfb.tar.bz2 stable-diffusion-webui-gfx803-e359268be9936db1c16c78adf544d622d33d1bfb.zip |
Merge pull request #3976 from victorca25/esrgan_fea
multiple trivial changes for "extras" models
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 784439ba..2609857e 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1054,7 +1054,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():
|