diff options
author | TinkTheBoush <TinkTheBoush@github.com> | 2022-11-01 14:29:12 +0000 |
---|---|---|
committer | TinkTheBoush <TinkTheBoush@github.com> | 2022-11-01 14:29:12 +0000 |
commit | 467cae167a3066ffa2b2a5e6f16dd42642219aba (patch) | |
tree | 91441ba33d4d03b546d942a335d6a3d08d4e90a0 /modules/ui.py | |
parent | c28de154b0ffb143019387f9fc169953347a60f4 (diff) | |
download | stable-diffusion-webui-gfx803-467cae167a3066ffa2b2a5e6f16dd42642219aba.tar.gz stable-diffusion-webui-gfx803-467cae167a3066ffa2b2a5e6f16dd42642219aba.tar.bz2 stable-diffusion-webui-gfx803-467cae167a3066ffa2b2a5e6f16dd42642219aba.zip |
append_tag_shuffle
Diffstat (limited to 'modules/ui.py')
-rw-r--r-- | modules/ui.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/ui.py b/modules/ui.py index 2c15abb7..ad383979 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1267,6 +1267,7 @@ def create_ui(wrap_gradio_gpu_call): save_embedding_every = gr.Number(label='Save a copy of embedding to log directory every N steps, 0 to disable', value=500, precision=0)
save_image_with_stored_embedding = gr.Checkbox(label='Save images with embedding in PNG chunks', value=True)
preview_from_txt2img = gr.Checkbox(label='Read parameters (prompt, etc...) from txt2img tab when making previews', value=False)
+ shuffle_tags = gr.Checkbox(label='Shuffleing tags by "," when create texts', value=True)
with gr.Row():
interrupt_training = gr.Button(value="Interrupt")
@@ -1361,6 +1362,7 @@ def create_ui(wrap_gradio_gpu_call): template_file,
save_image_with_stored_embedding,
preview_from_txt2img,
+ shuffle_tags,
*txt2img_preview_params,
],
outputs=[
@@ -1385,6 +1387,7 @@ def create_ui(wrap_gradio_gpu_call): save_embedding_every,
template_file,
preview_from_txt2img,
+ shuffle_tags,
*txt2img_preview_params,
],
outputs=[
|