tchoudha21 commited on
Commit
5e6c3a4
·
verified ·
1 Parent(s): cac716a

Fixed pipeline call

Browse files
Files changed (1) hide show
  1. video2world_hf.py +1 -1
video2world_hf.py CHANGED
@@ -104,7 +104,7 @@ class DiffusionVideo2World(PreTrainedModel):
104
  continue
105
 
106
  # Generate video
107
- generated_output = pipeline.generate(
108
  prompt=current_prompt,
109
  image_or_video_path=current_image_or_video_path,
110
  negative_prompt=cfg.negative_prompt,
 
104
  continue
105
 
106
  # Generate video
107
+ generated_output = self.pipeline.generate(
108
  prompt=current_prompt,
109
  image_or_video_path=current_image_or_video_path,
110
  negative_prompt=cfg.negative_prompt,