Ayaz Akkaş commited on
Commit
101ee96
1 Parent(s): 46efbc5
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -14,4 +14,5 @@ def classify_image(img):
14
  image = gr.inputs.Image(shape=(192,192))
15
  label = gr.outputs.Label()
16
 
17
- intf = gr.Interface()
 
 
14
  image = gr.inputs.Image(shape=(192,192))
15
  label = gr.outputs.Label()
16
 
17
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label)
18
+ intf.launch(inline=False)