Difference between revisions of "Deep Q Network (DQN)"

From
Jump to: navigation, search
Line 11: Line 11:
 
* [[Deep Reinforcement Learning (DRL)]]
 
* [[Deep Reinforcement Learning (DRL)]]
 
* [[Reinforcement Learning (RL)]]
 
* [[Reinforcement Learning (RL)]]
* [http://medium.com/deep-math-machine-learning-ai/ch-12-1-model-free-reinforcement-learning-algorithms-monte-carlo-sarsa-q-learning-65267cb8d1b4 Model Free Reinforcement learning algorithms (Monte Carlo, SARSA, Q-learning) | Madhu Sanjeevi (Mady) - Medium]
+
 
* [[Monte Carlo]]
 
 
* [[Gaming]]
 
* [[Gaming]]
* [http://en.wikipedia.org/wiki/Q-learning Q Learning | Wikipedia]
 
  
When feedback is provided, it might be long time after the fateful decision has been made. In reality, the feedback is likely to be the result of a large number of prior decisions, taken amid a shifting, uncertain environment. Unlike supervised learning, there are no correct input/output pairs, so suboptimal actions are not explicitly corrected, wrong actions just decrease the corresponding value in the Q-table, meaning there’s less chance choosing the same action should the same state be encountered again. [http://www.quora.com/How-does-Q-learning-work-1 Quora | Jaron Collis]
+
Deep Q learning, as published in ([http://arxiv.org/abs/1312.5602 Playing Atari with Deep Reinforcement Learning | Mnih et al, 2013]), leverages advances in deep learning to learn policies from high dimensional sensory input. [http://towardsdatascience.com/dqn-part-1-vanilla-deep-q-networks-6eb4a00febfb Vanilla Deep Q Networks: Deep Q Learning Explained | Chris Yoon - Towards Data Science]
  
 
Training deep neural networks to show that a novel end-to-end reinforcement learning agent, termed a deep Q-network (DQN) [http://deepmind.com/research/dqn/ Human-level control through Deep Reinforcement Learning | Deepmind]
 
Training deep neural networks to show that a novel end-to-end reinforcement learning agent, termed a deep Q-network (DQN) [http://deepmind.com/research/dqn/ Human-level control through Deep Reinforcement Learning | Deepmind]

Revision as of 13:30, 1 September 2019

Youtube search... ...Google search

Deep Q learning, as published in (Playing Atari with Deep Reinforcement Learning | Mnih et al, 2013), leverages advances in deep learning to learn policies from high dimensional sensory input. Vanilla Deep Q Networks: Deep Q Learning Explained | Chris Yoon - Towards Data Science

Training deep neural networks to show that a novel end-to-end reinforcement learning agent, termed a deep Q-network (DQN) Human-level control through Deep Reinforcement Learning | Deepmind