{"id":13645859,"url":"https://github.com/AmazingAng/WTF-DeepRL","last_synced_at":"2025-04-21T17:31:35.768Z","repository":{"id":50459349,"uuid":"254318237","full_name":"AmazingAng/WTF-DeepRL","owner":"AmazingAng","description":"Deep RL algorithm in pytorch","archived":false,"fork":false,"pushed_at":"2023-09-05T07:09:18.000Z","size":2967,"stargazers_count":305,"open_issues_count":3,"forks_count":61,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-17T11:33:07.190Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AmazingAng.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-04-09T08:46:19.000Z","updated_at":"2025-04-17T01:59:22.000Z","dependencies_parsed_at":"2024-01-14T10:01:40.750Z","dependency_job_id":"a246a6ed-797a-49b2-8f4e-1634c10457e6","html_url":"https://github.com/AmazingAng/WTF-DeepRL","commit_stats":null,"previous_names":["amazingang/deep-rl-elements"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmazingAng%2FWTF-DeepRL","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmazingAng%2FWTF-DeepRL/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmazingAng%2FWTF-DeepRL/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmazingAng%2FWTF-DeepRL/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AmazingAng","download_url":"https://codeload.github.com/AmazingAng/WTF-DeepRL/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250100468,"owners_count":21374948,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-02T01:02:43.675Z","updated_at":"2025-04-21T17:31:35.260Z","avatar_url":"https://github.com/AmazingAng.png","language":"Jupyter Notebook","funding_links":[],"categories":["Others"],"sub_categories":[],"readme":"# WTF 深度强化学习\nWTF 深度强化学习算法库及教程，学习并复现经典的深度强化学习算法。\n\n深度强化学习算法使用pytorch实现，写在jupyter notebook中。用Atari Games中的Pong测试。\n\n## 先修课程\n\n1. 机器学习/深度学习\n\n2. python编程\n\n3. 经典强化学习\n\n## 目录\n\n**第1讲：Deep Q-learning**：[文章](https://github.com/AmazingAng/WTF-DeepRL/tree/master/01_DQN/readme.md) | [Code](https://github.com/AmazingAng/WTF-DeepRL/tree/master/01_DQN) | [Google Colab](https://colab.research.google.com/github/AmazingAng/WTF-DeepRL/blob/master/01_DQN/DQN.ipynb#)\n\n**第2讲：Prioritized Experience Replay (PER)**：[代码](https://github.com/AmazingAng/deep-RL-elements/tree/master/02_DQN_PER) | [文章](https://github.com/AmazingAng/deep-RL-elements/tree/master/02_DQN_PER/readme.md)\n\n**第3讲：Double DQN (DDQN)**：[代码](https://github.com/AmazingAng/deep-RL-elements/tree/master/03_DDQN) | [文章](https://github.com/AmazingAng/deep-RL-elements/tree/master/03_DDQN/readme.md)\n\n**第4讲：Dueling DQN**：[代码](https://github.com/AmazingAng/deep-RL-elements/tree/master/04_DuelingDQN) | [文章](https://github.com/AmazingAng/deep-RL-elements/tree/master/04_DuelingDQN/readme.md)\n\n**第5讲：DQN with Soft Update (Soft DQN)**：[代码](https://github.com/AmazingAng/deep-RL-elements/tree/master/05_SoftDQN) | [文章](https://github.com/AmazingAng/deep-RL-elements/tree/master/readme.md)\n\n**第6讲：DQN with Noisy Net**：[代码](https://github.com/AmazingAng/deep-RL-elements/tree/master/06_NoisyDQN) | [文章](https://github.com/AmazingAng/deep-RL-elements/tree/master/readme.md)\n\n**第7讲：DQN with Intrinsic Curiosity Module**：[代码](https://github.com/AmazingAng/deep-RL-elements/tree/master/07_ICMDQN) | [文章](https://github.com/AmazingAng/deep-RL-elements/tree/master/07_ICMDQN/readme.md)\n\n**第8讲：Deep Recurrent Q-learning (DRQN)**：[代码](https://github.com/AmazingAng/deep-RL-elements/tree/master/08_DRQN) | [文章](https://github.com/AmazingAng/deep-RL-elements/tree/master/08_DRQN/readme.md)\n\n**第9讲：N-step DQN**：[代码](https://github.com/AmazingAng/deep-RL-elements/tree/master/09_NStepDQN) | [文章](https://github.com/AmazingAng/deep-RL-elements/tree/master/09_NStepDQN/readme.md)\n\n## Prerequisite \n- torch 1.4.0\n- gym[atari]\n- tensorboardX \n\n## 其他深度强化学习算法库 (pytorch)\n- [Reinforcement-Learning](https://github.com/andri27-ts/Reinforcement-Learning)\n- [DeepRL-Tutorials](https://github.com/qfettes/DeepRL-Tutorials)\n- [Deep-Reinforcement-Learning-Algorithms-with-PyTorch](https://github.com/p-christ/Deep-Reinforcement-Learning-Algorithms-with-PyTorch)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAmazingAng%2FWTF-DeepRL","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FAmazingAng%2FWTF-DeepRL","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FAmazingAng%2FWTF-DeepRL/lists"}