zoukankan      html  css  js  c++  java
  • Reinforcement Learning 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

    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.

    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.
  • 相关阅读:
    win8 连接到OneDrive时出现问题-感叹号
    让tp6显示详细的错误信息及行号
    TP6出现错误 No input file specified.
    Git 访问慢 解决办法
    mysql5.7当两个字段名类似,查询时会出错
    linux停止进程
    mysql更新数据时:当想mysql某插入有某字段设置了unique且和之前相同时,会报错,并停止运行
    php升级版本后的影响5.5->7.1


  • 原文地址:https://www.cnblogs.com/dhcn/p/15333705.html
Copyright © 2011-2022 走看看