JosephTK commited on
Commit
83aa999
1 Parent(s): 0d21a32

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -64,8 +64,8 @@ def detect(image):
64
  demo = gr.Interface(
65
  fn=detect,
66
  inputs=[gr.inputs.Image(label="Input image", type="pil")],
67
- outputs=[gr.Image(show_label=False), gr.BarPlot(show_label=False, x="label", y="counts", x_title="Labels", y_title="Counts", vertical=False), gr.Textbox(show_label=False)],
68
- title="Object Counts in Image"
69
  )
70
 
71
  demo.launch()
 
64
  demo = gr.Interface(
65
  fn=detect,
66
  inputs=[gr.inputs.Image(label="Input image", type="pil")],
67
+ outputs=[gr.Image(label="Output image"), gr.BarPlot(show_label=False, x="label", y="counts", x_title="Labels", y_title="Counts", vertical=False), gr.Textbox(show_label=False)],
68
+ title="YOLO Object Detection"
69
  )
70
 
71
  demo.launch()