mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-12-22 07:10:51 -08:00
fix for #6700
This commit is contained in:
@@ -115,7 +115,7 @@ class PersonalizedBase(Dataset):
|
|||||||
weight /= weight.mean()
|
weight /= weight.mean()
|
||||||
elif use_weight:
|
elif use_weight:
|
||||||
#If an image does not have a alpha channel, add a ones weight map anyway so we can stack it later
|
#If an image does not have a alpha channel, add a ones weight map anyway so we can stack it later
|
||||||
weight = torch.ones([channels] + latent_size)
|
weight = torch.ones(latent_sample.shape)
|
||||||
else:
|
else:
|
||||||
weight = None
|
weight = None
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user