Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/takuseno/unreal

UNREAL implementation with TensorFlow
https://github.com/takuseno/unreal

deep-reinforcement-learning tensorflow

Last synced: about 2 months ago
JSON representation

UNREAL implementation with TensorFlow

Awesome Lists containing this project

README

        

# unreal
UNREAL implementation with TensorFlow

https://arxiv.org/abs/1611.05397

## dependencies
- Python3
- tensorflow
- opencv-python
- git+https://github.com/imai-laboratory/rlsaber

## train
```sh
$ python train.py [--env environment_id] [--render]
```

## ToDo
- [x] Add last actions and immediate rewards to input
- [x] Implement reward prediction
- [x] Implement value function replay
- [ ] Implement pixel control
- [ ] Implement input change prediction

## implementations
Base A3C implementation is based on https://github.com/takuseno/a3c .