innoai commited on
Commit
6e50515
·
verified ·
1 Parent(s): 9588ad2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -36,11 +36,11 @@ gradio_pipeline = GradioPipeline(
36
  args=args
37
  )
38
 
39
- @spaces.GPU(duration=240)
40
  def gpu_wrapped_execute_video(*args, **kwargs):
41
  return gradio_pipeline.execute_video(*args, **kwargs)
42
 
43
- @spaces.GPU(duration=240)
44
  def gpu_wrapped_execute_image(*args, **kwargs):
45
  return gradio_pipeline.execute_image(*args, **kwargs)
46
 
 
36
  args=args
37
  )
38
 
39
+ @spaces.GPU
40
  def gpu_wrapped_execute_video(*args, **kwargs):
41
  return gradio_pipeline.execute_video(*args, **kwargs)
42
 
43
+ @spaces.GPU
44
  def gpu_wrapped_execute_image(*args, **kwargs):
45
  return gradio_pipeline.execute_image(*args, **kwargs)
46