Book Image

The Reinforcement Learning Workshop

By : Alessandro Palmas, Emanuele Ghelfi, Dr. Alexandra Galina Petre, Mayur Kulkarni, Anand N.S., Quan Nguyen, Aritra Sen, Anthony So, Saikat Basak
Book Image

The Reinforcement Learning Workshop

By: Alessandro Palmas, Emanuele Ghelfi, Dr. Alexandra Galina Petre, Mayur Kulkarni, Anand N.S., Quan Nguyen, Aritra Sen, Anthony So, Saikat Basak

Overview of this book

Various intelligent applications such as video games, inventory management software, warehouse robots, and translation tools use reinforcement learning (RL) to make decisions and perform actions that maximize the probability of the desired outcome. This book will help you to get to grips with the techniques and the algorithms for implementing RL in your machine learning models. Starting with an introduction to RL, youÔÇÖll be guided through different RL environments and frameworks. YouÔÇÖll learn how to implement your own custom environments and use OpenAI baselines to run RL algorithms. Once youÔÇÖve explored classic RL techniques such as Dynamic Programming, Monte Carlo, and TD Learning, youÔÇÖll understand when to apply the different deep learning methods in RL and advance to deep Q-learning. The book will even help you understand the different stages of machine-based problem-solving by using DARQN on a popular video game Breakout. Finally, youÔÇÖll find out when to use a policy-based method to tackle an RL problem. By the end of The Reinforcement Learning Workshop, youÔÇÖll be equipped with the knowledge and skills needed to solve challenging problems using reinforcement learning.
Table of Contents (14 chapters)
Preface
Free Chapter
2
2. Markov Decision Processes and Bellman Equations

2. Markov Decision Processes and Bellman Equations

Activity 2.01: Solving Gridworld

  1. Import the required libraries:
    from enum import Enum, auto
    import matplotlib.pyplot as plt
    import numpy as np
    from scipy import linalg
    from typing import Tuple
  2. Define the visualization function:
    # helper function
    def vis_matrix(M, cmap=plt.cm.Blues):
        fig, ax = plt.subplots()
        ax.matshow(M, cmap=cmap)
        for i in range(M.shape[0]):
            for j in range(M.shape[1]):
                c = M[j, i]
                ax.text(i, j, "%.2f" % c, va="center", ha="center")
  3. Define the possible actions:
    # Define the actions
    class Action(Enum):
        UP = auto()
        DOWN = auto()
        LEFT = auto()
    &...