• Stars
    star
    219
  • Rank 179,957 (Top 4 %)
  • Language
    Jupyter Notebook
  • Created over 4 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Deep RL algorithm in pytorch

WTF 深度强化学习

WTF 深度强化学习算法库及教程,学习并复现经典的深度强化学习算法。

深度强化学习算法使用pytorch实现,写在jupyter notebook中。用Atari Games中的Pong测试。

先修课程

  1. 机器学习/深度学习

  2. python编程

  3. 经典强化学习

目录

第1讲:Deep Q-learning文章 | Code | Google Colab

第2讲:Prioritized Experience Replay (PER)代码 | 文章

第3讲:Double DQN (DDQN)代码 | 文章

第4讲:Dueling DQN代码 | 文章

第5讲:DQN with Soft Update (Soft DQN)代码 | 文章

第6讲:DQN with Noisy Net代码 | 文章

第7讲:DQN with Intrinsic Curiosity Module代码 | 文章

第8讲:Deep Recurrent Q-learning (DRQN)代码 | 文章

第9讲:N-step DQN代码 | 文章

Prerequisite

  • torch 1.4.0
  • gym[atari]
  • tensorboardX

其他深度强化学习算法库 (pytorch)