TrackEval icon indicating copy to clipboard operation
TrackEval copied to clipboard

Evaluation script not running properly when specifying SEQMAP_FILE in command line

Open bkkm78 opened this issue 2 years ago • 1 comments

When running scripts/run_mot_challenge.py and specifying SEQMAP_FILE in the command line, the script crashes. This is because the script parses this argument as a list (line 56) while /trackeval/datasets/mot_challenge_2d_box.py expects it to be a string (line 156).

bkkm78 avatar May 02 '22 21:05 bkkm78

I second this. A workaround is adding the following after line 74 in scripts/run_mot_challenge.py

elif setting == 'SEQMAP_FILE':
    assert len(args[setting])== 1
    x = args[setting][0]

Peterbotliang avatar Aug 18 '22 22:08 Peterbotliang