diff options
author | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-08-03 01:25:49 +0000 |
---|---|---|
committer | w-e-w <40751091+w-e-w@users.noreply.github.com> | 2023-08-03 09:46:49 +0000 |
commit | f56a309432996936a41040ea723d76a8cb488f87 (patch) | |
tree | 095750278d8cd8f1ad1f391aafe11eed4f5d5e02 | |
parent | 84b6fcd02ca6d6ab48c4b6be4bb8724b1c2e7014 (diff) | |
download | stable-diffusion-webui-gfx803-f56a309432996936a41040ea723d76a8cb488f87.tar.gz stable-diffusion-webui-gfx803-f56a309432996936a41040ea723d76a8cb488f87.tar.bz2 stable-diffusion-webui-gfx803-f56a309432996936a41040ea723d76a8cb488f87.zip |
fix missing TI hash
-rw-r--r-- | modules/sd_hijack_clip.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/sd_hijack_clip.py b/modules/sd_hijack_clip.py index 2f9d569b..8f29057a 100644 --- a/modules/sd_hijack_clip.py +++ b/modules/sd_hijack_clip.py @@ -245,6 +245,8 @@ class FrozenCLIPEmbedderWithCustomWordsBase(torch.nn.Module): hashes.append(f"{name}: {shorthash}")
if hashes:
+ if self.hijack.extra_generation_params.get("TI hashes"):
+ hashes.append(self.hijack.extra_generation_params.get("TI hashes"))
self.hijack.extra_generation_params["TI hashes"] = ", ".join(hashes)
if getattr(self.wrapped, 'return_pooled', False):
|