Noe831 commited on
Commit
5862e7b
·
1 Parent(s): 2300746
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -11,4 +11,6 @@ def classify_image(img):
11
 
12
 
13
 
14
- intf = gr.Interface(classify_image, inputs="image", outputs="label")
 
 
 
11
 
12
 
13
 
14
+ intf = gr.Interface(fn=classify_image,
15
+ inputs=gr.Image(),
16
+ outputs=[gr.Textbox(), gr.Textbox(), gr.Textbox()])