devsisters/DQN-tensorflow
TensorFlow implementation of the Deep Q-Network algorithm from the famous DeepMind paper on human-level control through deep reinforcement learning.

Velocity · 7d
+0.7
★ / day
Trend
→steady
star history
This repository implements a Deep Q-Network (DQN) for training agents to play Atari games. It uses TensorFlow to build a convolutional neural network that learns Q-values through experience replay (to decorrelate updates) and fixed target networks (to stabilize training). The implementation supports gym environments and includes variants like Dueling DQN and Double DQN (DDQN).