LGMLMay 29, 2020

Reinforcement Learning

arXiv:2005.14419v2322 citations
Originality Synthesis-oriented
AI Analysis

It provides an introductory overview of RL concepts and methods, which is incremental as it summarizes existing knowledge without introducing new techniques.

The paper presents the basic framework of reinforcement learning (RL) as a general approach for adaptive control in sequential decision-making problems, covering value-based and policy search methods along with extensions like risk-averse behavior and unknown rewards.

Reinforcement learning (RL) is a general framework for adaptive control, which has proven to be efficient in many domains, e.g., board games, video games or autonomous vehicles. In such problems, an agent faces a sequential decision-making problem where, at every time step, it observes its state, performs an action, receives a reward and moves to a new state. An RL agent learns by trial and error a good policy (or controller) based on observations and numeric reward feedback on the previously performed action. In this chapter, we present the basic framework of RL and recall the two main families of approaches that have been developed to learn a good policy. The first one, which is value-based, consists in estimating the value of an optimal policy, value from which a policy can be recovered, while the other, called policy search, directly works in a policy space. Actor-critic methods can be seen as a policy search technique where the policy value that is learned guides the policy improvement. Besides, we give an overview of some extensions of the standard RL framework, notably when risk-averse behavior needs to be taken into account or when rewards are not available or not known.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes