diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-11-27 11:19:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-27 11:19:32 +0000 |
commit | a89d7f4f389da001cd0bfcae1d0ffc63b447b0a8 (patch) | |
tree | 38a1a1d2e116f1acf1ca2525a009866c651d7139 | |
parent | 88a01f94a820a34569ec954e98da0f93aaa3cbb3 (diff) | |
parent | 9ae30b34508770c941f4d09187c0d8e82bb009c8 (diff) | |
download | stable-diffusion-webui-gfx803-a89d7f4f389da001cd0bfcae1d0ffc63b447b0a8.tar.gz stable-diffusion-webui-gfx803-a89d7f4f389da001cd0bfcae1d0ffc63b447b0a8.tar.bz2 stable-diffusion-webui-gfx803-a89d7f4f389da001cd0bfcae1d0ffc63b447b0a8.zip |
Merge pull request #4913 from dtlnor/deprecated-deepdanbooru-patch
Remove cmd args requirement for deepdanbooru
-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 20e248a0..de2b5544 100644 --- a/modules/ui.py +++ b/modules/ui.py @@ -1221,7 +1221,7 @@ def create_ui(wrap_gradio_gpu_call): process_split = gr.Checkbox(label='Split oversized images')
process_focal_crop = gr.Checkbox(label='Auto focal point crop')
process_caption = gr.Checkbox(label='Use BLIP for caption')
- process_caption_deepbooru = gr.Checkbox(label='Use deepbooru for caption', visible=True if cmd_opts.deepdanbooru else False)
+ process_caption_deepbooru = gr.Checkbox(label='Use deepbooru for caption', visible=True)
with gr.Row(visible=False) as process_split_extra_row:
process_split_threshold = gr.Slider(label='Split image threshold', value=0.5, minimum=0.0, maximum=1.0, step=0.05)
|