Matteo Sirri commited on
Commit
dadda42
·
1 Parent(s): cf40191

fix: fix typo

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -63,7 +63,7 @@ examples = ["001.jpg", "002.jpg", "003.jpg",
63
  io_baseline = gr.Interface(frcnn_coco, gr.Image(type="pil"), gr.Image(
64
  type="pil", label="Baseline Model trained on COCO + FT on MOT17"))
65
 
66
- io_custom = gr.Interface(frcnn_motsynth, inputs=examples, outputs=gr.Image(
67
  type="pil", label="Faster R-CNN trained on MOTSynth + FT on MOT17"))
68
 
69
  gr.Parallel(io_baseline, io_custom, title=title,
 
63
  io_baseline = gr.Interface(frcnn_coco, gr.Image(type="pil"), gr.Image(
64
  type="pil", label="Baseline Model trained on COCO + FT on MOT17"))
65
 
66
+ io_custom = gr.Interface(frcnn_motsynth, gr.Image(type="pil"), gr.Image(
67
  type="pil", label="Faster R-CNN trained on MOTSynth + FT on MOT17"))
68
 
69
  gr.Parallel(io_baseline, io_custom, title=title,