Merge branch 'comfyanonymous:master' into master

This commit is contained in:
patientx 2024-09-04 22:36:12 +03:00 committed by GitHub
commit b518390241
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -842,6 +842,11 @@ class UNetModel(nn.Module):
t_emb = timestep_embedding(timesteps, self.model_channels, repeat_only=False).to(x.dtype)
emb = self.time_embed(t_emb)
if "emb_patch" in transformer_patches:
patch = transformer_patches["emb_patch"]
for p in patch:
emb = p(emb, self.model_channels, transformer_options)
if self.num_classes is not None:
assert y.shape[0] == x.shape[0]
emb = emb + self.label_emb(y)