open-mmlab/mmdetection

The same model and the same configuration file, inference _ detector and inference _ mot results are not the same.

zbl929 opened this issue · 0 comments

I used the track function in mmdet, and I trained the detector and reid.
Initialize : trackor = init _ track _ model (
args.tracking _ config, args.det _ checkpoint, args.reid _ checkpoint, None, device = args.device ).

In inference _ mot, I only printed the result of the detector, which is different from what I expected.
Next, I use the same detector weight and configuration file, where the configuration file is the same as the detector part model configuration in the track.
Initialization : detector = init _ detector (
args.det _ config, args.det _ checkpoint, device = args.device )

The output of inference _ detector is different from the result of detector in the above track.