├── .gitattributes ├── .idea ├── ReinforceLearning.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .ipynb_checkpoints └── QTable-checkpoint.ipynb ├── Actor_Critic ├── AC_Pole.py └── AC_continue_Pendulum.py ├── DDPG └── DDPG.py ├── DQLearing ├── Brains │ ├── DQLearning.py │ ├── DQN.py │ ├── DQNTF2.py │ ├── DuelingDQN.py │ ├── Priority_DQN.py │ ├── RL_brain.py │ └── __pycache__ │ │ ├── DQN.cpython-36.pyc │ │ ├── DQN.cpython-37.pyc │ │ ├── DQNTF2.cpython-36.pyc │ │ ├── DQNTF2.cpython-37.pyc │ │ └── DuelingDQN.cpython-36.pyc ├── gym │ ├── CartPole.py │ ├── Mountain_Car.py │ ├── Pendulum.py │ ├── checkpoint │ ├── logs │ │ └── events.out.tfevents.1579495704.DESKTOP-JBV63R4 │ ├── tmp_model.data-00000-of-00001 │ └── tmp_model.index ├── logs │ ├── events.out.tfevents.1578211690.DESKTOP-JBV63R4 │ ├── events.out.tfevents.1578225153.DESKTOP-JBV63R4 │ ├── events.out.tfevents.1578226418.DESKTOP-JBV63R4 │ ├── events.out.tfevents.1578226429.DESKTOP-JBV63R4 │ └── events.out.tfevents.1578228234.DESKTOP-JBV63R4 ├── run_dqn.py └── tkinter │ ├── chessboard.py │ └── maze_env.py ├── PolicyGradient ├── Brain │ ├── PG.py │ └── PolicyGradient.py └── gym │ └── PGCartPole.py └── QTable ├── 五子棋 ├── chessboard.py ├── q_table1.csv ├── q_table2.csv └── train.py └── 走迷宫 ├── RL_brain.py ├── RunQTable.py ├── RunSarsaTable.py ├── SarsaLambda.py ├── SarsaLearning.py └── maze_env.py /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.idea/ReinforceLearning.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 13 | 14 | 15 | 16 | 17 | 22 | 23 | 24 | 26 | 27 | 29 | 30 | 31 | 32 | 33 | 34 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 77 | 78 | 79 | 98 | 99 | 100 | 119 | 120 | 121 | 140 | 141 | 142 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 |