-
Notifications
You must be signed in to change notification settings - Fork 537
Description
When I finish training my data set, I get latest.pt, errors are reported when tracking with this weight as follows:
File "E:\python_workspace\JDE\track.py", line 203, in
main(opt,
File "E:\python_workspace\JDE\track.py", line 139, in main
nf, ta, tc = eval_seq(opt, dataloader, data_type, result_filename,
File "E:\python_workspace\JDE\track.py", line 90, in eval_seq
online_targets = tracker.update(blob, img0)
File "E:\python_workspace\JDE\tracker\multitracker.py", line 318, in update
track.activate(self.kalman_filter, self.frame_id)
File "E:\python_workspace\JDE\tracker\multitracker.py", line 63, in activate
self.mean, self.covariance = self.kalman_filter.initiate(self.tlwh_to_xyah(self._tlwh))
ZeroDivisionError: division by zero
How to solve this problem?