CWrecker commited on
Commit
2a392dd
1 Parent(s): 2f4d6b4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -33,8 +33,8 @@ gr.Interface(
33
  fn = inference,
34
  inputs = [ gr.components.Image(type="filepath", label="Input"), gr.Slider(minimum=0.0, maximum=0.95, step=0.05, value=0.4, label="Confidence threshold") ],
35
  outputs = [ gr.components.Image(type="numpy", label="Output"), gr.Label(label="Number of legos detected for given confidence threshold") ],
36
- title="Person detection with YOLO v8",
37
- description="Person detection, you can tweak the corresponding confidence threshold. Good results even when face not visible. New API since Ultralytics 8.0.43.",
38
  examples=[ ['sample1.jpg'],['sample2.jpg'], ['hard.jpg']],
39
  allow_flagging="never"
40
  ).launch(debug=True, enable_queue=True)
 
33
  fn = inference,
34
  inputs = [ gr.components.Image(type="filepath", label="Input"), gr.Slider(minimum=0.0, maximum=0.95, step=0.05, value=0.4, label="Confidence threshold") ],
35
  outputs = [ gr.components.Image(type="numpy", label="Output"), gr.Label(label="Number of legos detected for given confidence threshold") ],
36
+ title="YOLOv8n LEGO Detection Demo",
37
+ description="LEGO Detection DEMO dataset_small",
38
  examples=[ ['sample1.jpg'],['sample2.jpg'], ['hard.jpg']],
39
  allow_flagging="never"
40
  ).launch(debug=True, enable_queue=True)