KingNish commited on
Commit
4dce6a9
·
verified ·
1 Parent(s): ec8e06b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -77,7 +77,7 @@ def get_duration(input_image, prompt, height, width,
77
  return 60
78
 
79
  @spaces.GPU(duration=get_duration)
80
- def generate_video(input_image, prompt, height, width, negative_prompt=default_negative_prompt, duration_seconds=2, guidance_scale=0, steps=5, seed=42, randomize_seed=False, progress=gr.Progress(track_tqdm=True)):
81
  target_h = max(MOD_VALUE, (int(height) // MOD_VALUE) * MOD_VALUE)
82
  target_w = max(MOD_VALUE, (int(width) // MOD_VALUE) * MOD_VALUE)
83
 
 
77
  return 60
78
 
79
  @spaces.GPU(duration=get_duration)
80
+ def generate_video(input_image, prompt, height, width, negative_prompt=default_negative_prompt, duration_seconds=2, guidance_scale=0, steps=4, seed=44, randomize_seed=False, progress=gr.Progress(track_tqdm=True)):
81
  target_h = max(MOD_VALUE, (int(height) // MOD_VALUE) * MOD_VALUE)
82
  target_w = max(MOD_VALUE, (int(width) // MOD_VALUE) * MOD_VALUE)
83