Skip to content

Commit 0970c48

Browse files
committed
Improved documentation in config
1 parent 3b6596f commit 0970c48

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

cameltrack/configs/modules/track/camel.yaml

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
11
_target_: cameltrack.CAMELTrack
22

33
training_enabled: false
4-
checkpoint_path: "${model_dir}/camel/camel_bbox_app_kps_dancetrack.ckpt"
5-
override_camel_cfg: {}
64
checkpoint_path: "${model_dir}/camel/camel_bbox_app_kps_global.ckpt"
5+
# Available checkpoints:
6+
# camel_bbox_app_global.ckpt | camel_bbox_app_kps_dancetrack.ckpt | camel_bbox_app_kps_sportsmot.ckpt
7+
# camel_bbox_app_kps_mot17.ckpt | camel_bbox_app_kps_posetrack21.ckpt | camel_bbox_bee24.ckpt
8+
# camel_bbox_app_dancetrack.ckpt
9+
override_camel_cfg:
10+
# Override the default CAMEL configuration when loading the checkpoint
11+
sim_threshold: 0.5 # DanceTrack/SportsMOT 0.1 | MOT17 0.475 | PoseTrack 0.45 | BEE24 0.6
712

8-
min_det_conf: 0.4
9-
min_init_det_conf: 0.6
10-
min_num_hits: 0
11-
max_wo_hits: 150
12-
max_track_gallery_size: 50
13+
# Tracklet Management Parameters
14+
min_det_conf: 0.4 # Minimum detection confidence to consider a detection
15+
min_init_det_conf: 0.6 # Minimum detection confidence to initialize a tracklet
16+
min_num_hits: 0 # Number of hits to consider a tracklet valid
17+
max_wo_hits: 150 # Maximum number of frames without hits to consider a tracklet invalid
18+
max_track_gallery_size: 50 # Gallery size for the Temporal Encoder
1319

1420
CAMEL:
1521
_target_: cameltrack.CAMEL
16-
sim_threshold: 0.1
22+
# Model Configuration
23+
sim_threshold: 0.1 # Similarity threshold for detection/tracklet matching (0.0 to 1.0)
1724
use_computed_sim_threshold: false
1825
gaffe:
1926
_target_: cameltrack.architecture.GAFFE

0 commit comments

Comments
 (0)