-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error #18
Comments
i also get that error,have you solved it? |
At the command prompt, type: pip install numpy. |
This may be related to your Python environment, my Python environment is as fallows: python=3.6 |
I face it too, my environment is apple arm.My conda do not support python3.6 |
"last_track[TRACK_ID]" is ndarray, and "track[TRACK_ID]" in the following code is the same format.Simply convert the last_track[TRACK_ID] in ndarray format to type int to run successfully,like :"self.maximum_frames = self.static_info[int(last_track[TRACK_ID])][FINAL_FRAME] - 1" |
Hi!
When i run the main.py i get the following error:
self.maximum_frames = self.static_info[(last_track[TRACK_ID])][FINAL_FRAME] - 1
TypeError: unhashable type: 'numpy.ndarray'
Any fix?
Thanks!
The text was updated successfully, but these errors were encountered: