OpenAI Gym
This is the foundational environment to how any Reinforcement Learning algorithm works.
Documentation: https://www.gymlibrary.dev/
Really simple baseline code
https://towardsdatascience.com/reinforcement-learning-with-openai-d445c2c687d2
https://towardsdatascience.com/getting-started-with-openai-gym-d2ac911f5cbc#:~:
Personal Learnings
Instead of env.step()
, you can do env.vec_step()
to step in parallel?