Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
FathomNet
/
trash-detector
like
1
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
kbarnard
commited on
Sep 11, 2023
Commit
5402ab1
·
1 Parent(s):
5eda6c8
Set confidence threshold to 0.4
Browse files
Files changed (1)
hide
show
app.py
+1
-0
app.py
CHANGED
Viewed
@@ -8,6 +8,7 @@ model = YOLO(model_path)
8
9
PREDICT_KWARGS = {
10
"classes": 0,
11
}
12
13
8
9
PREDICT_KWARGS = {
10
"classes": 0,
11
+
"conf": 0.4,
12
}
13
14