diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-09 19:52:23 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-09 19:52:23 +0000 |
commit | 43bb5190fc9e7ae479a5dc6640be202c9a71e464 (patch) | |
tree | f3ca31d6243d07f81c7583f8e3e6a9202227f86e /modules/ui.py | |
parent | bdd57ad073041a5051a7a0745c34e53bd9b50cd0 (diff) | |
download | stable-diffusion-webui-gfx803-43bb5190fc9e7ae479a5dc6640be202c9a71e464.tar.gz stable-diffusion-webui-gfx803-43bb5190fc9e7ae479a5dc6640be202c9a71e464.tar.bz2 stable-diffusion-webui-gfx803-43bb5190fc9e7ae479a5dc6640be202c9a71e464.zip |
remove/simplify some changes from #6481
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 9d6b141e..ddfe1b1a 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1348,7 +1348,7 @@ def create_ui(): template_file = gr.Textbox(label='Prompt template file', value=os.path.join(script_path, "textual_inversion_templates", "style_filewords.txt"), elem_id="train_template_file")
training_width = gr.Slider(minimum=64, maximum=2048, step=8, label="Width", value=512, elem_id="train_training_width")
training_height = gr.Slider(minimum=64, maximum=2048, step=8, label="Height", value=512, elem_id="train_training_height")
- varsize = gr.Checkbox(label="Ignore dimension settings and do not resize images", value=False, elem_id="train_varsize")
+ varsize = gr.Checkbox(label="Do not resize images", value=False, elem_id="train_varsize")
steps = gr.Number(label='Max steps', value=100000, precision=0, elem_id="train_steps")
with FormRow():
|