-
Book Overview & Buying
-
Table Of Contents
Artificial Intelligence with Python - Second Edition
By :
In this chapter, we are going to learn about reinforcement learning (RL). We will discuss the premise of RL. We will talk about the differences between RL and supervised learning. We will go through some real-world examples of RL and see how it manifests itself in various forms. We will learn about the building blocks of RL and the various concepts involved. We will then create an environment in Python to see how it works in practice. We will then use these concepts to build a learning agent.
In this chapter, we will cover the following topics:
Before we move into RL itself, let's first think about what it actually means to learn; after all, it will help us to understand it before we go about...