Update app.py
Browse files
app.py
CHANGED
@@ -19,8 +19,8 @@ def classify_image(img):
|
|
19 |
# Cell
|
20 |
image = gr.inputs.Image(shape=(192, 192))
|
21 |
label = gr.outputs.Label()
|
22 |
-
|
23 |
|
24 |
# Cell
|
25 |
-
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label
|
26 |
intf.launch()
|
|
|
19 |
# Cell
|
20 |
image = gr.inputs.Image(shape=(192, 192))
|
21 |
label = gr.outputs.Label()
|
22 |
+
|
23 |
|
24 |
# Cell
|
25 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label)
|
26 |
intf.launch()
|