https://github.com/balisujohn/gymnasium

A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym)

https://github.com/balisujohn/gymnasium

Science Score: 10.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
    Links to: arxiv.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (15.8%) to scientific vocabulary
Last synced: 10 months ago · JSON representation

Repository

A standard API for reinforcement learning and a diverse set of reference environments (formerly Gym)

Basic Info
  • Host: GitHub
  • Owner: balisujohn
  • License: other
  • Language: Python
  • Default Branch: main
  • Size: 86 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Fork of Farama-Foundation/Gymnasium
Created almost 4 years ago · Last pushed over 3 years ago
Metadata Files
Readme Contributing License Code of conduct

README.md

pre-commit Code style: black

Important notice

Due to issues with the domain registration, the documentation has been moved to https://www.gymlibrary.dev/ as opposed to the old .ml address.

Gym

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

Gym documentation website is at https://www.gymlibrary.dev/, and you can propose fixes and changes to it here.

Gym also has a discord server for development purposes that you can join here: https://discord.gg/nHg2JRN489

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 gym[all] to install all dependencies.

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

API

The Gym API's API models environments as simple Python env classes. Creating environment instances and interacting with them is very simple- here's an example using the "CartPole-v1" environment:

```python import gym env = gym.make("CartPole-v1") observation, info = env.reset(seed=42)

for _ in range(1000): action = env.action_space.sample() observation, reward, terminated, truncarted, info = env.step(action)

if terminated or truncated:
    observation, info = env.reset()

env.close() ```

Notable Related Libraries

  • Stable Baselines 3 is a learning library based on the Gym API. It is designed to cater to complete beginners in the field 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.
  • Tianshou is a learning library that's geared towards very experienced users and is design to allow for ease in complex algorithm modifications.
  • RLlib is a learning library that allows for distributed training and inferencing and supports an extraordinarily large number of features throughout the reinforcement learning space.
  • PettingZoo is like Gym, but for environments with multiple agents.

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.

MuJoCo Environments

The latest "_v4" and future versions of the MuJoCo environments will no longer depend on mujoco-py. Instead mujoco will be the required dependency for future gym MuJoCo environment versions. Old gym MuJoCo environment versions that depend on mujoco-py will still be kept but unmaintained. To install the dependencies for the latest gym MuJoCo environments use pip install gym[mujoco]. Dependencies for old MuJoCo environments can still be installed by pip install gym[mujoco_py].

Citation

A whitepaper from when Gym just came out is available https://arxiv.org/pdf/1606.01540, 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.

Owner

  • Name: John Balis
  • Login: balisujohn
  • Kind: user

Pursuing a Doctorate of Computer Sciences at UW Madison. Interested in reinforcement learning. My focus is primarily sim2real RL for robotics.

GitHub Events

Total
Last Year

Dependencies

.github/workflows/build-publish.yml actions
  • actions/checkout v3 composite
  • actions/download-artifact v2 composite
  • actions/setup-python v2 composite
  • actions/upload-artifact v2 composite
  • pypa/gh-action-pypi-publish release/v1 composite
.github/workflows/build.yml actions
  • actions/checkout v2 composite
.github/workflows/pre-commit.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
requirements.txt pypi
  • ale-py *
  • box2d-py ==2.3.5
  • cloudpickle >=1.2.0
  • dataclasses ==0.8
  • gym_notices >=0.0.4
  • imageio >=2.14.1
  • importlib_metadata >=4.8.0
  • lz4 >=3.1.0
  • matplotlib >=3.0
  • mujoco ==2.2.0
  • mujoco_py <2.2,>=2.1
  • numpy >=1.18.0
  • opencv-python >=3.0
  • pygame ==2.1.0
  • typing_extensions ==4.3.0
setup.py pypi
  • cloudpickle *
  • dataclasses *
  • gym_notices *
  • importlib_metadata *
  • numpy *
test_requirements.txt pypi
  • box2d-py ==2.3.5 test
  • imageio >=2.14.1 test
  • lz4 >=3.1.0 test
  • matplotlib >=3.0 test
  • mujoco ==2.2.0 test
  • mujoco_py <2.2,>=2.1 test
  • opencv-python >=3.0 test
  • pygame ==2.1.0 test
  • pytest ==7.0.1 test