make aestetic embedding ciompatible with prompts longer than 75 tokens
This commit is contained in:
parent
e89e2f7c2c
commit
9286fe53de
1 changed files with 1 additions and 1 deletions
|
@ -332,8 +332,8 @@ 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)
|
||||
z = shared.aesthetic_clip(z, remade_batch_tokens)
|
||||
|
||||
remade_batch_tokens = rem_tokens
|
||||
batch_multipliers = rem_multipliers
|
||||
|
|
Loading…
Reference in a new issue