How to create a new gym environment in OpenAI?

See my banana-gym for an extremely small environment. Create new environments See the main page of the repository: https://github.com/openai/gym/blob/master/docs/creating_environments.md The steps are: Create a new repository with a PIP-package structure It should look like this gym-foo/ README.md setup.py gym_foo/ __init__.py envs/ __init__.py foo_env.py foo_extrahard_env.py For the contents of it, follow the link above. Details which … Read more