xsponenta commited on
Commit
56f1ec6
·
1 Parent(s): 61a6827

Lower CONF_THRESH 0.5 -> 0.4 to recover missing edges

Browse files

Single-line tuning experiment. Targets the recall bottleneck
(corner_f1 0.5104 vs leader 0.6472). With confidence threshold at 0.5,
real edges with mid-confidence model output were being filtered out.
Lowering to 0.4 trades a small amount of precision for higher recall
on segment retention, before the downstream merge / snap / hybrid_merge
post-processing further consolidates noise.

Easy revert if it regresses: change back to 0.5.

Files changed (1) hide show
  1. script.py +1 -1
script.py CHANGED
@@ -55,7 +55,7 @@ from s23dr_2026_example.postprocess_v2 import snap_to_point_cloud, snap_horizont
55
  SEQ_LEN = 4096
56
  COLMAP_QUOTA = 3072
57
  DEPTH_QUOTA = 1024
58
- CONF_THRESH = 0.5
59
  MERGE_THRESH = 0.4
60
  SNAP_RADIUS = 0.5
61
 
 
55
  SEQ_LEN = 4096
56
  COLMAP_QUOTA = 3072
57
  DEPTH_QUOTA = 1024
58
+ CONF_THRESH = 0.4
59
  MERGE_THRESH = 0.4
60
  SNAP_RADIUS = 0.5
61