Update app.py
Browse files
app.py
CHANGED
@@ -43,8 +43,8 @@ inputs = [
|
|
43 |
gr.inputs.Dropdown(
|
44 |
label="Model Path",
|
45 |
choices=[
|
46 |
-
"
|
47 |
-
default="
|
48 |
),
|
49 |
gr.inputs.Dropdown(
|
50 |
label="Tracker Type",
|
@@ -70,13 +70,13 @@ examples = [
|
|
70 |
[
|
71 |
"01.mp4",
|
72 |
"yolov5",
|
73 |
-
"
|
74 |
"OCSORT",
|
75 |
"tracker/oc_sort.yaml",
|
76 |
]
|
77 |
]
|
78 |
outputs = gr.Video()
|
79 |
-
title = "
|
80 |
article = "<p style='text-align: center'><a href='http://claireye.com.tw'>Claireye</a> | 2023</p>"
|
81 |
demo_app = gr.Interface(
|
82 |
fn=object_tracker,
|
|
|
43 |
gr.inputs.Dropdown(
|
44 |
label="Model Path",
|
45 |
choices=[
|
46 |
+
"aijack/v5s" ],
|
47 |
+
default="aijack/v5s",
|
48 |
),
|
49 |
gr.inputs.Dropdown(
|
50 |
label="Tracker Type",
|
|
|
70 |
[
|
71 |
"01.mp4",
|
72 |
"yolov5",
|
73 |
+
"aijack/v5s",
|
74 |
"OCSORT",
|
75 |
"tracker/oc_sort.yaml",
|
76 |
]
|
77 |
]
|
78 |
outputs = gr.Video()
|
79 |
+
title = "YOLOV5 Object Detection and Track Algorithm Library"
|
80 |
article = "<p style='text-align: center'><a href='http://claireye.com.tw'>Claireye</a> | 2023</p>"
|
81 |
demo_app = gr.Interface(
|
82 |
fn=object_tracker,
|