mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-25 15:55:18 +00:00
Fix bug with weights when prompt is long.
This commit is contained in:
parent
ddc6f12ad5
commit
608fcc2591
@ -23,11 +23,11 @@ class ClipTokenWeightEncoder:
|
||||
first_pooled = pooled[0:1]
|
||||
|
||||
output = []
|
||||
for i in range(1, out.shape[0]):
|
||||
z = out[i:i+1]
|
||||
for k in range(1, out.shape[0]):
|
||||
z = out[k:k+1]
|
||||
for i in range(len(z)):
|
||||
for j in range(len(z[i])):
|
||||
weight = token_weight_pairs[i - 1][j][1]
|
||||
weight = token_weight_pairs[k - 1][j][1]
|
||||
z[i][j] = (z[i][j] - z_empty[0][j]) * weight + z_empty[0][j]
|
||||
output.append(z)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user