Difference between revisions of "Deep Q Network (DQN)"
m (BPeat moved page Deep Q Learning (DQN) to Deep Q Network (DQN) without leaving a redirect) |
|||
| Line 8: | Line 8: | ||
[http://www.google.com/search?q=deep+reinforcement+q+learning+machine+learning+ML+artificial+intelligence ...Google search] | [http://www.google.com/search?q=deep+reinforcement+q+learning+machine+learning+ML+artificial+intelligence ...Google search] | ||
| − | * [[Reinforcement Learning ( | + | * Reinforcement Learning (RL): |
| + | ** [[Monte Carlo]] (MC) Method - Model Free Reinforcement Learning | ||
| + | ** [[Markov Decision Process (MDP)]] | ||
** [[Q Learning]] | ** [[Q Learning]] | ||
| − | ** [[Deep Reinforcement Learning (DRL)]] | + | ** [[State-Action-Reward-State-Action (SARSA)]] |
| + | ** [[Deep Reinforcement Learning (DRL)]] DeepRL | ||
| + | *** [[IMPALA (Importance Weighted Actor-Learner Architecture)]] | ||
| + | ** [[Distributed Deep Reinforcement Learning (DDRL)]] | ||
| + | ** [[Evolutionary Computation / Genetic Algorithms]] | ||
| + | ** [[Asynchronous Advantage Actor Critic (A3C)]] | ||
| + | ** [[Hierarchical Reinforcement Learning (HRL)]] | ||
| + | *** [[HIerarchical Reinforcement learning with Off-policy correction(HIRO)]] | ||
| + | ** [[MERLIN]] | ||
| + | |||
* [[Gaming]] | * [[Gaming]] | ||
Revision as of 15:13, 1 September 2019
Youtube search... ...Google search
- Reinforcement Learning (RL):
- Monte Carlo (MC) Method - Model Free Reinforcement Learning
- Markov Decision Process (MDP)
- Q Learning
- State-Action-Reward-State-Action (SARSA)
- Deep Reinforcement Learning (DRL) DeepRL
- Distributed Deep Reinforcement Learning (DDRL)
- Evolutionary Computation / Genetic Algorithms
- Asynchronous Advantage Actor Critic (A3C)
- Hierarchical Reinforcement Learning (HRL)
- MERLIN
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