MohanaPrasad2002 commited on
Commit
5073770
·
verified ·
1 Parent(s): 3f470d3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -46,9 +46,9 @@ def video_generation(
46
  # Generate frames
47
  video_frames = pipe(
48
  prompt,
49
- num_frames=num_frames,
50
- num_inference_steps=num_inference_steps,
51
- guidance_scale=guidance_scale,
52
  generator=torch.Generator().manual_seed(42) # Optional seed
53
  ).frames[0]
54
 
 
46
  # Generate frames
47
  video_frames = pipe(
48
  prompt,
49
+ num_frames,
50
+ num_inference_steps,
51
+ guidance_scale,
52
  generator=torch.Generator().manual_seed(42) # Optional seed
53
  ).frames[0]
54