Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -52,4 +52,5 @@ threshold = inputs.Slider(
|
|
52 |
|
53 |
labels = outputs.Label(type="confidence")
|
54 |
|
55 |
-
gradio.Interface(main, inputs=[image, threshold], outputs=[labels])
|
|
|
|
52 |
|
53 |
labels = outputs.Label(type="confidence")
|
54 |
|
55 |
+
interface = gradio.Interface(main, inputs=[image, threshold], outputs=[labels])
|
56 |
+
interface.launch()
|