diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-13 04:40:03 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-13 04:40:03 +0000 |
commit | 78592d404acba7db3baf8d78bdc19266906e684a (patch) | |
tree | c54ab6713cbb3c84cd1b543eabde72bb0e594ff0 /modules | |
parent | 698d303b04e293635bfb49c525409f3bcf671dce (diff) | |
download | stable-diffusion-webui-gfx803-78592d404acba7db3baf8d78bdc19266906e684a.tar.gz stable-diffusion-webui-gfx803-78592d404acba7db3baf8d78bdc19266906e684a.tar.bz2 stable-diffusion-webui-gfx803-78592d404acba7db3baf8d78bdc19266906e684a.zip |
remove interrogate option I accidentally deleted
Diffstat (limited to 'modules')
-rw-r--r-- | modules/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index 78b73aae..9bda45c1 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -258,6 +258,7 @@ options_templates.update(options_section(('interrogate', "Interrogate Options"), "interrogate_clip_num_beams": OptionInfo(1, "Interrogate: num_beams for BLIP", gr.Slider, {"minimum": 1, "maximum": 16, "step": 1}),
"interrogate_clip_min_length": OptionInfo(24, "Interrogate: minimum description length (excluding artists, etc..)", gr.Slider, {"minimum": 1, "maximum": 128, "step": 1}),
"interrogate_clip_max_length": OptionInfo(48, "Interrogate: maximum description length", gr.Slider, {"minimum": 1, "maximum": 256, "step": 1}),
+ "interrogate_clip_dict_limit": OptionInfo(1500, "CLIP: maximum number of lines in text file (0 = No limit)"),
"interrogate_deepbooru_score_threshold": OptionInfo(0.5, "Interrogate: deepbooru score threshold", gr.Slider, {"minimum": 0, "maximum": 1, "step": 0.01}),
"deepbooru_sort_alpha": OptionInfo(True, "Interrogate: deepbooru sort alphabetically"),
"deepbooru_use_spaces": OptionInfo(False, "use spaces for tags in deepbooru"),
|