diff options
author | Milly <milly.ca@gmail.com> | 2022-10-08 13:48:15 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-08 14:15:30 +0000 |
commit | 4f33289d0fc5aa3a197f4a4c926d03d44f0d597e (patch) | |
tree | 3f7579d777b79cbcc4efe22adad2b9f537d7d4fc /modules/ui.py | |
parent | 27032c47df9c07ac21dd5b89fa7dc247bb8705b6 (diff) | |
download | stable-diffusion-webui-gfx803-4f33289d0fc5aa3a197f4a4c926d03d44f0d597e.tar.gz stable-diffusion-webui-gfx803-4f33289d0fc5aa3a197f4a4c926d03d44f0d597e.tar.bz2 stable-diffusion-webui-gfx803-4f33289d0fc5aa3a197f4a4c926d03d44f0d597e.zip |
Fixed typo
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 e3e62fdd..ffd75f6a 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -946,7 +946,7 @@ def create_ui(wrap_gradio_gpu_call): custom_name = gr.Textbox(label="Custom Name (Optional)")
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", "Inverse Sigmoid"], value="Weighted Sum", label="Interpolation Method")
- save_as_half = gr.Checkbox(value=False, label="Safe as float16")
+ save_as_half = gr.Checkbox(value=False, label="Save as float16")
modelmerger_merge = gr.Button(elem_id="modelmerger_merge", label="Merge", variant='primary')
with gr.Column(variant='panel'):
|