kishanpb / mushroom-rl

Python library for Reinforcement Learning experiments.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MushroomRL

https://travis-ci.org/MushroomRL/mushroom-rl.svg?branch=master Documentation Status Maintainability Test Coverage

MushroomRL: Reinforcement Learning Python library.

What is MushroomRL

MushroomRL is a Python Reinforcement Learning (RL) library whose modularity allows to easily use well-known Python libraries for tensor computation (e.g. PyTorch, Tensorflow) and RL benchmarks (e.g. OpenAI Gym, PyBullet, Deepmind Control Suite). It allows to perform RL experiments in a simple way providing classical RL algorithms (e.g. Q-Learning, SARSA, FQI), and deep RL algorithms (e.g. DQN, DDPG, SAC, TD3, TRPO, PPO).

Full documentation available here.

Installation

You can do a minimal installation of MushroomRL with:

pip3 install mushroom_rl

Installing everything

To install the whole set of features, you will need additional packages installed. You can install everything by running:

pip3 install mushroom_rl '.[all]'

This will install every dependency of MushroomRL, except MuJoCo dependencies. To use the mujoco-py MushroomRL interface you can run the command:

pip3 install mushroom_rl '.[mujoco]'

You might need to install external dependencies first. For more information about mujoco-py installation follow the instructions on the project page

To use dm_control MushroomRL interface, install dm_control following the instruction that can be found here

How to set and run and experiment

To run experiments, MushroomRL requires a script file that provides the necessary information for the experiment. Follow the scripts in the "examples" folder to have an idea of how an experiment can be run.

For instance, to run a quick experiment with one of the provided example scripts, run:

python3 examples/car_on_hill_fqi.py

About

Python library for Reinforcement Learning experiments.

License:MIT License


Languages

Language:Python 100.0%Language:Makefile 0.0%