ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

Reinforcement Learning 101

2021-09-25 11:04:05  阅读:371  来源: 互联网

标签:Learning agent action Reinforcement learning RL 101


https://towardsdatascience.com/reinforcement-learning-101-e24b50e1d292

1. What is Reinforcement Learning? How does it compare with other ML techniques?

Reinforcement Learning(RL) is a type of machine learning technique that enables an agent to learn in an interactive environment by trial and error using feedback from its own actions and experiences.

2. How to formulate a basic Reinforcement Learning problem?

Some key terms that describe the basic elements of an RL problem are:

  1. State — Current situation of the agent
  2. Reward — Feedback from the environment
  3. Policy — Method to map agent’s state to actions
  4. Value — Future reward that an agent would receive by taking an action in a particular state
<iframe allowfullscreen="allowfullscreen" class="es ff fb fl v" data-mce-fragment="1" frameborder="0" height="480" scrolling="auto" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FQilHGSYbjDQ%3Ffeature%3Doembed&display_name=YouTube&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DQilHGSYbjDQ&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FQilHGSYbjDQ%2Fhqdefault.jpg&key=a19fcc184b9711e1b4764040d3dc5c07&type=text%2Fhtml&schema=youtube" title="Deep Reinforcement Learning in Pac-man" width="854"></iframe>

3. What are some of the most used Reinforcement Learning algorithms?

Q-learning and SARSA (State-Action-Reward-State-Action) are two commonly used model-free RL algorithms. They differ in terms of their exploration strategies while their exploitation strategies are similar. While Q-learning is an off-policy method in which the agent learns the value based on action a* derived from the another policy, SARSA is an on-policy method where it learns the value based on its current action derived from its current policy. These two methods are simple to implement but lack generality as they do not have the ability to estimates values for unseen states.

4. What are the practical applications of Reinforcement Learning?

Since, RL requires a lot of data, therefore it is most applicable in domains where simulated data is readily available like gameplay, robotics.

  1. In robotics and industrial automation, RL is used to enable the robot to create an efficient adaptive control system for itself which learns from its own experience and behavior. DeepMind’s work on Deep Reinforcement Learning for Robotic Manipulation with Asynchronous Policy updates is a good example of the same. Watch this interesting demonstration video.
<iframe allowfullscreen="allowfullscreen" class="es ff fb fl v" data-mce-fragment="1" frameborder="0" height="480" scrolling="auto" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FZhsEKTo7V04%3Fstart%3D48%26feature%3Doembed%26start%3D48&url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DZhsEKTo7V04&image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FZhsEKTo7V04%2Fhqdefault.jpg&key=a19fcc184b9711e1b4764040d3dc5c07&type=text%2Fhtml&schema=youtube" title="Deep Reinforcement Learning for Robotic Manipulation" width="854"></iframe>

5. How can I get started with Reinforcement Learning?

For understanding the basic concepts of RL, one can refer to the following resources.

  1. Teaching material from David Silver including video lectures is a great introductory course on RL.
  2. Here’s another technical tutorial on RL by Pieter Abbeel and John Schulman (Open AI/ Berkeley AI Research Lab).
  1. DeepMind Lab is an open source 3D game-like platform created for agent-based AI research with rich simulated environments.
  2. Project Malmo is another AI experimentation platform for supporting fundamental research in AI.
  3. OpenAI gym is a toolkit for building and comparing reinforcement learning algorithms.

标签:Learning,agent,action,Reinforcement,learning,RL,101
来源: https://www.cnblogs.com/dhcn/p/15333705.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有