Spaces:
Sleeping
Sleeping
revert
Browse files
app.py
CHANGED
@@ -10,5 +10,5 @@ def classify_img(img):
|
|
10 |
image = gr.inputs.Image(shape=(192, 192))
|
11 |
label = gr.outputs.Label()
|
12 |
|
13 |
-
intf = gr.Interface(fn=
|
14 |
intf.launch(inline=False)
|
|
|
10 |
image = gr.inputs.Image(shape=(192, 192))
|
11 |
label = gr.outputs.Label()
|
12 |
|
13 |
+
intf = gr.Interface(fn=classify_img, inputs=image, outputs=label)
|
14 |
intf.launch(inline=False)
|