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

From
Jump to: navigation, search
m (Text replacement - "http:" to "https:")
 
(9 intermediate revisions by the same user not shown)
Line 5: Line 5:
 
|description=Helpful resources for your journey with artificial intelligence; videos, articles, techniques, courses, profiles, and tools  
 
|description=Helpful resources for your journey with artificial intelligence; videos, articles, techniques, courses, profiles, and tools  
 
}}
 
}}
[http://www.youtube.com/results?search_query=deep+reinforcement+q+learning+artificial+intelligence+ Youtube search...]
+
[https://www.youtube.com/results?search_query=deep+reinforcement+q+learning+artificial+intelligence+ Youtube search...]
[http://www.google.com/search?q=deep+reinforcement+q+learning+machine+learning+ML+artificial+intelligence ...Google search]
+
[https://www.google.com/search?q=deep+reinforcement+q+learning+machine+learning+ML+artificial+intelligence ...Google search]
  
* Reinforcement Learning (RL):
+
* [[Reinforcement Learning (RL)]]
 
** [[Monte Carlo]] (MC) Method - Model Free Reinforcement Learning
 
** [[Monte Carlo]] (MC) Method - Model Free Reinforcement Learning
 
** [[Markov Decision Process (MDP)]]
 
** [[Markov Decision Process (MDP)]]
 +
** [[State-Action-Reward-State-Action (SARSA)]]
 
** [[Q Learning]]
 
** [[Q Learning]]
** [[State-Action-Reward-State-Action (SARSA)]]
+
*** Deep Q Network (DQN)
 
** [[Deep Reinforcement Learning (DRL)]] DeepRL
 
** [[Deep Reinforcement Learning (DRL)]] DeepRL
*** [[IMPALA (Importance Weighted Actor-Learner Architecture)]]
 
 
** [[Distributed Deep Reinforcement Learning (DDRL)]]
 
** [[Distributed Deep Reinforcement Learning (DDRL)]]
 
** [[Evolutionary Computation / Genetic Algorithms]]
 
** [[Evolutionary Computation / Genetic Algorithms]]
** [[Asynchronous Advantage Actor Critic (A3C)]]
+
** [[Actor Critic]]
 +
*** [[Asynchronous Advantage Actor Critic (A3C)]]
 +
*** [[Advanced Actor Critic (A2C)]]
 +
*** [[Lifelong Latent Actor-Critic (LILAC)]]
 
** [[Hierarchical Reinforcement Learning (HRL)]]
 
** [[Hierarchical Reinforcement Learning (HRL)]]
*** [[HIerarchical Reinforcement learning with Off-policy correction(HIRO)]]
+
 
** [[MERLIN]]
 
  
 
* [[Gaming]]
 
* [[Gaming]]
  
Deep Q learning (DQN), 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. A convolutional neural network, trained with a variant of Q-learning, whose input is raw pixels and whose output is a value function estimating future rewards. [http://towardsdatascience.com/dqn-part-1-vanilla-deep-q-networks-6eb4a00febfb Vanilla Deep Q Networks: Deep Q Learning Explained | Chris Yoon - Towards Data Science]
+
Deep Q learning (DQN), as published in [https://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. A convolutional neural network, trained with a variant of Q-learning, whose input is raw pixels and whose output is a value function estimating future rewards. [https://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 [[Agents|agent]], termed a deep Q-network (DQN) [https://deepmind.com/research/dqn/ Human-level control through Deep Reinforcement Learning | Deepmind]
  
 
<youtube>79pmNdyxEGo</youtube>
 
<youtube>79pmNdyxEGo</youtube>
<youtube>A5eihauRQvo</youtube>
 
<youtube>aCEvtRtNO-M</youtube>
 
<youtube>nSxaG_Kjw_w</youtube>
 
 
<youtube>V1eYniJ0Rnk</youtube>
 
<youtube>V1eYniJ0Rnk</youtube>
<youtube>1XRahNzA5bE</youtube>
+
<youtube>fevMOp5TDQs</youtube>
 +
<youtube>5fHngyN8Qhw</youtube>

Latest revision as of 09:09, 28 March 2023

Youtube search... ...Google search


Deep Q learning (DQN), 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. A convolutional neural network, trained with a variant of Q-learning, whose input is raw pixels and whose output is a value function estimating future rewards. 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