lime-j commited on
Commit
f7764d2
·
1 Parent(s): fe83596
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -47,8 +47,7 @@ pipe = Pipe()
47
 
48
  @spaces.GPU(duration=120)
49
  def predict(img):
50
- return pipe(img).output
51
-
52
  demo=gr.Interface(predict, gr.Image(), "image")
53
 
54
  demo.launch()
 
47
 
48
  @spaces.GPU(duration=120)
49
  def predict(img):
50
+ return pipe(img)
 
51
  demo=gr.Interface(predict, gr.Image(), "image")
52
 
53
  demo.launch()