memory optimization for CLIP interrogator

changed default cfg_scale to a higher value
This commit is contained in:
AUTOMATIC
2022-09-12 11:55:27 +03:00
parent ab0a79cdf4
commit 9bb20be090
4 changed files with 36 additions and 7 deletions

View File

@@ -132,6 +132,7 @@ class 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 descripton length (excluding artists, etc..)", gr.Slider, {"minimum": 1, "maximum": 128, "step": 1}),
"interrogate_clip_max_length": OptionInfo(48, "Interrogate: maximum descripton length", gr.Slider, {"minimum": 1, "maximum": 256, "step": 1}),
"interrogate_clip_dict_limit": OptionInfo(1500, "Interrogate: maximum number of lines in text file (0 = No limit)"),
}
def __init__(self):