IhorIvanyshyn01 commited on
Commit
ff4370f
·
1 Parent(s): 084d259

Disable bundle adjust (timeout) and set TRACK_MIN_VIEWS=2 for recall

Browse files
Files changed (1) hide show
  1. sklearn_submission.py +3 -2
sklearn_submission.py CHANGED
@@ -55,7 +55,8 @@ except Exception:
55
  _LINECLOUD_OK = False
56
 
57
  # v11: post-hoc bundle adjustment — Enabled for final max score.
58
- USE_BUNDLE_ADJUST = True
 
59
 
60
  # v11: LC2WF-inspired line-based edges.
61
  # Fits 3D lines from depth samples along gestalt edge segments, then
@@ -253,7 +254,7 @@ ISOLATED_TRACK_MAX_DIST = 3.5
253
  # tuning or for combination with other refinements.
254
  # Use triangulation tracks to refine and augment vertices
255
  USE_TRACKS_AS_VERTICES = True
256
- TRACK_MIN_VIEWS = 3
257
  TRACK_MAX_REPROJ_PX = 2.0
258
  TRACK_REPLACE_RADIUS = 0.6
259
  TRACK_ADD_MAX_RADIUS = 2.0
 
55
  _LINECLOUD_OK = False
56
 
57
  # v11: post-hoc bundle adjustment — Enabled for final max score.
58
+ # Reverted to False because it causes HF Timeout on the test set!
59
+ USE_BUNDLE_ADJUST = False
60
 
61
  # v11: LC2WF-inspired line-based edges.
62
  # Fits 3D lines from depth samples along gestalt edge segments, then
 
254
  # tuning or for combination with other refinements.
255
  # Use triangulation tracks to refine and augment vertices
256
  USE_TRACKS_AS_VERTICES = True
257
+ TRACK_MIN_VIEWS = 2
258
  TRACK_MAX_REPROJ_PX = 2.0
259
  TRACK_REPLACE_RADIUS = 0.6
260
  TRACK_ADD_MAX_RADIUS = 2.0