diff options
author | DepFA <35278260+dfaker@users.noreply.github.com> | 2022-10-08 16:50:01 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-08 17:38:35 +0000 |
commit | 15c4278f1a18b8104e135dd82690d10cff39a2e7 (patch) | |
tree | 5d1f4694027087e0854c0cf7a7688defc4368eae /modules | |
parent | 3061cdb7b610d4ba7f1ea695d9d6364b591e5bc7 (diff) | |
download | stable-diffusion-webui-gfx803-15c4278f1a18b8104e135dd82690d10cff39a2e7.tar.gz stable-diffusion-webui-gfx803-15c4278f1a18b8104e135dd82690d10cff39a2e7.tar.bz2 stable-diffusion-webui-gfx803-15c4278f1a18b8104e135dd82690d10cff39a2e7.zip |
TI preprocess wording
I had to check the code to work out what splitting was 🤷🏿
Diffstat (limited to 'modules')
-rw-r--r-- | modules/ui.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/ui.py b/modules/ui.py index ffd75f6a..d52d74c6 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -980,9 +980,9 @@ def create_ui(wrap_gradio_gpu_call): process_dst = gr.Textbox(label='Destination directory')
with gr.Row():
- process_flip = gr.Checkbox(label='Flip')
- process_split = gr.Checkbox(label='Split into two')
- process_caption = gr.Checkbox(label='Add caption')
+ process_flip = gr.Checkbox(label='Create flipped copies')
+ process_split = gr.Checkbox(label='Split oversized images into two')
+ process_caption = gr.Checkbox(label='Use CLIP caption as filename')
with gr.Row():
with gr.Column(scale=3):
|