Commit
·
100f28e
1
Parent(s):
c767690
Update pipeline.py
Browse files- pipeline.py +2 -0
pipeline.py
CHANGED
@@ -790,6 +790,8 @@ class AnimateDiffPipeline(DiffusionPipeline, TextualInversionLoaderMixin, IPAdap
|
|
790 |
# print frame and batch id
|
791 |
print(f"Frame: {f_id + start_id} Batch: {batch}")
|
792 |
frame_number = start_id + f_id
|
|
|
|
|
793 |
frame.save(frame_format.format(frame_number))
|
794 |
return output_path
|
795 |
|
|
|
790 |
# print frame and batch id
|
791 |
print(f"Frame: {f_id + start_id} Batch: {batch}")
|
792 |
frame_number = start_id + f_id
|
793 |
+
output_file = frame_format.format(frame_number)
|
794 |
+
print(f"Saving to: {output_file}")
|
795 |
frame.save(frame_format.format(frame_number))
|
796 |
return output_path
|
797 |
|