This commit is contained in:
comfyanonymous 2025-11-20 22:32:38 -05:00 committed by GitHub
parent 8b10e0bdaa
commit 1840bc5226
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -327,7 +327,7 @@ class Decoder(nn.Module):
x = self.mid.block_2(self.mid.attn_1(self.mid.block_1(x))) x = self.mid.block_2(self.mid.attn_1(self.mid.block_1(x)))
if self.refiner_vae: if self.refiner_vae:
x = torch.split(x, 1, dim=2) x = torch.split(x, 2, dim=2)
else: else:
x = [ x ] x = [ x ]
out = [] out = []