RodneyVG commited on
Commit
0aa8f4f
1 Parent(s): f3c9e0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -23,5 +23,6 @@ def object_count(picture):
23
  # object_count("toothbrush.jpg")
24
  import gradio as gr
25
 
26
- interface = gr.Interface(object_count, gr.inputs.Image(shape=(640, 480)), "text").launch()
 
27
 
 
23
  # object_count("toothbrush.jpg")
24
  import gradio as gr
25
 
26
+ interface = gr.Interface(object_count, gr.inputs.Image(shape=(640, 480)), "text", title="Common Object Counter",examples=["chairs.jpg", "empty.jpg", "bottles.jpg"], description="This App counts the common objects detected in an Image",
27
+ allow_flagging="never").launch()
28