mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-03-07 22:31:50 -08:00
fix extras caption BLIP
This commit is contained in:
parent
654ca97fe3
commit
f604c29191
1 changed files with 1 additions and 1 deletions
|
|
@ -25,6 +25,6 @@ class ScriptPostprocessingCeption(scripts_postprocessing.ScriptPostprocessing):
|
|||
captions.append(deepbooru.model.tag(pp.image))
|
||||
|
||||
if "BLIP" in option:
|
||||
captions.append(shared.interrogator.interrogate(pp.image))
|
||||
captions.append(shared.interrogator.interrogate(pp.image.convert("RGB")))
|
||||
|
||||
pp.caption = ", ".join([x for x in captions if x])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue