We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
I tried to run DQNdrone.py (https://github.com/microsoft/AirSim/blob/master/PythonClient/multirotor/DQNdrone.py), and i competed setting the point to fly, but it got error (MemoryError: Unable to allocate array with shape (500000, 84, 84) and data type float32). I wonder if you can tell me what mean it is.
appreciate
The text was updated successfully, but these errors were encountered:
A quick calculation shows it's trying to allocate roughly 13 GB of memory
>>> (1.0 * 500000 * 84 * 84 * 32) / (8 * 1024 * 1024 * 1024) 13.142824172973633
Try modifying the values here - https://github.com/microsoft/AirSim/blob/master/PythonClient/multirotor/DQNdrone.py#L254
I haven't actually ran this till now, so just a suggestion, hope it helps!
Sorry, something went wrong.
Thank you i will try it later
No branches or pull requests
I tried to run DQNdrone.py
(https://github.com/microsoft/AirSim/blob/master/PythonClient/multirotor/DQNdrone.py), and i competed setting the point to fly, but it got error
(MemoryError: Unable to allocate array with shape (500000, 84, 84) and data type float32).
I wonder if you can tell me what mean it is.
appreciate
The text was updated successfully, but these errors were encountered: