Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -18,11 +18,11 @@ import gradio as gr
|
|
18 |
|
19 |
|
20 |
def image_fn(
|
21 |
-
image: gr.
|
22 |
-
model_path: gr.
|
23 |
-
image_size: gr.
|
24 |
-
conf_threshold: gr.
|
25 |
-
iou_threshold: gr.
|
26 |
):
|
27 |
"""
|
28 |
YOLOv7 inference function
|
|
|
18 |
|
19 |
|
20 |
def image_fn(
|
21 |
+
image: gr.Image = None,
|
22 |
+
model_path: gr.Dropdown = None,
|
23 |
+
image_size: gr.Slider = 640,
|
24 |
+
conf_threshold: gr.Slider = 0.25,
|
25 |
+
iou_threshold: gr.Slider = 0.45,
|
26 |
):
|
27 |
"""
|
28 |
YOLOv7 inference function
|