├── .gitignore ├── LICENSE.md ├── README.md ├── dashboard.ipynb ├── dashboard.py ├── ddpg.py ├── ddpg_nets_dm.py ├── ddpg_test.py ├── experiment.py ├── filter_env.py ├── readme ├── db.png ├── ipend.gif ├── pend.gif └── reacher.gif ├── replay_memory.py ├── run.py ├── testrun ├── util.py ├── visualization.py └── visualize.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/README.md -------------------------------------------------------------------------------- /dashboard.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/dashboard.ipynb -------------------------------------------------------------------------------- /dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/dashboard.py -------------------------------------------------------------------------------- /ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/ddpg.py -------------------------------------------------------------------------------- /ddpg_nets_dm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/ddpg_nets_dm.py -------------------------------------------------------------------------------- /ddpg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/ddpg_test.py -------------------------------------------------------------------------------- /experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/experiment.py -------------------------------------------------------------------------------- /filter_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/filter_env.py -------------------------------------------------------------------------------- /readme/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/readme/db.png -------------------------------------------------------------------------------- /readme/ipend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/readme/ipend.gif -------------------------------------------------------------------------------- /readme/pend.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/readme/pend.gif -------------------------------------------------------------------------------- /readme/reacher.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/readme/reacher.gif -------------------------------------------------------------------------------- /replay_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/replay_memory.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/run.py -------------------------------------------------------------------------------- /testrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/testrun -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/util.py -------------------------------------------------------------------------------- /visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/visualization.py -------------------------------------------------------------------------------- /visualize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmst/ddpg/HEAD/visualize.ipynb --------------------------------------------------------------------------------