Hello,
I'm trying to re-use your model either on the SporsMOT dataset or my own dataset but in each case, I don't obtain any result using your tracking experiment :
'''
python3 tools/track_mixsort.py -expn SportsMOT -f exps/example/mot/yolox_x_sportsmot.py -c pretrained/yolox_x_sports_train.pth.tar -b 1 -d 1 --config track
'''
I tried to understand where the issue was detected, and I found it during the model inference.
My guess would be on the input size and the parameters of the experiment.
Either the SportsMOT or my own dataset contains images with (720, 1280, 3) shapes. Therefore I changed the experiment parameters with the following input and test size :

However, I obtain errors during the model inference :

The script quits after the previous screen.
Maybe I forgot a preprocessing step to have the right size of the input (I also tried with the raw parameters of the GitHub, i.e. self.test_size = (800, 1440), wasn't working too)
Hello,
I'm trying to re-use your model either on the SporsMOT dataset or my own dataset but in each case, I don't obtain any result using your tracking experiment :
'''
python3 tools/track_mixsort.py -expn SportsMOT -f exps/example/mot/yolox_x_sportsmot.py -c pretrained/yolox_x_sports_train.pth.tar -b 1 -d 1 --config track
'''
I tried to understand where the issue was detected, and I found it during the model inference.
My guess would be on the input size and the parameters of the experiment.
Either the SportsMOT or my own dataset contains images with (720, 1280, 3) shapes. Therefore I changed the experiment parameters with the following input and test size :
However, I obtain errors during the model inference :
The script quits after the previous screen.
Maybe I forgot a preprocessing step to have the right size of the input (I also tried with the raw parameters of the GitHub, i.e. self.test_size = (800, 1440), wasn't working too)