mayhug commited on
Commit
6706fd3
·
1 Parent(s): 747941d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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()