huzey commited on
Commit
b4d3be8
·
1 Parent(s): 6bb75e2

optimize gpu allocation

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -140,7 +140,7 @@ def ncut_run(
140
  rgb = dont_use_too_much_green(rgb)
141
  return to_pil_images(rgb), logging_str
142
 
143
- @spaces.GPU(duration=15)
144
  def quick_run(images, **kwargs):
145
  return ncut_run(images, **kwargs)
146
 
 
140
  rgb = dont_use_too_much_green(rgb)
141
  return to_pil_images(rgb), logging_str
142
 
143
+ @spaces.GPU(duration=13)
144
  def quick_run(images, **kwargs):
145
  return ncut_run(images, **kwargs)
146