diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-10-22 09:23:45 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-10-22 09:23:58 +0000 |
commit | 2b91251637078e04472c91a06a8d9c4db9c1dcf0 (patch) | |
tree | d2c09617adb426eac493a0976057aefe415745b6 /modules/sd_hijack.py | |
parent | 26d107374569836161326aae8cd3cc26c1edc372 (diff) | |
download | stable-diffusion-webui-gfx803-2b91251637078e04472c91a06a8d9c4db9c1dcf0.tar.gz stable-diffusion-webui-gfx803-2b91251637078e04472c91a06a8d9c4db9c1dcf0.tar.bz2 stable-diffusion-webui-gfx803-2b91251637078e04472c91a06a8d9c4db9c1dcf0.zip |
removed aesthetic gradients as built-in
added support for extensions
Diffstat (limited to 'modules/sd_hijack.py')
-rw-r--r-- | modules/sd_hijack.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/sd_hijack.py b/modules/sd_hijack.py index 1f8587d1..0f10828e 100644 --- a/modules/sd_hijack.py +++ b/modules/sd_hijack.py @@ -332,7 +332,6 @@ class FrozenCLIPEmbedderWithCustomWords(torch.nn.Module): multipliers.append([1.0] * 75)
z1 = self.process_tokens(tokens, multipliers)
- z1 = shared.aesthetic_clip(z1, remade_batch_tokens)
z = z1 if z is None else torch.cat((z, z1), axis=-2)
remade_batch_tokens = rem_tokens
|