aboutsummaryrefslogtreecommitdiffstats
path: root/modules/ui.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-09-28 13:19:47 +0000
committerGitHub <noreply@github.com>2022-09-28 13:19:47 +0000
commite22ea454a273b3a8a807a5acb2e6f0d0d41c9aa7 (patch)
tree0c131db0e2f3eba171612646a4cf0ffd4a45de08 /modules/ui.py
parent5eb9d1aeac8dcfb2073f57821c765a339ccde7f6 (diff)
parent228a2f30e7f8ae1a752c68ac189e9ca6bb4e29f6 (diff)
downloadstable-diffusion-webui-gfx803-e22ea454a273b3a8a807a5acb2e6f0d0d41c9aa7.tar.gz
stable-diffusion-webui-gfx803-e22ea454a273b3a8a807a5acb2e6f0d0d41c9aa7.tar.bz2
stable-diffusion-webui-gfx803-e22ea454a273b3a8a807a5acb2e6f0d0d41c9aa7.zip
Merge pull request #1222 from bmaltais/inverse-sigmoid-interpolation
(feat): Checkpoint merge using Inverse sigmoid interpolation
Diffstat (limited to 'modules/ui.py')
-rw-r--r--modules/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py
index 7db8edbd..f5d76613 100644
--- a/modules/ui.py
+++ b/modules/ui.py
@@ -864,7 +864,7 @@ def create_ui(txt2img, img2img, run_extras, run_pnginfo, run_modelmerger):
primary_model_name = gr.Dropdown(ckpt_name_list, elem_id="modelmerger_primary_model_name", label="Primary Model Name")
secondary_model_name = gr.Dropdown(ckpt_name_list, elem_id="modelmerger_secondary_model_name", label="Secondary Model Name")
interp_amount = gr.Slider(minimum=0.0, maximum=1.0, step=0.05, label='Interpolation Amount', value=0.3)
- interp_method = gr.Radio(choices=["Weighted Sum", "Sigmoid"], value="Weighted Sum", label="Interpolation Method")
+ interp_method = gr.Radio(choices=["Weighted Sum", "Sigmoid", "Inverse Sigmoid"], value="Weighted Sum", label="Interpolation Method")
submit = gr.Button(elem_id="modelmerger_merge", label="Merge", variant='primary')
with gr.Column(variant='panel'):