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.
  • 相关阅读:
    直击视频会议行业五大痛点提出企业视频会议通话完美解决方案
    网页直播/点播播放器支持httpflv/rtmp/m3u8等播放音视频流媒体播放器EasyPlayerRTMPiOS播放视频宽高变化导致播放器停止运行的问题解决
    流媒体音视频服务云管理平台EasyNVS平台中视频播放页面出现错误码的问题解决
    高稳定、低延时、高并发RTMP播放器流媒体音视频播放器EasyPlayerRTMPiOS器如何将核心代码打包成静态库
    网页直播/点播播放器支持httpflv/rtmp/m3u8等播放流媒体音视频播放器EasyPlayerRTMPiOS使用YUV渲染画面的方法
    网页全终端安防视频流媒体播放器EasyPlayer.js如何实现在web浏览器播放H.265编码视频?
    网页直播/点播播放器支持httpflv/rtmp/m3u8等播放音视频流媒体播放器EasyPlayerRTMPiOS卡顿问题的解决及设置方法
    HLS播放器RTSP播放器支持8K播放且低延时高并发全功能流媒体播放器EasyPlayer搭建之HTML中 px,em,rem该如何区别?
    移动端与PC端无缝衔接视频会议系统EasyRTC视频会议通话系统之会议录像检索回看功能解析
    企业远程会议系统EasyRTC视频会议通话软件如何保证会议的通话质量、噪音消除、信息高效共享及系统集成
  • 原文地址:https://www.cnblogs.com/dhcn/p/15333705.html
Copyright © 2011-2022 走看看