/deep-RL-elements

Deep RL algorithm in pytorch

Primary LanguageJupyter Notebook

Deep RL elements

pytorch深度强化学习算法库及教程,2020年在知乎上连载。

代码写在jupyter notebook中。算法用Atari Games测试,大部分用的Pong。

第1讲:Deep Q-learning代码 | 文章

第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)