keon / deep-q-learning

Minimal Deep Q Learning (DQN & DDQN) implementations in Keras
https://keon.io/deep-q-learning
MIT License
1.29k stars 455 forks source link

Possible incrrection in DQN & DDQN file #35

Open YwEwanHuang opened 3 years ago

YwEwanHuang commented 3 years ago

The DQN algorithm from NATURE leverages a target network to update the target Q value for training.

So I think the code in ddqn.py should be code for the DQN algorithm.