Ahsen Khaliq commited on
Commit
bde9b75
1 Parent(s): 93eead9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -15,6 +15,7 @@ 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
  gr.Interface(
19
  inference,
20
  gr.inputs.Image(type="file"),
@@ -22,5 +23,6 @@ gr.Interface(
22
  title=title,
23
  description=description,
24
  article=article,
25
- enable_queue=True
 
26
  ).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
+ examples=[[“ 4A79FDEB-786A-438A-BE63-C83418BFF450.jpeg”]]
19
  gr.Interface(
20
  inference,
21
  gr.inputs.Image(type="file"),
 
23
  title=title,
24
  description=description,
25
  article=article,
26
+ enable_queue=True,
27
+ examples=examples
28
  ).launch(debug=True)