Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -66,10 +66,8 @@ iface = gr.Interface(
|
|
66 |
gr.Dropdown(
|
67 |
label="Model",
|
68 |
choices=[
|
69 |
-
"
|
70 |
-
"best_model-converted.pt"
|
71 |
-
"yolov9_e_trained.pt",
|
72 |
-
"best_model-converted-reparams.pt"
|
73 |
],
|
74 |
value="last_best_model.pt"
|
75 |
),
|
@@ -91,8 +89,8 @@ iface = gr.Interface(
|
|
91 |
gr.Textbox(label="Output path")
|
92 |
],
|
93 |
examples=[
|
94 |
-
["
|
95 |
-
["
|
96 |
],
|
97 |
title='YOLOv9: Real-time Object Detection',
|
98 |
description='This is a real-time object detection system using YOLOv9.',
|
|
|
66 |
gr.Dropdown(
|
67 |
label="Model",
|
68 |
choices=[
|
69 |
+
"yolov9_e_trained-converted.pt",
|
70 |
+
"best_model-converted.pt"
|
|
|
|
|
71 |
],
|
72 |
value="last_best_model.pt"
|
73 |
),
|
|
|
89 |
gr.Textbox(label="Output path")
|
90 |
],
|
91 |
examples=[
|
92 |
+
["best_model-converted.pt", "camera1_A_133.png", None, "deep_sort"],
|
93 |
+
["best_model-converted.pt", None, "test.mp4", "strong_sort"]
|
94 |
],
|
95 |
title='YOLOv9: Real-time Object Detection',
|
96 |
description='This is a real-time object detection system using YOLOv9.',
|