https://github.com/takuseno/ddpg
Deep Deterministic Policy Gradient implementation with TensorFlow
https://github.com/takuseno/ddpg
reinforcement-learning tensorflow
Last synced: 2 months ago
JSON representation
Deep Deterministic Policy Gradient implementation with TensorFlow
- Host: GitHub
- URL: https://github.com/takuseno/ddpg
- Owner: takuseno
- Created: 2017-10-01T08:17:45.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-12T04:25:15.000Z (over 8 years ago)
- Last Synced: 2025-01-15T06:51:59.635Z (over 1 year ago)
- Topics: reinforcement-learning, tensorflow
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## DDPG
Deep Deterministic Policy Gradient implementation with Tensorflow.
## requirements
- Python3
## dependencies
- tensorflow
- gym[atari]
- opencv-python
- git+https://github.com/imai-laboratory/lightsaber
## usage
### training
```
$ python train.py --render
```
### playing
```
$ python train.py --render --load {path of models} --demo
```
### implementation
This is inspired by following projects.
- [DQN](https://github.com/imai-laboratory/dqn)