Spaces:
Sleeping
Sleeping
Commit
·
3751bab
1
Parent(s):
9867f03
Update app.py
Browse files
app.py
CHANGED
@@ -85,15 +85,18 @@ def fig2img(fig):
|
|
85 |
description = """Upload an image and get the predicted classes"""
|
86 |
title = """Object Detection"""
|
87 |
|
88 |
-
image_in = gr.components.Image(label="Upload an image")
|
89 |
-
image_out = gr.components.Image()
|
90 |
-
prob_threshold_slider = gr.components.Slider(minimum=0, maximum=1.0, step=0.01, value=0.7, label="Probability Threshold")
|
91 |
-
|
92 |
classes_to_show = gr.components.Textbox(
|
93 |
placeholder="e.g. car, dog",
|
94 |
label="Classes to filter (leave empty to detect all classes)",
|
95 |
)
|
96 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
inputs = [image_in, prob_threshold_slider, classes_to_show]
|
98 |
|
99 |
gr.Interface(fn=model_inference,
|
|
|
85 |
description = """Upload an image and get the predicted classes"""
|
86 |
title = """Object Detection"""
|
87 |
|
|
|
|
|
|
|
|
|
88 |
classes_to_show = gr.components.Textbox(
|
89 |
placeholder="e.g. car, dog",
|
90 |
label="Classes to filter (leave empty to detect all classes)",
|
91 |
)
|
92 |
|
93 |
+
|
94 |
+
image_in = gr.components.Image(label="Upload an image")
|
95 |
+
image_out = gr.components.Image()
|
96 |
+
prob_threshold_slider = gr.components.Slider(minimum=0, maximum=1.0, step=0.01, value=0.7, label="Probability Threshold")
|
97 |
+
|
98 |
+
|
99 |
+
|
100 |
inputs = [image_in, prob_threshold_slider, classes_to_show]
|
101 |
|
102 |
gr.Interface(fn=model_inference,
|