All Projects → ZhengXinyue → Deep-rl-mxnet

ZhengXinyue / Deep-rl-mxnet

Licence: other
Mxnet implementation of Deep Reinforcement Learning papers, such as DQN, PG, DDPG, PPO

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Deep-rl-mxnet

Deep-Reinforcement-Learning-With-Python
Master classic RL, deep RL, distributional RL, inverse RL, and more using OpenAI Gym and TensorFlow with extensive Math
Stars: ✭ 222 (+753.85%)
Mutual labels:  deep-reinforcement-learning, dqn, policy-gradient, ddpg, a2c, td3
rl implementations
No description or website provided.
Stars: ✭ 40 (+53.85%)
Mutual labels:  deep-reinforcement-learning, dqn, policy-gradient, ddpg, a2c
Deeprl
Modularized Implementation of Deep RL Algorithms in PyTorch
Stars: ✭ 2,640 (+10053.85%)
Mutual labels:  deep-reinforcement-learning, dqn, ddpg, a2c, td3
Tianshou
An elegant PyTorch deep reinforcement learning library.
Stars: ✭ 4,109 (+15703.85%)
Mutual labels:  dqn, policy-gradient, ddpg, a2c, td3
Rainy
☔ Deep RL agents with PyTorch☔
Stars: ✭ 39 (+50%)
Mutual labels:  deep-reinforcement-learning, dqn, ddpg, a2c, td3
ReinforcementLearningZoo.jl
juliareinforcementlearning.org/
Stars: ✭ 46 (+76.92%)
Mutual labels:  dqn, ddpg, a2c, td3
Deep Reinforcement Learning
Repo for the Deep Reinforcement Learning Nanodegree program
Stars: ✭ 4,012 (+15330.77%)
Mutual labels:  deep-reinforcement-learning, dqn, reinforcement-learning-algorithms, ddpg
LWDRLC
Lightweight deep RL Libraray for continuous control.
Stars: ✭ 14 (-46.15%)
Mutual labels:  deep-reinforcement-learning, policy-gradient, ddpg, td3
Minimalrl
Implementations of basic RL algorithms with minimal lines of codes! (pytorch based)
Stars: ✭ 2,051 (+7788.46%)
Mutual labels:  deep-reinforcement-learning, dqn, ddpg, a2c
Easy Rl
强化学习中文教程,在线阅读地址:https://datawhalechina.github.io/easy-rl/
Stars: ✭ 3,004 (+11453.85%)
Mutual labels:  deep-reinforcement-learning, dqn, policy-gradient, ddpg
Pytorch Rl
This repository contains model-free deep reinforcement learning algorithms implemented in Pytorch
Stars: ✭ 394 (+1415.38%)
Mutual labels:  deep-reinforcement-learning, dqn, policy-gradient, ddpg
ElegantRL
Scalable and Elastic Deep Reinforcement Learning Using PyTorch. Please star. 🔥
Stars: ✭ 2,074 (+7876.92%)
Mutual labels:  dqn, ddpg, a2c, td3
Paddle-RLBooks
Paddle-RLBooks is a reinforcement learning code study guide based on pure PaddlePaddle.
Stars: ✭ 113 (+334.62%)
Mutual labels:  dqn, policy-gradient, ddpg, td3
Pytorch Drl
PyTorch implementations of various Deep Reinforcement Learning (DRL) algorithms for both single agent and multi-agent.
Stars: ✭ 233 (+796.15%)
Mutual labels:  deep-reinforcement-learning, dqn, ddpg
Reinforcement Learning
Minimal and Clean Reinforcement Learning Examples
Stars: ✭ 2,863 (+10911.54%)
Mutual labels:  deep-reinforcement-learning, dqn, policy-gradient
deeprl-continuous-control
Learning Continuous Control in Deep Reinforcement Learning
Stars: ✭ 14 (-46.15%)
Mutual labels:  deep-reinforcement-learning, reinforcement-learning-algorithms, ddpg
Machine Learning Is All You Need
🔥🌟《Machine Learning 格物志》: ML + DL + RL basic codes and notes by sklearn, PyTorch, TensorFlow, Keras & the most important, from scratch!💪 This repository is ALL You Need!
Stars: ✭ 173 (+565.38%)
Mutual labels:  deep-reinforcement-learning, dqn, ddpg
yarll
Combining deep learning and reinforcement learning.
Stars: ✭ 84 (+223.08%)
Mutual labels:  deep-reinforcement-learning, policy-gradient, reinforcement-learning-algorithms
pytorch-rl
Pytorch Implementation of RL algorithms
Stars: ✭ 15 (-42.31%)
Mutual labels:  dqn, reinforcement-learning-algorithms, ddpg
Deep Reinforcement Learning Algorithms
31 projects in the framework of Deep Reinforcement Learning algorithms: Q-learning, DQN, PPO, DDPG, TD3, SAC, A2C and others. Each project is provided with a detailed training log.
Stars: ✭ 167 (+542.31%)
Mutual labels:  deep-reinforcement-learning, dqn, ddpg

Deep-rl-mxnet

Mxnet implementation of Deep Reinforcement Learning papers.

Now this repository contains:

  1. DQN [code]
  1. Double DQN [code]
  1. Dueling DQN [code]
  1. Policy Gradient [code]
  1. Deep Deterministic Policy Gradient [code] (Detailed implementation)
  1. Proximal Policy Optimization [code]
  1. TD3 [code] (Very detailed implementation)
  1. A2C [code]

Installation

$ git clone https://github.com/ZhengXinyue/Deep-rl-mxnet
$ cd Deep-rl-mxnet

create & activate virtual env then install dependency:

with venv/virtualenv + pip:

$ python -m venv env  # use `virtualenv env` for Python2, use `python3 ...` for Python3 on Linux & macOS
$ source env/bin/activate  # use `env\Scripts\activate` on Windows
$ pip install -r requirements.txt

If you get something like this:

unable to execute 'swig': No such file or directory

do:

sudo apt-get install swig

Mujoco Installation(Optional):

Please refer to this repository

Examples:

image
image
image
image
image
image
image
image

Maybe In the future:

  1. SAC
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].