Difference between revisions of "Reinforcement Learning (RL)"

From
Jump to: navigation, search
(Q Learning Algorithm and Agent - Reinforcement Learning w/ Python Tutorial | Sentdex - Harrison)
(Gridworld: How To Create Your Own Reinforcement Learning Environments)
Line 82: Line 82:
 
* [http://www.neuralnet.ai/designing-your-own-open-ai-gym-compatible-reinforcement-learning-environment/ Designing Your Own Open Ai Gym Compatible Reinforcement Learning Environment | NEURALNET.AI]
 
* [http://www.neuralnet.ai/designing-your-own-open-ai-gym-compatible-reinforcement-learning-environment/ Designing Your Own Open Ai Gym Compatible Reinforcement Learning Environment | NEURALNET.AI]
 
<youtube>vmrqpHldAQ0</youtube>
 
<youtube>vmrqpHldAQ0</youtube>
 +
<youtube>w1jd0Dpbc2o</youtube>

Revision as of 10:21, 1 September 2019

YouTube search... ...Google search

___________________________________________________________

This is a bit similar to the traditional type of data analysis; the algorithm discovers through trial and error and decides which action results in greater rewards. Three major components can be identified in reinforcement learning functionality: the agent, the environment, and the actions. The agent is the learner or decision-maker, the environment includes everything that the agent interacts with, and the actions are what the agent can do. Reinforcement learning occurs when the agent chooses actions that maximize the expected reward over a given time. This is best achieved when the agent has a good policy to follow. Machine Learning: What it is and Why it Matters | Priyadharshini @ simplilearn

Machine_Learning_5.jpg

Q Learning Algorithm and Agent - Reinforcement Learning w/ Python Tutorial | Sentdex - Harrison

P.1

P.2

P.3

P.4

P.5

P.6

Reinforcement Learning Jump Start | Phil Tabor

Lunar Lander: Deep Q learning is Easy in PyTorch

Lunar Lander: How to Beat Lunar Lander with Policy Gradients | Tensorflow Tutorial

Breakout: How to Code Deep Q Learning in Tensorflow (Tutorial)

Gridworld: How To Create Your Own Reinforcement Learning Environments