ntsc207 commited on
Commit
8ce02a7
·
verified ·
1 Parent(s): a1225a7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -6
app.py CHANGED
@@ -66,10 +66,8 @@ iface = gr.Interface(
66
  gr.Dropdown(
67
  label="Model",
68
  choices=[
69
- "last_best_model.pt",
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
- ["last_best_model.pt", "camera1_A_133.png", None, "deep_sort"],
95
- ["last_best_model.pt", None, "test.mp4", "strong_sort"]
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.',