Update app.py
Browse files
app.py
CHANGED
@@ -14,4 +14,4 @@ def predict(img):
|
|
14 |
|
15 |
image = gr.inputs.Image(shape=(192, 192))
|
16 |
label = gr.outputs.Label(num_top_classes=3)
|
17 |
-
gr.Interface(fn=predict, inputs=image, outputs=label).launch(
|
|
|
14 |
|
15 |
image = gr.inputs.Image(shape=(192, 192))
|
16 |
label = gr.outputs.Label(num_top_classes=3)
|
17 |
+
gr.Interface(fn=predict, inputs=image, outputs=label).launch(inline=False)
|