aboutsummaryrefslogtreecommitdiffstats
path: root/modules/sd_hijack.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-09-08 07:31:20 +0000
committerAUTOMATIC <16777216c@gmail.com>2022-09-08 07:31:20 +0000
commit61785cef656335cce3ab50b420301d2821f7c5e1 (patch)
treedf66e649b5e30c21fb68d6b93af9bb48b0f48584 /modules/sd_hijack.py
parent0fedd50886fb2f745cc6faab001090b77fbd0382 (diff)
parent9ddaf8269ebfb11c8fd2e48f0e8d33c125213437 (diff)
downloadstable-diffusion-webui-gfx803-61785cef656335cce3ab50b420301d2821f7c5e1.tar.gz
stable-diffusion-webui-gfx803-61785cef656335cce3ab50b420301d2821f7c5e1.tar.bz2
stable-diffusion-webui-gfx803-61785cef656335cce3ab50b420301d2821f7c5e1.zip
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'modules/sd_hijack.py')
-rw-r--r--modules/sd_hijack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/sd_hijack.py b/modules/sd_hijack.py
index 2d26b5f7..1084e248 100644
--- a/modules/sd_hijack.py
+++ b/modules/sd_hijack.py
@@ -232,7 +232,7 @@ class FrozenCLIPEmbedderWithCustomWords(torch.nn.Module):
z = outputs.last_hidden_state
# restoring original mean is likely not correct, but it seems to work well to prevent artifacts that happen otherwise
- batch_multipliers = torch.asarray(np.array(batch_multipliers)).to(device)
+ batch_multipliers = torch.asarray(batch_multipliers).to(device)
original_mean = z.mean()
z *= batch_multipliers.reshape(batch_multipliers.shape + (1,)).expand(z.shape)
new_mean = z.mean()