aboutsummaryrefslogtreecommitdiffstats
path: root/modules/ui.py
diff options
context:
space:
mode:
authorKenneth <kenneth.mccarthy24@yahoo.com>2022-10-10 23:23:07 +0000
committerAUTOMATIC1111 <16777216c@gmail.com>2022-10-11 06:43:16 +0000
commit8617396c6df71074c7fd3d39419802026874712a (patch)
treefc730726f8ab13cdf728f6b1a735022f5e227c8e /modules/ui.py
parent8b7d3f1bef47bbe048f644ed0d8dd3ad46554045 (diff)
downloadstable-diffusion-webui-gfx803-8617396c6df71074c7fd3d39419802026874712a.tar.gz
stable-diffusion-webui-gfx803-8617396c6df71074c7fd3d39419802026874712a.tar.bz2
stable-diffusion-webui-gfx803-8617396c6df71074c7fd3d39419802026874712a.zip
Added slider for deepbooru score threshold in settings
Diffstat (limited to 'modules/ui.py')
-rw-r--r--modules/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ui.py b/modules/ui.py
index cafda884..ca3151c4 100644
--- a/modules/ui.py
+++ b/modules/ui.py
@@ -311,7 +311,7 @@ def interrogate(image):
def interrogate_deepbooru(image):
- prompt = get_deepbooru_tags(image)
+ prompt = get_deepbooru_tags(image, opts.interrogate_deepbooru_score_threshold)
return gr_show(True) if prompt is None else prompt