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

https://github.com/harshitm98/cartpole

Implemented Deep-Q-Learning on OpenAI's CartPole environment.
https://github.com/harshitm98/cartpole

deep-q-network deep-reinforcement-learning reinforcement-learning

Last synced: 6 months ago
JSON representation

Implemented Deep-Q-Learning on OpenAI's CartPole environment.

Awesome Lists containing this project

README

          

# CartPole
Implemented Deep-Q-Learning using keras-rl, keras and OpenAI's CartPole environment

During training:
![](https://github.com/harshitm98/CartPole/blob/master/cartpole_animation.gif)

After training:
![](https://github.com/harshitm98/CartPole/blob/master/cartpole_animation_optmizied.gif)

There are two files here:
1. [cartpole.py](https://github.com/harshitm98/CartPole/blob/master/cartpole.py): Built a direct Deep Q-learning network using [keras-rl](https://github.com/keras-rl/keras-rl).
2. [cartpole_building_dqn.py](https://github.com/harshitm98/CartPole/blob/master/cartpole_building_dqn.py): Built Deep Q-learning network with the help of Keras.