Upload folder using huggingface_hub
Browse files- miner.py +3 -2
- weights.onnx +2 -2
miner.py
CHANGED
|
@@ -123,7 +123,7 @@ class Miner:
|
|
| 123 |
# 0.5/0.5 silently discarded many valid detections); track is the
|
| 124 |
# one class where false fires are common enough to need 0.38.
|
| 125 |
self._conf_thres_array = np.array(
|
| 126 |
-
[0.32, 0.
|
| 127 |
)
|
| 128 |
# Per-class rescue bonus: when a class has ZERO boxes passing the
|
| 129 |
# threshold in a frame, its top-1 candidate is admitted when its score
|
|
@@ -131,7 +131,8 @@ class Miner:
|
|
| 131 |
# DISABLED (all zeros): the sweep showed rescue admits more false
|
| 132 |
# positives than true positives under the validator's FP pillar.
|
| 133 |
self._bonus_array = np.array(
|
| 134 |
-
[0.
|
|
|
|
| 135 |
)
|
| 136 |
|
| 137 |
# Box sanity filter — kept loose: car-wash `nozzle` boxes are tiny
|
|
|
|
| 123 |
# 0.5/0.5 silently discarded many valid detections); track is the
|
| 124 |
# one class where false fires are common enough to need 0.38.
|
| 125 |
self._conf_thres_array = np.array(
|
| 126 |
+
[0.32, 0.30, 0.45, 0.30], dtype=np.float32
|
| 127 |
)
|
| 128 |
# Per-class rescue bonus: when a class has ZERO boxes passing the
|
| 129 |
# threshold in a frame, its top-1 candidate is admitted when its score
|
|
|
|
| 131 |
# DISABLED (all zeros): the sweep showed rescue admits more false
|
| 132 |
# positives than true positives under the validator's FP pillar.
|
| 133 |
self._bonus_array = np.array(
|
| 134 |
+
# [0.2, 0.05, 0.1, 0.15], dtype=np.float32
|
| 135 |
+
[0.05, 0.05, 0.1, 0.1], dtype=np.float32
|
| 136 |
)
|
| 137 |
|
| 138 |
# Box sanity filter — kept loose: car-wash `nozzle` boxes are tiny
|
weights.onnx
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a84425ba0a25df059bf6b90e09ae083f1d944ba69c1c05a44e4506a416ea1756
|
| 3 |
+
size 9842746
|