Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivy-llc/gym
Fully differentiable RL environments, written in Ivy.
https://github.com/ivy-llc/gym
deep-learning gym-environment ivy jax machine-learning mxnet numpy python pytorch reinforcement-learning tensorflow
Last synced: about 3 hours ago
JSON representation
Fully differentiable RL environments, written in Ivy.
- Host: GitHub
- URL: https://github.com/ivy-llc/gym
- Owner: ivy-llc
- License: apache-2.0
- Created: 2021-01-19T15:21:19.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-08-28T07:06:41.000Z (about 1 year ago)
- Last Synced: 2024-08-22T01:34:51.842Z (3 months ago)
- Topics: deep-learning, gym-environment, ivy, jax, machine-learning, mxnet, numpy, python, pytorch, reinforcement-learning, tensorflow
- Language: Python
- Homepage: https://unify.ai
- Size: 257 KB
- Stars: 60
- Watchers: 20
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
.. image:: https://github.com/unifyai/unifyai.github.io/blob/main/img/externally_linked/logo.png?raw=true#gh-light-mode-only
:width: 100%
:class: only-light.. image:: https://github.com/unifyai/unifyai.github.io/blob/main/img/externally_linked/logo_dark.png?raw=true#gh-dark-mode-only
:width: 100%
:class: only-dark.. raw:: html
**Fully differentiable reinforcement learning environments, written in Ivy.**
.. raw:: html
Contents
--------* `Overview`_
* `Run Through`_
* `Optimization Demos`_
* `Get Involved`_Overview
--------.. _docs: https://unify.ai/docs/gym/
**What is Ivy Gym?**
Ivy Gym opens the door for intersectional research between supervised learning (SL), reinforcement learning (RL),
and trajectory optimization (TO),
by implementing RL environments in a fully differentiable manner.Specifically, Ivy gym provides differentiable implementations of the classic control tasks from OpenAI Gym,
as well as a new Swimmer task, which illustrates the simplicity of creating new tasks using Ivy.
The differentiable nature of the environments means that the cumulative reward can be directly optimized for in a supervised manner,
without need for reinforcement learning, which is the de facto approach for optimizing cumulative rewards. Check out the docs_ for more info!The library is built on top of the Ivy machine learning framework.
This means all environments simultaneously support:
Jax, Tensorflow, PyTorch, MXNet, and Numpy.**Ivy Libraries**
There are a host of derived libraries written in Ivy, in the areas of mechanics, 3D vision, robotics, gym environments,
neural memory, pre-trained models + implementations, and builder tools with trainers, data loaders and more. Click on the icons below to learn more!.. raw:: html
**Quick Start**
Ivy gym can be installed like so: ``pip install ivy-gym``
.. _demos: https://github.com/unifyai/gym/tree/main/ivy_gym_demos
.. _optimization: https://github.com/unifyai/gym/tree/main/ivy_gym_demos/optimizationTo quickly see the different environments provided, we suggest you check out the demos_!
We suggest you start by running the script ``run_through.py``,
and read the "Run Through" section below which explains this script.For demos which optimize performance on the different tasks, we suggest you run either
``optimize_trajectory.py`` or ``optimize_policy.py`` in the optimization_ demos folder.Run Through
-----------The different environments can be visualized via a simple script,
which executes random motion for 250 steps in one of the environments.
The script is available in the demos_ folder, as file ``run_through.py``.
First, we select a random backend framework to use for the examples, from the options
``jax``, ``tensorflow``, ``torch``, ``mxnet`` or ``numpy``,
and use this to set the ivy backend framework... code-block:: python
import ivy
fw = ivy.choose_random_backend()
ivy.set_backend(fw)We then select an environment to use and execute 250 random actions,
while rendering the environment after each step.By default, the demos all use the ``CartPole`` environment, but this can be changed using the ``--env`` argument,
choosing from the options ``CartPole``, ``Pendulum``, ``MountainCar``, ``Reacher`` or ``Swimmer``... code-block:: python
env = getattr(ivy_gym, env_str)()
env.reset()
ac_dim = env.action_space.shape[0]
for _ in range(250):
ac = ivy.random_uniform(low=-1, high=1, shape=(ac_dim,))
env.step(ac)
env.render()Here, we briefly discuss each of the five environments,
before showing example episodes from a learnt policy network.
We use a learnt policy in these visualizations rather than random actions as used in the script,
because we find this to be more descriptive for visually explaining each task.
We also plot the instantaneous reward corresponding to each frame.**CartPole**
For this task, a pole is attached by an un-actuated joint to a cart, which moves along a frictionless track.
The system is controlled by applying a force to the cart.
A reward is given based on the angle of the pendulum from being upright.
Example trajectories are given below... raw:: html
**MountainCar**
For this task, a car is on a one-dimensional track, positioned between two "mountains".
The goal is to drive up the mountain on the right.
However, the car's engine is not strong enough to scale the mountain in a single pass.
Therefore, the only way to succeed is to drive back and forth to build up momentum.
Here, the reward is greater if you spend less energy to reach the goal.
Example trajectories are given below... raw:: html
**Pendulum**
For this task, an inverted pendulum starts in a random position, and the goal is to swing it up so it stays upright.
Again, a reward is given based on the angle of the pendulum from being upright.
Example trajectories are given below... raw:: html
**Reacher**
For this task, a 2-link robot arm must reach a target position.
Reward is given based on the distance of the end effector to the target.
Example trajectories are given below... raw:: html
**Swimmer**
We implemented this task ourselves, in order to highlight the simplicity of creating new custom environments.
For this task, a fish must swim to reach a target 2D positions whilst avoiding sharp obstacles.
Reward is given for being close to the target, and negative reward is given for colliding with the sharp objects.
Example trajectories are given below... raw:: html
Optimization Demos
------------------We provide two demo scripts which optimize performance on these tasks in a supervised manner,
either via trajectory optimization or policy optimization.In the case of trajectory optimization, we optimize for a specific starting state of the environment,
whereas for policy optimization we train a policy network which is conditioned on the environment state,
and the starting state is then randomized between training steps.Rather than presenting the code here, we show visualizations of the demos.
The scripts for these demos can be found in the optimization_ demos folder.**Trajectory Optimization**
In this demo, we show trajectories on each of the five ivy gym environments during the course of trajectory optimization.
The optimization iteration is shown in the bottom right, along with the step in the environment... raw:: html
**Policy Optimization**
In this demo, we show trajectories on each of the five ivy gym environments during the course of policy optimization.
The optimization iteration is shown in the bottom right, along with the step in the environment... raw:: html
Get Involved
-----------We hope the differentiable environments in this library are useful to a wide range of machine learning developers.
However, there are many more tasks which could be implemented.If there are any particular tasks you feel are missing,
or you would like to implement your own custom task,
then we are very happy to accept pull requests!We look forward to working with the community on expanding and improving the Ivy gym library.
Citation
--------::
@article{lenton2021ivy,
title={Ivy: Templated deep learning for inter-framework portability},
author={Lenton, Daniel and Pardo, Fabio and Falck, Fabian and James, Stephen and Clark, Ronald},
journal={arXiv preprint arXiv:2102.02886},
year={2021}
}