Skip to content

Commit a62024a

Browse files
Bordaclaude
andcommitted
optimize(i10): align bytetrack defaults with Optuna-calibrated values
Apply Optuna-found parameter values as new defaults: lost_track_buffer 30→62, track_activation_threshold 0.7→0.314, q_scale 0.01→0.00246, r_scale 0.1→0.292, p_scale 1.0→7.34, velocity_decay 0.95→0.817, q_miss_alpha 0.1→0.461, max_interpolation_gap 20→30, p_reset_threshold 5→13; HOTA 56.781→57.424 (+1.13%) --- Co-authored-by: Claude Code <noreply@anthropic.com>
1 parent bfb8903 commit a62024a

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

autotrack/default_config.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22
"_comment": "Default tracker parameters used for baseline evaluation (--n-trials 1).",
33
"_edit_here": "Edit this file to change defaults. Do not hard-code values in optimize_tracking.py.",
44
"bytetrack": {
5-
"lost_track_buffer": 30,
6-
"track_activation_threshold": 0.7,
5+
"lost_track_buffer": 62,
6+
"track_activation_threshold": 0.314,
77
"minimum_consecutive_frames": 2,
8-
"minimum_iou_threshold": 0.1,
8+
"minimum_iou_threshold": 0.109,
99
"stage2_iou_threshold": 0.05,
1010
"iou_age_weight": 0.03,
1111
"high_conf_det_threshold": 0.6,
12-
"q_scale": 0.01,
13-
"r_scale": 0.1,
14-
"p_scale": 1.0,
15-
"velocity_decay": 0.95,
16-
"q_miss_alpha": 0.1,
17-
"max_interpolation_gap": 20,
18-
"p_reset_threshold": 5,
12+
"q_scale": 0.00246,
13+
"r_scale": 0.292,
14+
"p_scale": 7.34,
15+
"velocity_decay": 0.817,
16+
"q_miss_alpha": 0.461,
17+
"max_interpolation_gap": 30,
18+
"p_reset_threshold": 13,
1919
"oru_threshold": 2
2020
},
2121
"sort": {

0 commit comments

Comments
 (0)