We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4d1e69 commit 7916140Copy full SHA for 7916140
src/diffusers/models/embeddings.py
@@ -859,7 +859,6 @@ def forward(
859
prompt_embeds = self.text_proj(prompt_embeds) # embed_dim: 4096 -> 4096
860
if negative_prompt_embeds is not None:
861
negative_prompt_embeds = self.text_proj(negative_prompt_embeds) # embed_dim: 4096 -> 4096
862
- breakpoint()
863
return hidden_states, prompt_embeds, negative_prompt_embeds
864
865
0 commit comments