Spaces:
Runtime error
Runtime error
Ahsen Khaliq
commited on
Commit
•
cc30100
1
Parent(s):
b2079b3
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,6 @@ title = "Bytetrack"
|
|
15 |
description = "Gradio demo for ByteTrack: Multi-Object Tracking by Associating Every Detection Box. To use it, simply upload your image, or click one of the examples to load them. Read more at the links below."
|
16 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2110.06864'> ByteTrack: Multi-Object Tracking by Associating Every Detection Box </a> | <a href=“ https://github.com/ifzhang/ByteTrack”>Github Repo</a></p>"
|
17 |
|
18 |
-
examples=[[‘4A79FDEB-786A-438A-BE63-C83418BFF450.jpeg’]]
|
19 |
gr.Interface(
|
20 |
inference,
|
21 |
gr.inputs.Image(type="file"),
|
@@ -23,6 +22,5 @@ gr.Interface(
|
|
23 |
title=title,
|
24 |
description=description,
|
25 |
article=article,
|
26 |
-
enable_queue=True
|
27 |
-
examples=examples
|
28 |
).launch(debug=True)
|
|
|
15 |
description = "Gradio demo for ByteTrack: Multi-Object Tracking by Associating Every Detection Box. To use it, simply upload your image, or click one of the examples to load them. Read more at the links below."
|
16 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2110.06864'> ByteTrack: Multi-Object Tracking by Associating Every Detection Box </a> | <a href=“ https://github.com/ifzhang/ByteTrack”>Github Repo</a></p>"
|
17 |
|
|
|
18 |
gr.Interface(
|
19 |
inference,
|
20 |
gr.inputs.Image(type="file"),
|
|
|
22 |
title=title,
|
23 |
description=description,
|
24 |
article=article,
|
25 |
+
enable_queue=True
|
|
|
26 |
).launch(debug=True)
|