fix bug with misnamed variable in diffusion prior network

This commit is contained in:
Phil Wang
2022-08-31 17:18:58 -07:00
parent 22019fddeb
commit 8bbc956ff1
2 changed files with 2 additions and 2 deletions

View File

@@ -1070,7 +1070,7 @@ class DiffusionPriorNetwork(nn.Module):
null_text_embeds = self.null_text_embeds.to(text_embed.dtype)
text_embeds = torch.where(
text_embed = torch.where(
text_keep_mask,
text_embed,
null_text_embeds

View File

@@ -1 +1 @@
__version__ = '1.10.3'
__version__ = '1.10.4'