jameslahm commited on
Commit
2172fc2
·
verified ·
1 Parent(s): f23b96a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -48,9 +48,9 @@ def app():
48
  )
49
  conf_threshold = gr.Slider(
50
  label="Confidence Threshold",
51
- minimum=0.1,
52
  maximum=1.0,
53
- step=0.1,
54
  value=0.25,
55
  )
56
  yolov10_infer = gr.Button(value="Detect Objects")
@@ -106,7 +106,6 @@ with gradio_app:
106
  gr.HTML(
107
  """
108
  <h3 style='text-align: center'>
109
- YOLOv10: Real-Time End-to-End Object Detection
110
  <a href='https://arxiv.org/abs/2405.14458' target='_blank'>arXiv</a> | <a href='https://github.com/THU-MIG/yolov10' target='_blank'>github</a>
111
  </h3>
112
  """)
 
48
  )
49
  conf_threshold = gr.Slider(
50
  label="Confidence Threshold",
51
+ minimum=0.0,
52
  maximum=1.0,
53
+ step=0.05,
54
  value=0.25,
55
  )
56
  yolov10_infer = gr.Button(value="Detect Objects")
 
106
  gr.HTML(
107
  """
108
  <h3 style='text-align: center'>
 
109
  <a href='https://arxiv.org/abs/2405.14458' target='_blank'>arXiv</a> | <a href='https://github.com/THU-MIG/yolov10' target='_blank'>github</a>
110
  </h3>
111
  """)