CSE250A Fall 12: Discussion Week 9

Similar documents
Reinforcement Learning

Least squares policy iteration (LSPI)

Markov Decision Processes

Decision Theory: Q-Learning

Decision Theory: Markov Decision Processes

Reinforcement Learning. Introduction

MS&E338 Reinforcement Learning Lecture 1 - April 2, Introduction

MARKOV DECISION PROCESSES (MDP) AND REINFORCEMENT LEARNING (RL) Versione originale delle slide fornita dal Prof. Francesco Lo Presti

The convergence limit of the temporal difference learning

Introduction to Reinforcement Learning

, and rewards and transition matrices as shown below:

MDP Preliminaries. Nan Jiang. February 10, 2019

1 MDP Value Iteration Algorithm

Administration. CSCI567 Machine Learning (Fall 2018) Outline. Outline. HW5 is available, due on 11/18. Practice final will also be available soon.

CS 188 Introduction to Fall 2007 Artificial Intelligence Midterm

Reinforcement Learning

Final Exam December 12, 2017

CSC321 Lecture 22: Q-Learning

Reinforcement Learning. Machine Learning, Fall 2010

Reinforcement Learning and Control

Artificial Intelligence

Final Exam December 12, 2017

Christopher Watkins and Peter Dayan. Noga Zaslavsky. The Hebrew University of Jerusalem Advanced Seminar in Deep Learning (67679) November 1, 2015

The Markov Decision Process (MDP) model

Course 16:198:520: Introduction To Artificial Intelligence Lecture 13. Decision Making. Abdeslam Boularias. Wednesday, December 7, 2016

Probabilistic Planning. George Konidaris

CS 7180: Behavioral Modeling and Decisionmaking

Reinforcement Learning. Spring 2018 Defining MDPs, Planning

16.410/413 Principles of Autonomy and Decision Making

Machine Learning and Bayesian Inference. Unsupervised learning. Can we find regularity in data without the aid of labels?

Markov Decision Processes and Solving Finite Problems. February 8, 2017

Distributed Optimization. Song Chong EE, KAIST

Markov Decision Processes Chapter 17. Mausam

Sequential Decision Problems

Figure 1: Bayes Net. (a) (2 points) List all independence and conditional independence relationships implied by this Bayes net.

Marks. bonus points. } Assignment 1: Should be out this weekend. } Mid-term: Before the last lecture. } Mid-term deferred exam:

Lecture notes for Analysis of Algorithms : Markov decision processes

Reinforcement Learning. Yishay Mansour Tel-Aviv University

PART A and ONE question from PART B; or ONE question from PART A and TWO questions from PART B.

Hidden Markov Models (HMM) and Support Vector Machine (SVM)

Reinforcement Learning. George Konidaris

A Gentle Introduction to Reinforcement Learning

Today s s Lecture. Applicability of Neural Networks. Back-propagation. Review of Neural Networks. Lecture 20: Learning -4. Markov-Decision Processes

Lecture 3: Markov Decision Processes

1. (3 pts) In MDPs, the values of states are related by the Bellman equation: U(s) = R(s) + γ max a

Internet Monetization

CMU Lecture 12: Reinforcement Learning. Teacher: Gianni A. Di Caro

Module 8 Linear Programming. CS 886 Sequential Decision Making and Reinforcement Learning University of Waterloo

Economics 2010c: Lectures 9-10 Bellman Equation in Continuous Time

This question has three parts, each of which can be answered concisely, but be prepared to explain and justify your concise answer.

Real Time Value Iteration and the State-Action Value Function

Planning in Markov Decision Processes

Optimism in the Face of Uncertainty Should be Refutable

1 Introduction 2. 4 Q-Learning The Q-value The Temporal Difference The whole Q-Learning process... 5

6 Reinforcement Learning

REINFORCEMENT LEARNING

CS181 Midterm 2 Practice Solutions

INF 5860 Machine learning for image classification. Lecture 14: Reinforcement learning May 9, 2018

AM 121: Intro to Optimization Models and Methods: Fall 2018

Grundlagen der Künstlichen Intelligenz

Optimal Control. McGill COMP 765 Oct 3 rd, 2017

Lecture 3: The Reinforcement Learning Problem

Introduction to Reinforcement Learning Part 1: Markov Decision Processes

Reinforcement Learning. Donglin Zeng, Department of Biostatistics, University of North Carolina

Lecture 1: March 7, 2018

Reinforcement Learning

CMU Lecture 11: Markov Decision Processes II. Teacher: Gianni A. Di Caro

Some AI Planning Problems

Reinforcement Learning

ARTIFICIAL INTELLIGENCE. Reinforcement learning

Q-Learning in Continuous State Action Spaces

Course basics. CSE 190: Reinforcement Learning: An Introduction. Last Time. Course goals. The website for the class is linked off my homepage.

CS 598 Statistical Reinforcement Learning. Nan Jiang

1 Markov decision processes

Decision making, Markov decision processes

CS788 Dialogue Management Systems Lecture #2: Markov Decision Processes

Markov decision processes

COMP3702/7702 Artificial Intelligence Lecture 11: Introduction to Machine Learning and Reinforcement Learning. Hanna Kurniawati

Today s Outline. Recap: MDPs. Bellman Equations. Q-Value Iteration. Bellman Backup 5/7/2012. CSE 473: Artificial Intelligence Reinforcement Learning

Reinforcement Learning

The Reinforcement Learning Problem

Markov Decision Processes Chapter 17. Mausam

Final. Introduction to Artificial Intelligence. CS 188 Spring You have approximately 2 hours and 50 minutes.

Introduction to Reinforcement Learning. CMPT 882 Mar. 18

Chapter 3: The Reinforcement Learning Problem

Multiagent Value Iteration in Markov Games

Reinforcement Learning

Balancing and Control of a Freely-Swinging Pendulum Using a Model-Free Reinforcement Learning Algorithm

An Introduction to Markov Decision Processes. MDP Tutorial - 1

The Simplex and Policy Iteration Methods are Strongly Polynomial for the Markov Decision Problem with Fixed Discount

Machine Learning I Reinforcement Learning

MATH240: Linear Algebra Review for exam #1 6/10/2015 Page 1

Reinforcement learning

Grundlagen der Künstlichen Intelligenz

CS221 Practice Midterm

The classifier. Theorem. where the min is over all possible classifiers. To calculate the Bayes classifier/bayes risk, we need to know

The classifier. Linear discriminant analysis (LDA) Example. Challenges for LDA

Reinforcement Learning and Deep Reinforcement Learning

Chapter 16 Planning Based on Markov Decision Processes

Introduction to Algorithms / Algorithms I Lecturer: Michael Dinitz Topic: Intro to Learning Theory Date: 12/8/16

Transcription:

CSE250A Fall 12: Discussion Week 9 Aditya Menon (akmenon@ucsd.edu) December 4, 2012 1 Schedule for today Recap of Markov Decision Processes. Examples: slot machines and maze traversal. Planning and learning. 2 Recap of Markov Decision Processes A Markov Decision Process (MDP) is defined by four elements: A state space S, An action space A, A transition probability function Pr s, a], where s, S, a A, A reward function R(, s, a) where s, S, a A An MDP represents models the behaviour of an environment over time. At each time step, the environment possesses a state in S. From the environment s point of view, the actions are the result of an external entity, known as the agent. Each action affects the state of the environment, and endows the agent with a reward. The aim of the agent is to perform actions that maximize the long-term reward. Formally, the interaction between the agent and environment is as follows. Initially, the agent finds herself at state s 0 S. for time steps t = 0... T : The agent performs an action a t A. The environment places the agent in the new state s t+1 by performing a random draw from the distribution Pr s t, a t ]. The environment rewards the agent by an amount R(s t+1, s t, a t ) The number of time steps T is called the horizon. It is mathematically convenient to assume an infinite horizon 1, T =. The figure below shows an illustration of this interaction. Above, we did not specify how the agent computes the action a t when she is in state s t. This is precisely the problem we wish to solve: we want to figure out a policy π : S A that tells us how to act given the state 1 If a finite horizon is genuinely needed, we can imagine the end-cell as having only self-transitions with zero reward. 1

Agent State Action Reward Environment State transition Figure 1: The interaction between agent and environment in an MDP. we are in. To determine a policy, we need to have a goal in mind. One reasonable goal is to maximize the discounted expected reward, where the expectation is over all possible future states. ] ExpReward(π) = E s0,s 1,... γ t R(s t+1, s t, π(s t )). Here, we assume s 0 µ(s), some prior probability distribution over the initial state of the MDP, and γ (0, 1) is the discount factor. Each s i s 0 is drawn from Pr s i 1, π(s i 1 )]. Let Π denote the set of all functions from S to A. Note that if S, A are finite, then Π = A S. We define the optimal policy to be π = argmax π Π ExpReward(π). 3 Examples of MDPs 3.1 Slot machines Suppose we (the agent) are in a casino (the environment), and there are K slot machines. We are free to play with any of the machines, in any order. Each play of a machine is independent from the previous ones from any other machine (including the current one). Each machine i gives us a payoff v i with probability p i. As a Markov decision process: The state space S = {0}; there is no really relevant concept of state for the environment, because we assume that playing one machine has no impact on playing any other machine in the future. The action space A = {1, 2,..., K} denotes the slot machine we decide to play with. The transition function T (, s, a) is trivially just 1 everywhere, as there is one state. { v a, probability p a The reward function R depends only on the action, and R(a). 0, probability 1 p a Our goal is to learn a policy 2 π : S A. As there is only one state, we are just trying to determine which slot machine to play. We assume that our goal is to maximize the discounted expected return, which in this case is ExpReward(π) = 1 1 γ E R(π(0))]. That is, we want to pick the slot machine which gives maximum expected reward. 2 This problem is also known as the K-armed bandit. 2

3.2 Traversing a maze Suppose we have an N N grid with designated start and end cells. The agent controls an entity that exists on a single cell of the grid. The environment controls a destructive flood that also exists on a single cell. At each time step, we assume that the agent takes an action wherein she can move in one of the four directions. We assume that the environment also places a flood on a random cell. The agent wishes to go from the start cell to the end cell, without encountering a flooded cell. The states of the system are: The state space S = {(x 1, y 1, x 2, y 2 ) N] 4 }, representing the (x, y) coordinates of the agent and the flooded cell in the N dimensional game grid. The action space A = {U, D, L, R} denotes the direction that the agent decides to move. The transition function T (, s, a) specifies the new position for the agent, as well as the new position for the flooded cell. The former can be assumed to be largely deterministic based on the action that the agent chosen, but with some probability goes in the opposite direction to what is desired: for example, maybe the agent is disoriented, so travels in the wrong direction by mistake. The latter reflects the new position of the flood. We ll assume that flooding just arises from a force of nature, which has some distribution over the cells. The reward function R is, say, 100 if the agent is on a flooded cell, and 100 if the agent is on the end cell, and 1 otherwise. 4 Planning and learning Now we consider how the agent might learn an optimal policy. This depends on how much information is available about the environment. 4.1 Case I: Full Information Consider for concreteness the maze traversal problem. Suppose that the agent knows both the transition and reward function. The latter is reasonable: the agent knows that it incurs a penalty if it collides with a flooded cell, but is otherwise free to roam. The former is questionable: it is not clear that the agent knows a-priori the rules that govern how floods arise. At any rate, in this setting, the agent can learn an optimal policy by policy iteration, as follows. 1. Pick a random initial policy π (0). Note that a policy has N 4 entries, one for each possible combination of agent and flood position, telling the agent how to move given these positions. For example, the agent may decide on a (not very good!) policy that says to always go down. 2. Compute the expected reward for the agent under this policy. This averages over all possible sequences of positions of the agent and flooded cell, and for each computes the discounted reward that the agent receives. Note that the policy π (0) affects how likely different states are, and hence the value of this expected reward: if the agent always decides to go down, for example, then they may never reach the end cell, so that state will have zero probability. 3. Compute a refined policy π (1) as follows: for each state, pick the action a which maximizes the expected reward if we follow a for our next action, and then follow π (0) for all future actions. Essentially, we evaluate which direction is the best for each possible state, based on the expected return, and use this as our new policy. 4. Repeat steps (2)-(3) until convergence. 3

Note that the agent does all of this without actually making a physical action: it basically simulates the mechanics of a path traversal, because it already knows everything about the underlying MDP. Once it does this calculation, it can interact with the environment optimally. Step 2 is called policy evaluation and Step 3 policy improvement. Step 4 involves testing convergence. We elaborate on the steps in turn. 4.1.1 Step 2: Policy evaluation Assuming an infinite horizon, and a reward function that depends only on the current state, ExpReward(π) = E s0,s 1,... γ t R(s t ) ] π = PrS 0 = s] E s1,s 2,... γ t R(s t ) ] s 0 = s; π s := PrS 0 = s] V (s; π). s The function V computes the expected reward from following policy π, given that we start in state s. It is called the state value function. How do we compute it? For each initial state s, observe that V (s; π) = E s1,s 2,... γ t R(s t ) ] s 0 = s; π = R(s) + E s1,s 2,... γ t R(s t ) ] s0 = s; π t=1 = R(s) + γe s1,s 2,... γ t 1 R(s t ) ] s0 = s; π t=1 = R(s) + γ PrS 1 = S 0 = s, π(s)] E s2,s 3,... γ t 1 R(s t ) ] s 1 = ; π = R(s) + γ PrS 1 = S 0 = s, π(s)] E s1, s 2,... =: R(s) + γ Pr s, π(s)] V ( ; π). t=1 γ t R( s t ) ] s 1 = ; π where s t := s t 1 This evaluates the expected utility if we begin from state s and keep following the policy π. The set of equations are known as the Bellman equations, and it admits a simple closed form solution: = (I γp )V = R V = R + γp V = V = (I γp ) 1 R, where P is the matrix with entries Pr s, π(s)]. Note that we can compute this solution because we have full knowledge about the system, i.e. because we know the matrix P and the reward R. In practice we don t actually have to do the inverse, and can instead solve the system of linear equations implied by (I γp )V = R. Further, the inverse of I γp exists because P is a stochastic matrix, and so has eigenvalues of maximum magnitude 1 by the Perron-Frobenius theorem, which are further scaled down by γ < 1. 4

4.1.2 Step 3: Policy improvement If we write our current policy as π (t), policy improvement involves simply finding the action a that yields maximum reward if we perform it on state s now, and then follow the current policy: ] π (t+1) (s) = argmax a R(s, a) + γ Pr s, a] V ( ; π (t) ) := argmax a Q(s, a; π (t) ). The Q(s, a; π) function encodes the expected reward if we start from state s, follow action a, and then follow the policy π. It is called the state-action value function. Observe that by definition, at any iteration t, V (s; π (t) ) = Q(s, π (t) (s); π (t) ). 4.1.3 Step 4: Convergence of policy iteration The condition for policy iteration to terminate is that we are unable to further improve the value of our policy. That is, we have V (s; π (t+1) ) = V (s; π (t) ) := V (s). Note that there may be many policies π for which V (s; π) = V (s). When we talk of an optimal policy, we generally mean any policy for which the state value function is maximized. We can derive an important property the optimal state value function by using the fact that π (t+1) is greedily derived from π (t) : V (s = V (s; π (t+1) ) ] = R(s) + γ Pr s, π (t+1) (s)] V (s; π (t+1) ) s ] = R(s) + γ Pr s, π (t+1) (s)] V (s; π (t) ) ] = R(s) + γ max Pr s, a] V (s; π (t) ). a This is similar, but distinct to the Bellman equation we derived earlier. This equation is only satisfied by the optimal state value function. If we could solve this equation directly, we could compute an optimal policy s value; but the system is nonlinear due to the max operator. The above set of nonlinear equations are known as the Bellman optimality equations. (This criterion may be used to compute the optimal policy with a different strategy, value iteration, that we do not discuss here.) 4.2 Case II: Partial Information Suppose now that the agent doesn t know the transition or reward function. In this more realistic setting, we have to either estimate the parameters of the MDP and use these to derive a policy, or somehow implicitly build up knowledge of the environment to construct a policy. Options include TD-learning, Q-learning and LSPI. LSPI builds upon a method called LSTD, which attempts approximate the state value function using a linear representation. This is useful when the state space is large and/or continuous. Specifically, we assume that V (s) = w T φ(s) + (s), where φ(s) is some vector representation of the state s, w is a set of weights, and (s) is an error term. We d like to pick w so as to get a good approximation to V, or equivalently that the elements of (s) are small in 5

some sense. Recall that V was defined by the Bellman equation, V = R + γp V. Trivially, this can be thought of as the fixed point of the function f(v) = R + γp v, where v is a vector. So, there are at least two possible criteria for picking a good w, each potentially yielding a different solution: Find the fixed point of f. Then, pick w to yield the best approximation to this fixed point. Construct a function f that mimics f, but only yields outputs that are of the form Φw. Then, find the fixed point of this f, and extract the corresponding weight w. It turns out that the latter has better performance, so we will focus on that. We will consider the function f(v) = R + γp v where v is constrained to be of the form Φw for some w. Does this equation have a fixed point? In general, no, because we need v = R + γp v = Φw = R + γp Φw, and the latter linear system may be overdetermined in general. So, analyzing this particular function seems futile. Intuitively, the problem is that the left hand side, Φw, necessarily returns a vector that is a linear combination of the columns of Φ, i.e. an element of the columnspace of Φ. The RHS is not guaranteed to lie in this space, and so an exact solution is impossible. What if we force the values of f to lie in this columnspace? Then, we can guarantee that there exists a fixed point solution. In particular, consider f(v) = Φ(Φ T Φ) Φ T (R + γp v), where as before v is constrained to be of the form v = Φw. Here, X denotes the pseudo-inverse of X. If the columns of Φ are linearly independent, it turns out that the pseudo-inverse of Φ T Φ equals the inverse. We ll assume this is so from hereon in. It turns out that we can guarantee a solution to the new fixed point equation So, we need to solve v = Φ(Φ T Φ) 1 Φ T (R + γp v) = Φw = Φ(Φ T Φ) 1 Φ T (R + γp Φw). Φw = Φ(Φ T Φ) 1 Φ T (R + γp Φw). First, note that by left-multiplying both sides by Φ T, we get Rearranging, we get (Φ T Φ)w = Φ T (R + γp Φw). w = (Φ T (I γp )Φ) 1 Φ T R. Thus, we can just use the above as our weights, and use this to approximate the value function as ˆV = Φ(Φ T (I γp )Φ) 1 Φ T R. Of course, this doesn t really address the fact that we don t know the transition function, and must estimate it from data. The details of this are in the lecture notes. 6