Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ def classify_image(img):
|
|
21 |
|
22 |
image = gr.inputs.Image(shape=(192,192))
|
23 |
label = gr.outputs.Label()
|
24 |
-
examples = ['bear.jpg']
|
25 |
|
26 |
-
intf = gr.Interface(fn = classify_image, inputs=image, outputs=label
|
27 |
intf.launch(inline=False)
|
|
|
21 |
|
22 |
image = gr.inputs.Image(shape=(192,192))
|
23 |
label = gr.outputs.Label()
|
24 |
+
#examples = ['bear.jpg']
|
25 |
|
26 |
+
intf = gr.Interface(fn = classify_image, inputs=image, outputs=label)
|
27 |
intf.launch(inline=False)
|