Introduction to Various Reinforcement Learning Algorithms

By datasciencecentral - 2020-10-08

Description

This article was written by Steeve Huang.   Reinforcement Learning (RL) refers to a kind of Machine Learning method in which the agent receives a delayed rewar…

Summary

  • Reinforcement Learning (RL) refers to a kind of Machine Learning method in which the agent receives a delayed reward in the next time step to evaluate its previous action.
  • Recently, as the algorithm evolves with the combination of Neural Networks, it is capable of solving more complex tasks, such as the pendulum problem.
  • Q-value is similar to Value, except that it takes an extra parameter, the current action a. Qπ(s, a) refers to the long-term return of the current state s, taking action a under policyπ.
  • If the transition probability is successfully learned, the agent will know how likely to enter a specific state given current state and action.

 

Topics

  1. Machine_Learning (0.48)
  2. Backend (0.14)
  3. NLP (0.11)

Similar Articles

Q-Learning Algorithm: From Explanation to Implementation

By Medium - 2020-12-13

In my today’s medium post, I will teach you how to implement the Q-Learning algorithm. But before that, I will first explain the idea behind Q-Learning and its limitation. Please be sure to have some…

When a simple React context gets out of hand.

By DEV Community - 2021-01-28

It seemed like a good idea to start. Separate state into different "contexts". Just use `useState`. Then, `useEffect` and multiple if branches snuck in and it became a nightmare.

Gaming ML/AI-based on Reinforcement Learning

By Medium - 2020-12-14

Today you turn on your TV, you listen to the radio, you read a newspaper and, unbelievable… you most probably come across about machine learning and artificial intelligence. The Machine Learning…