This commit is contained in:
AUTOMATIC 2023-02-19 12:44:56 +03:00
parent e452facef4
commit 11183b4d90
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ class PersonalizedBase(Dataset):
weight /= weight.mean()
elif use_weight:
#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:
weight = None