diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-22 10:57:20 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-22 10:57:20 +0000 |
commit | 1fa53dab2c5a857b9773f904fadf853dac1f1bd6 (patch) | |
tree | 347f8cbcdf644885fcf3481ed7a2dc55f8942c6e /modules/sd_hijack.py | |
parent | 29bfacd63cb5c73b9643d94f255cca818fd49d9c (diff) | |
parent | 5aa9525046b7520d39fe8fc8c5c6cc10ab4d5fdb (diff) | |
download | stable-diffusion-webui-gfx803-1fa53dab2c5a857b9773f904fadf853dac1f1bd6.tar.gz stable-diffusion-webui-gfx803-1fa53dab2c5a857b9773f904fadf853dac1f1bd6.tar.bz2 stable-diffusion-webui-gfx803-1fa53dab2c5a857b9773f904fadf853dac1f1bd6.zip |
Merge branch 'master' into cuda-device-id-selection
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
|