You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Standard Error:
Traceback (most recent call last):
File "/home/kozakmv/Programming/Python/boxmot/tracking/val_utils/scripts/run_mot_challenge.py", line 84, in <module>
dataset_list = [trackeval.datasets.MotChallenge2DBox(dataset_config)]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/kozakmv/Programming/Python/boxmot/tracking/val_utils/trackeval/datasets/mot_challenge_2d_box.py", line 124, in __init__
raise TrackEvalException(
trackeval.utils.TrackEvalException: Tracker file not found: //MOT17-05.txt
At the same time, command with option --yolo-model yolov8x.pt or --yolo-model yolo11x.pt worked fine, so bug can be reproduced only while there are multiple detectors.
That's why at the first time path tracking/val_utils/data/MOT17/train becomes tracking/val_utils/data/MOT17/train/img1 and everything is ok, but second time it becomes tracking/val_utils/data/MOT17/train/img1/img1, while mot_folder_paths becomes not a list of directories, but list of .txt files and it is wrong.
P. S. I would like to add that main problem here is in idea of reassignment args, passed to the script. Sometimes it looks easier to change it and make things work, but later it reminds you why is it anti-pattern 😄
Search before asking
Yolo Tracking Component
Tracking
Bug
After running script with command:
I am getting this error:
At the same time, command with option
--yolo-model yolov8x.pt
or--yolo-model yolo11x.pt
worked fine, so bug can be reproduced only while there are multiple detectors.After debugging I've found that problem is in reassignment of
source
option:That's why at the first time path
tracking/val_utils/data/MOT17/train
becomestracking/val_utils/data/MOT17/train/img1
and everything is ok, but second time it becomestracking/val_utils/data/MOT17/train/img1/img1
, whilemot_folder_paths
becomes not a list of directories, but list of.txt
files and it is wrong.P. S. I would like to add that main problem here is in idea of reassignment args, passed to the script. Sometimes it looks easier to change it and make things work, but later it reminds you why is it anti-pattern 😄
Environment
Doesn't matter
Minimal Reproducible Example
The text was updated successfully, but these errors were encountered: