Update app.py
Browse files
app.py
CHANGED
@@ -31,7 +31,7 @@ def inference(path:str, threshold:float=0.6):
|
|
31 |
|
32 |
gr.Interface(
|
33 |
fn = inference,
|
34 |
-
inputs = [ gr.components.Image(type="filepath", label="Input"), gr.Slider(minimum=0.
|
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.",
|
|
|
31 |
|
32 |
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.",
|