Learn Reinforcement Learning from scratch

Learn Reinforcement Learning from scratch

  • June 8, 2018
Table of Contents

Learn Reinforcement Learning from scratch

Deep RL is a field that has seen vast amounts of research interest, including learning to play Atari games, beating pro players at Dota 2, and defeating Go champions. Contrary to many classical Deep Learning problems that often focus on perception (does this image contain a stop sign?) , Deep RL adds the dimension of actions that influence the environment (what is the goal, and how do I get there?).

In dialog systems for example, classical Deep Learning aims to learn the right response for a given query. On the other hand, Deep Reinforcement Learning focuses on the right sequences of sentences that will lead to a positive outcome, for example a happy customer. This makes Deep RL particularly attractive for tasks that require planning and adaptation, such as manufacturing or self-driving.

However, industry applications have trailed behind the rapidly advancing results coming out of the research community. A major reason is that Deep RL often requires an agent to experiment millions of times before learning anything useful. The best way to do this rapidly is by using a simulation environment.

This tutorial will be using Unity to create environments to train agents in. Deep RL can be used to best the top human players at Go, but to understand how that’s done, you first need to understand a few simple concepts, starting with much easier problems.

Source: insightdatascience.com

Tags :
Share :
comments powered by Disqus

Related Posts

30+ Machine Learning Resources

30+ Machine Learning Resources

For almost all machine learning projects, the main steps of the ideal solution remain same. Briefly, we all go over the steps below each and every time: Understand the dataClean up, fix the missing values, extract new features, select the best onesBuild the model, compare it with the other ones, tune hyper parameters, find out what is the right metric to evaluate your modelIterate this process over and over again until you believe you have the best solution:) Iterate this process over and over again until you believe you have the best solution:)

Read More
AI winter is well on its way

AI winter is well on its way

Deep learning has been at the forefront of the so called AI revolution for quite a few years now, and many people had believed that it is the silver bullet that will take us to the world of wonders of technological singularity (general AI). Many bets were made in 2014, 2015 and 2016 when still new boundaries were pushed, such as the Alpha Go etc. Companies such as Tesla were announcing through the mouths of their CEO’s that fully self driving car was very close, to the point that Tesla even started selling that option to customers [to be enabled by future software update].

Read More