https://github.com/takuseno/a2c
A2C implementation with TensorFlow
https://github.com/takuseno/a2c
deep-reinforcement-learning tensorflow
Last synced: about 2 months ago
JSON representation
A2C implementation with TensorFlow
- Host: GitHub
- URL: https://github.com/takuseno/a2c
- Owner: takuseno
- Created: 2018-04-07T13:40:05.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-04T08:17:41.000Z (over 7 years ago)
- Last Synced: 2025-03-04T21:25:02.486Z (over 1 year ago)
- Topics: deep-reinforcement-learning, tensorflow
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A2C
A2C imeplementation with TensorFlow.
## requirements
- Python3
## dependencies
- tensorflow
- opencv-python
- numpy
- git+https://github.com/imai-laboratory/rlsaber
## train
```
$ python train.py [--render] [--env environment id]
```
## play
```
$ python train.py --demo [--render] [--load {path to model}] [--env environment id]
```
## implementations
This repostory is inspired by following projects.
- [OpenAI Baselines](https://github.com/openai/baselines)
- [A3C](https://github.com/takuseno/a3c)