Spaces:
Sleeping
Sleeping
Commit
·
37995d7
1
Parent(s):
85808e2
Update app.py
Browse files
app.py
CHANGED
@@ -82,7 +82,7 @@ def fig2img(fig):
|
|
82 |
|
83 |
|
84 |
description = """Object Detection"""
|
85 |
-
|
86 |
image_in = gr.components.Image(label="Upload an image")
|
87 |
image_out = gr.components.Image()
|
88 |
prob_threshold_slider = gr.components.Slider(
|
@@ -94,8 +94,8 @@ classes_to_show = gr.components.Textbox(
|
|
94 |
)
|
95 |
|
96 |
gr.Interface(fn=model_inference,
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
|
|
82 |
|
83 |
|
84 |
description = """Object Detection"""
|
85 |
+
title = """Object Detection"""
|
86 |
image_in = gr.components.Image(label="Upload an image")
|
87 |
image_out = gr.components.Image()
|
88 |
prob_threshold_slider = gr.components.Slider(
|
|
|
94 |
)
|
95 |
|
96 |
gr.Interface(fn=model_inference,
|
97 |
+
inputs=[image_in, prob_threshold_slider, classes_to_show],
|
98 |
+
outputs=image_out,
|
99 |
+
title=title,
|
100 |
+
examples=["CTH.png", "carplane.webp"],
|
101 |
+
description=description).launch()
|