Standardized RL benchmarks and environments
Blog PostRelease of OpenAI Gym, a toolkit for developing and comparing reinforcement learning algorithms, providing standardized environments and benchmarks for the RL research community.
OpenAI Gym provided a standardized interface for RL environments, from simple cart-pole balancing to Atari games to continuous control. The key insight was that RL needed what MNIST and ImageNet had given supervised learning: shared benchmarks that enabled apples-to-apples comparison.
The toolkit was open-source and language-agnostic, with a simple API: env.reset(), env.step(action), env.render().