Fix VAEEncodeForInpaint modifying source image.
This commit is contained in:
parent
f11d5e0748
commit
bf1dc1d9bc
1
nodes.py
1
nodes.py
|
@ -189,6 +189,7 @@ class VAEEncodeForInpaint:
|
|||
y = (pixels.shape[2] // 64) * 64
|
||||
mask = torch.nn.functional.interpolate(mask[None,None,], size=(pixels.shape[1], pixels.shape[2]), mode="bilinear")[0][0]
|
||||
|
||||
pixels = pixels.clone()
|
||||
if pixels.shape[1] != x or pixels.shape[2] != y:
|
||||
pixels = pixels[:,:x,:y,:]
|
||||
mask = mask[:x,:y]
|
||||
|
|
Loading…
Reference in New Issue