mohamedrekik commited on
Commit
8e12d17
·
1 Parent(s): e05b4dc

add more examples

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -119,7 +119,7 @@ demo = gr.Interface(
119
  fn=run,
120
  inputs=["image", gr.Dropdown(["YOLOv8n", "YOLOv8s", "YOLOv8m", "YOLOv8l", "YOLOv8x"], label="Model", value="YOLOv8n", info="The larger the model, the slower and more performant it is.")],
121
  outputs=["image"],
122
- examples=[["crowd.jpeg", "YOLOv8n"]]
123
  )
124
 
125
  demo.launch()
 
119
  fn=run,
120
  inputs=["image", gr.Dropdown(["YOLOv8n", "YOLOv8s", "YOLOv8m", "YOLOv8l", "YOLOv8x"], label="Model", value="YOLOv8n", info="The larger the model, the slower and more performant it is.")],
121
  outputs=["image"],
122
+ examples=[["crowd.jpeg", "YOLOv8n"],["crowd.jpeg", "YOLOv8s"],["crowd.jpeg", "YOLOv8m"],["crowd.jpeg", "YOLOv8l"],["crowd.jpeg", "YOLOv8x"],]
123
  )
124
 
125
  demo.launch()