• 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.
  • 相关阅读:
    Java 开发 gRPC 服务和客户端
    Springcloud中的region和zone的使用
    Spring Boot中使用AOP记录请求日志
    JDK1.8中的Lambda表达式和Stream
    机器学习之SVM
    机器学习之决策树
    【iOS开发】emoji表情的输入思路
    block为什么要用copy,runtime的简单使用
    swift和oc混编
    iOS之AFN错误代码1016(Error Domain=com.alamofire.error.serialization.response Code=-1016 "Request failed: unacceptable)
  • 原文地址:https://www.cnblogs.com/dhcn/p/15333705.html
Copyright © 2020-2023  润新知