Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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"
|
|
|
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 |
|