An Invitation to Deep Reinforcement Learning
Bernhard Jaeger, Andreas Geiger
TL;DR
The paper reframes deep reinforcement learning as a generalization of supervised learning to non-differentiable objectives, aiming to lower the entry barrier for practitioners. It surveys core off-policy and on-policy approaches, detailing value-learning with Q-functions (e.g., Q-learning, SAC) and policy-gradient methods (e.g., REINFORCE, PPO) with practical examples and algorithmic insights. It emphasizes data collection challenges such as compounding errors, exploration strategies, and replay buffers, and presents robust methods (SAC, PPO) that have become standard for deep RL. The result is an accessible, optimization-focused tutorial that connects classical RL ideas to modern deep RL techniques and their broad applicability to perception, control, and generative systems.
Abstract
Training a deep neural network to maximize a target objective has become the standard recipe for successful machine learning over the last decade. These networks can be optimized with supervised learning, if the target objective is differentiable. For many interesting problems, this is however not the case. Common objectives like intersection over union (IoU), bilingual evaluation understudy (BLEU) score or rewards cannot be optimized with supervised learning. A common workaround is to define differentiable surrogate losses, leading to suboptimal solutions with respect to the actual objective. Reinforcement learning (RL) has emerged as a promising alternative for optimizing deep neural networks to maximize non-differentiable objectives in recent years. Examples include aligning large language models via human feedback, code generation, object detection or control problems. This makes RL techniques relevant to the larger machine learning audience. The subject is, however, time intensive to approach due to the large range of methods, as well as the often very theoretical presentation. In this introduction, we take an alternative approach, different from classic reinforcement learning textbooks. Rather than focusing on tabular problems, we introduce reinforcement learning as a generalization of supervised learning, which we first apply to non-differentiable objectives and later to temporal problems. Assuming only basic knowledge of supervised learning, the reader will be able to understand state-of-the-art deep RL algorithms like proximal policy optimization (PPO) after reading this tutorial.
