Ayaz Akkaş
commited on
Commit
•
101ee96
1
Parent(s):
46efbc5
Add model
Browse files
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)
|