SoulPerforms commited on
Commit
8b53196
·
verified ·
1 Parent(s): f141c2f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -45,11 +45,11 @@ iface = gr.Interface(
45
  gr.Slider(minimum=0, maximum=1, value=0.45, label="IoU threshold")
46
  ],
47
  outputs=gr.Image(type="pil", label="Result"),
48
- title="Fire Detecttion using YOLOv8n on Gradio",
49
  description="Upload images for inference. The Ultralytics YOLOv8n trained model is used for inference.",
50
  examples=[
51
- [ASSETS / "bus.jpg", 0.25, 0.45],
52
- [ASSETS / "zidane.jpg", 0.25, 0.45],
53
  ]
54
  )
55
 
 
45
  gr.Slider(minimum=0, maximum=1, value=0.45, label="IoU threshold")
46
  ],
47
  outputs=gr.Image(type="pil", label="Result"),
48
+ title="Fire Detection using YOLOv8n on Gradio",
49
  description="Upload images for inference. The Ultralytics YOLOv8n trained model is used for inference.",
50
  examples=[
51
+ ["image/fire_image_1.jpg"], ["image/fire_image_2.jpg"], ["image/fire_image_3.jpg"],
52
+ ["video"],
53
  ]
54
  )
55