Update pipeline.py
Browse files- pipeline.py +2 -0
pipeline.py
CHANGED
@@ -1192,6 +1192,8 @@ class AnimateDiffPipeline(DiffusionPipeline, TextualInversionLoaderMixin, IPAdap
|
|
1192 |
single_prompt_embeds = torch.stack([single_negative_prompt_embeds, single_prompt_embeds], dim=0)
|
1193 |
|
1194 |
prompt_embeds_list.append(single_prompt_embeds)
|
|
|
|
|
1195 |
|
1196 |
|
1197 |
if ip_adapter_image is not None:
|
|
|
1192 |
single_prompt_embeds = torch.stack([single_negative_prompt_embeds, single_prompt_embeds], dim=0)
|
1193 |
|
1194 |
prompt_embeds_list.append(single_prompt_embeds)
|
1195 |
+
# print shape of single prompt embeds
|
1196 |
+
print(single_prompt_embeds.shape)
|
1197 |
|
1198 |
|
1199 |
if ip_adapter_image is not None:
|