Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kkweon/dqn-in-r

Simple Deep Q Network in R
https://github.com/kkweon/dqn-in-r

Last synced: 3 months ago
JSON representation

Simple Deep Q Network in R

Awesome Lists containing this project

README

        

# DQN in R
Simple DQN implementation in R
Original Paper: [Playing Atari with Deep Reinforcement Learning](https://www.cs.toronto.edu/~vmnih/docs/dqn.pdf)



## Pseudocode



## UML




## Gym stat




Link: https://gym.openai.com/evaluations/eval_iEDX4AWFRmu8gqoIkmlXA

## Dependencies
- tensorflow
- reticulate

## Files
```
.
├── Agent.R # Agent class is defined here
├── assets
├── DQN-in-R.Rproj
├── main.R # the main file to run
├── Memory.R # Memory class is defined here (aka Experience Replay Memory)
├── README.md
└── train.R # training helper function
```