Spaces:
Runtime error
Runtime error
bugfix
Browse files
app.py
CHANGED
@@ -23,5 +23,4 @@ import gradio as gr
|
|
23 |
image = gr.inputs.Image(shape=(512, 512))
|
24 |
labels = gr.outputs.Label(num_top_classes=3)
|
25 |
|
26 |
-
gr.Interface(fn=predict, inputs=image, outputs=labels)
|
27 |
-
gr.launch(inline=False)
|
|
|
23 |
image = gr.inputs.Image(shape=(512, 512))
|
24 |
labels = gr.outputs.Label(num_top_classes=3)
|
25 |
|
26 |
+
gr.Interface(fn=predict, inputs=image, outputs=labels).launch(inline=False)
|
|