smoothieAI commited on
Commit
14c4be1
·
verified ·
1 Parent(s): 2b18b6a

Update pipeline.py

Browse files
Files changed (1) hide show
  1. pipeline.py +3 -0
pipeline.py CHANGED
@@ -1138,6 +1138,9 @@ class AnimateDiffPipeline(DiffusionPipeline, TextualInversionLoaderMixin, IPAdap
1138
  batch_size = len(prompt)
1139
  else:
1140
  batch_size = prompt_embeds.shape[0]
 
 
 
1141
 
1142
  device = self._execution_device
1143
 
 
1138
  batch_size = len(prompt)
1139
  else:
1140
  batch_size = prompt_embeds.shape[0]
1141
+
1142
+ # print promtp embed shape
1143
+ print(prompt_embeds.shape)
1144
 
1145
  device = self._execution_device
1146