Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -35,5 +35,5 @@ image = gr.inputs.Image(shape=(192, 192))
|
|
35 |
label = gr.outputs.Label()
|
36 |
examples = ['rock.jpg', 'paper.jpg', 'scissor.jpg']
|
37 |
|
38 |
-
intf = gr.Interface(fn=
|
39 |
intf.launch(inline=False)
|
|
|
35 |
label = gr.outputs.Label()
|
36 |
examples = ['rock.jpg', 'paper.jpg', 'scissor.jpg']
|
37 |
|
38 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
39 |
intf.launch(inline=False)
|