2021-07-28 22:21:47 -04:00
2021-07-28 20:26:34 -04:00
2021-07-28 20:26:34 -04:00
2021-07-28 20:26:34 -04:00
2021-07-28 20:26:34 -04:00
2021-07-28 20:26:34 -04:00
2016-08-10 16:12:51 -07:00
2021-07-27 14:14:21 -04:00
2017-12-26 09:09:01 +13:00
2021-07-28 22:06:19 -04:00
2021-07-27 12:35:48 -04:00
2021-07-28 20:26:34 -04:00

Gym is now being maintained, but new major features are not intended. See this post for more information.

Gym

Gym is an opensource Python library for developing and comparing reinforcement learning algorithms by providing a standard API to communicate between learning algorithms and environments and a standard set of environments compliant with that API. Since it's release, Gym's API has became the field standard for doing this.

Gym currently has two pieces of documentation- the documentation website and the FAQ. A new and more comprehensive documentation website is in the works.

Installation

To install the base Gym library, use pip install gym.

This does not include dependencies for all families of environments (there's a massive number, and some can be problematic to install on certain systems). You can install these dependencies for one family like pip install gym[atari] or use pip install pettingzoo[gym] to install all dependencies.

We support Python 3.6, 3.7, 3.8 and 3.9 on Linux and macOS. We will accept PRs related to Windows, but do not officially support it.

API

If someone would be willing to make a PR for this section in the style of same section the PettingZoo readme.md I would greatly appreciate it. If not, I'll deal with this later.

  • Stable Baselines 3 is a learning library based on the Gym API. It is our recommendation for beginners who want to start learning things quickly.
  • RL Baselines3 Zoo builds upon SB3, containing optimal hyperparameters for Gym environments as well as code to easily find new ones. Such tuning is almost always required.
  • The Autonomous Learning Library and Tianshou are two reinforcement learning libraries I like that are generally geared towards more experienced users.
  • PettingZoo is like Gym, but for environments with multiple agents.
  • SuperSuit contains preprocessing wrappers for Gym (and PettingZoo) environments. They're like the old ones in Gym except comprehensive, documented, versioning for reproducibility and are better in almost every way. The built in wrappers in Gym are being deprecated in favor of these.

Environment Versioning

Gym keeps strict versioning for reproducibility reasons. All environments end in a suffix like "_v0". When changes are made to environments that might impact learning results, the number is increased by one to prevent potential confusion.

Citation

A whitepaper from when OpenAI Gym just came out is available http://arxiv.org/abs/1606.0154, and can be cited with the following bibtex entry:

@misc{1606.01540,
  Author = {Greg Brockman and Vicki Cheung and Ludwig Pettersson and Jonas Schneider and John Schulman and Jie Tang and Wojciech Zaremba},
  Title = {OpenAI Gym},
  Year = {2016},
  Eprint = {arXiv:1606.01540},
}

Release Notes

There used to be release notes for all the new Gym versions here. New release notes are being moved to releases page on GitHub, like most other libraries do. Old notes can be viewed here.

Description
A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym)
Readme MIT 426 MiB
Languages
Python 99.9%