Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
johnjim0816 committed Mar 23, 2021
1 parent 5d8bf48 commit 4237a17
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,20 @@
| [第十三章 AlphaStar 论文解读](https://datawhalechina.github.io/easy-rl/#/chapter13/chapter13) |||
## 算法代码实现一览

| 算法名称 | 相关论文材料 | 备注 | 进度 |
| :----------------------------------------------------------: | :---------------------------------------------------------: | :----------------------------------------------------------: | :--: |
| [On-Policy First-Visit MC](https://github.com/datawhalechina/easy-rl/tree/master/codes/MonteCarlo) | | 蒙特卡洛算法 | OK |
| [Q-Learning](https://github.com/datawhalechina/easy-rl/tree/master/codes/QLearning) | | | OK |
| [Sarsa](https://github.com/datawhalechina/easy-rl/tree/master/codes/Sarsa) | | | OK |
| [DQN](https://github.com/datawhalechina/easy-rl/tree/master/codes/DQN) | [DQN-paper](https://www.cs.toronto.edu/~vmnih/docs/dqn.pdf) | | OK |
| DQN-cnn | [DQN-paper](https://www.cs.toronto.edu/~vmnih/docs/dqn.pdf) | 与DQN相比使用了CNN而不是全链接网络 | OK |
| [DoubleDQN](https://github.com/datawhalechina/easy-rl/tree/master/codes/DoubleDQN) | | | OK |
| Hierarchical DQN | [Hierarchical DQN](https://arxiv.org/abs/1604.06057) | | |
| [PolicyGradient](https://github.com/datawhalechina/easy-rl/tree/master/codes/PolicyGradient) | | | OK |
| [A2C](https://github.com/datawhalechina/easy-rl/tree/master/codes/A2C) | | | OK |
| [PPO](https://github.com/datawhalechina/easy-rl/tree/master/codes/PPO) | [PPO paper](https://arxiv.org/abs/1707.06347) | [PPO算法实战](https://blog.csdn.net/JohnJim0/article/details/115126363) | OK |
| DDPG | [DDPG Paper](https://arxiv.org/abs/1509.02971) | | OK |
| TD3 | [Twin Dueling DDPG Paper](https://arxiv.org/abs/1802.09477) | | |
| 算法名称 | 相关论文材料 | 备注 | 进度 |
| :----------------------------------------------------------: | :---------------------------------------------------------: | :----------------------------------------------------------: | :----------------------------------------------------------: |
| [On-Policy First-Visit MC](https://github.com/datawhalechina/easy-rl/tree/master/codes/MonteCarlo) | | 蒙特卡洛算法 | [Racetrack](https://github.com/datawhalechina/easy-rl/blob/master/codes/envs/racetrack_env.md) |
| [Q-Learning](https://github.com/datawhalechina/easy-rl/tree/master/codes/QLearning) | | | [CliffWalking-v0](https://github.com/datawhalechina/easy-rl/blob/master/codes/envs/gym_info.md) |
| [Sarsa](https://github.com/datawhalechina/easy-rl/tree/master/codes/Sarsa) | | | [Racetrack](https://github.com/datawhalechina/easy-rl/blob/master/codes/envs/racetrack_env.md) |
| [DQN](https://github.com/datawhalechina/easy-rl/tree/master/codes/DQN) | [DQN-paper](https://www.cs.toronto.edu/~vmnih/docs/dqn.pdf) | [DQN算法实战](https://blog.csdn.net/JohnJim0/article/details/109557173) | [CartPole-v0](https://github.com/datawhalechina/easy-rl/blob/master/codes/envs/gym_info.md) |
| DQN-cnn | [DQN-paper](https://www.cs.toronto.edu/~vmnih/docs/dqn.pdf) | 与DQN相比使用了CNN而不是全链接网络 | [CartPole-v0](https://github.com/datawhalechina/easy-rl/blob/master/codes/envs/gym_info.md) |
| [DoubleDQN](https://github.com/datawhalechina/easy-rl/tree/master/codes/DoubleDQN) | | | [CartPole-v0](https://github.com/datawhalechina/easy-rl/blob/master/codes/envs/gym_info.md) |
| Hierarchical DQN | [Hierarchical DQN](https://arxiv.org/abs/1604.06057) | | |
| [PolicyGradient](https://github.com/datawhalechina/easy-rl/tree/master/codes/PolicyGradient) | | | [CartPole-v0](https://github.com/datawhalechina/easy-rl/blob/master/codes/envs/gym_info.md) |
| [A2C](https://github.com/datawhalechina/easy-rl/tree/master/codes/A2C) | | | [CartPole-v0](https://github.com/datawhalechina/easy-rl/blob/master/codes/envs/gym_info.md) |
| [PPO](https://github.com/datawhalechina/easy-rl/tree/master/codes/PPO) | [PPO paper](https://arxiv.org/abs/1707.06347) | [PPO算法实战](https://blog.csdn.net/JohnJim0/article/details/115126363) | [CartPole-v0](https://github.com/datawhalechina/easy-rl/blob/master/codes/envs/gym_info.md) |
| DDPG | [DDPG Paper](https://arxiv.org/abs/1509.02971) | | [Pendulum-v0](https://github.com/datawhalechina/easy-rl/blob/master/codes/envs/gym_info.md) |
| TD3 | [Twin Dueling DDPG Paper](https://arxiv.org/abs/1802.09477) | | |

## 贡献者

Expand Down

0 comments on commit 4237a17

Please sign in to comment.