Skip to main content

A Library for Deep Reinforcement Learning

Project description

JoyRL

PyPI GitHub issues GitHub stars GitHub forks GitHub license

JoyRL is a parallel reinforcement learning library based on PyTorch and Ray. Unlike existing RL libraries, JoyRL is helping users to release the burden of implementing algorithms with tough details, unfriendly APIs, and etc. JoyRL is designed for users to train and test RL algorithms with only hyperparameters configuration, which is mush easier for beginners to learn and use. Also, JoyRL supports plenties of state-of-art RL algorithms including RLHF(core of ChatGPT)(See algorithms below). JoyRL provides a modularized framework for users as well to customize their own algorithms and environments.

Install

⚠️ Note that donot install JoyRL through any mirror image!!!

# you need to install Anaconda first
conda create -n joyrl python=3.8
conda activate joyrl
pip install -U joyrl

Torch install:

Pip install is recommended, but if you encounter network error, you can try conda install or pip install with mirrors.

# pip CPU only
pip install torch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0
# if network error, then GPU with mirror image
pip install torch==1.10.0+cu113 torchvision==0.11.0+cu113 torchaudio==0.10.0 --extra-index-url https://download.pytorch.org/whl/cu113
# CPU only
conda install pytorch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0 cpuonly -c pytorch
# GPU 
conda install pytorch==1.10.0 torchvision==0.11.0 torchaudio==0.10.0 cudatoolkit=11.3 -c pytorch -c conda-forge

Usage

Quick Start

the following presents a demo to use joyrl. As you can see, first create a yaml file to config hyperparameters, then run the command as below in your terminal. That's all you need to do to train a DQN agent on CartPole-v1 environment.

joyrl --yaml ./presets/ClassControl/CartPole-v1/CartPole-v1_DQN.yaml

or you can run the following code in your python file.

import joyrl
if __name__ == "__main__":
    print(joyrl.__version__)
    yaml_path = "./presets/ClassControl/CartPole-v1/CartPole-v1_DQN.yaml"
    joyrl.run(yaml_path = yaml_path)

Documentation

More tutorials and API documentation are hosted on JoyRL docs or JoyRL 中文文档.

Algorithms

Name Reference Author Notes
Q-learning RL introduction johnjim0816
Sarsa RL introduction johnjim0816
DQN DQN Paper johnjim0816
Double DQN DoubleDQN Paper johnjim0816
Dueling DQN DuelingDQN Paper johnjim0816
NoisyDQN NoisyDQN Paper johnjim0816
DDPG DDPG Paper johnjim0816
TD3 TD3 Paper johnjim0816
PPO PPO Paper johnjim0816

Why JoyRL?

RL Platform GitHub Stars # of Alg. (1) Custom Env Async Training RNN Support Multi-Head Observation Backend
Baselines GitHub stars 9 :heavy_check_mark: (gym) :x: :heavy_check_mark: :x: TF1
Stable-Baselines GitHub stars 11 :heavy_check_mark: (gym) :x: :heavy_check_mark: :x: TF1
Stable-Baselines3 GitHub stars 7 :heavy_check_mark: (gym) :x: :x: :heavy_check_mark: PyTorch
Ray/RLlib GitHub stars 16 :heavy_check_mark: :heavy_check_mark: :heavy_check_mark: :heavy_check_mark: TF/PyTorch
SpinningUp GitHub stars 6 :heavy_check_mark: (gym) :x: :x: :x: PyTorch
Dopamine GitHub stars 7 :x: :x: :x: :x: TF/JAX
ACME GitHub stars 14 :heavy_check_mark: (dm_env) :x: :heavy_check_mark: :heavy_check_mark: TF/JAX
keras-rl GitHub stars 7 :heavy_check_mark: (gym) :x: :x: :x: Keras
cleanrl GitHub stars 9 :heavy_check_mark: (gym) :x: :x: :x: poetry
rlpyt GitHub stars 11 :x: :x: :heavy_check_mark: :heavy_check_mark: PyTorch
ChainerRL GitHub stars 18 :heavy_check_mark: (gym) :x: :heavy_check_mark: :x: Chainer
Tianshou GitHub stars 20 :heavy_check_mark: (Gymnasium) :x: :heavy_check_mark: :heavy_check_mark: PyTorch
JoyRL GitHub stars 9 :heavy_check_mark: (Gymnasium) :heavy_check_mark: :heavy_check_mark: :heavy_check_mark: PyTorch

Here are some other highlghts of JoyRL:

  • Provide a series of Chinese courses JoyRL Book (with the English version in progress), suitable for beginners to start with a combination of theory

Contributors

pic
John Jim

Peking University

pic
Qi Wang

Shanghai Jiao Tong University

pic
Yiyuan Yang

University of Oxford

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

joyrl-0.5.2.tar.gz (66.7 kB view hashes)

Uploaded Source

Built Distribution

joyrl-0.5.2-py3-none-any.whl (92.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page