You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to run the included LunarLander example, using the evolve.py file and the associated config file. I have not modified either of these files but receive this error. The config file is set to 8 input nodes so somewhere along the line that must be changed or overwritten by other code. I've come across others having the same issue but haven't found a solution. Any help would be massively appreciated, thanks.
The text was updated successfully, but these errors were encountered:
This seems to be caused by some changes in the OpenAI code that to have been addressed in PR #252, but for some reason, that PR's yet to be merged.
Quick Fix:
Replace line 89 & 200 of evolve.py with observation, info = env.reset() (to fix your error)
Replace line 100 & 218 of evolve.py with observation, reward, done, truncated, info = env.step(best_action) (to fix a similar error)
I'm trying to run the included LunarLander example, using the evolve.py file and the associated config file. I have not modified either of these files but receive this error. The config file is set to 8 input nodes so somewhere along the line that must be changed or overwritten by other code. I've come across others having the same issue but haven't found a solution. Any help would be massively appreciated, thanks.
The text was updated successfully, but these errors were encountered: