1
0
mirror of https://github.com/huggingface/diffusers.git synced 2026-01-29 07:22:12 +03:00

[Torch compile] Fix torch compile for controlnet (#4795)

Fix torch compile for controlnete
This commit is contained in:
Patrick von Platen
2023-08-26 22:30:02 +02:00
committed by sayakpaul
parent 5e5236278a
commit 0b621e61c3

View File

@@ -723,7 +723,7 @@ class ControlNetModel(ModelMixin, ConfigMixin, FromOriginalControlnetMixin):
class_emb = self.class_embedding(class_labels).to(dtype=self.dtype)
emb = emb + class_emb
if "addition_embed_type" in self.config:
if self.config.addition_embed_type is not None:
if self.config.addition_embed_type == "text":
aug_emb = self.add_embedding(encoder_hidden_states)