Markov Decision Processes

Slides:



Advertisements
Similar presentations
Lirong Xia Reinforcement Learning (1) Tue, March 18, 2014.
Advertisements

Markov Decision Process
Value Iteration & Q-learning CS 5368 Song Cui. Outline Recap Value Iteration Q-learning.
Announcements  Homework 3: Games  Due tonight at 11:59pm.  Project 2: Multi-Agent Pacman  Has been released, due Friday 2/21 at 5:00pm.  Optional.
Decision Theoretic Planning
Markov Decision Processes
Infinite Horizon Problems
Planning under Uncertainty
Announcements Homework 3: Games Project 2: Multi-Agent Pacman
SA-1 1 Probabilistic Robotics Planning and Control: Markov Decision Processes.
91.420/543: Artificial Intelligence UMass Lowell CS – Fall 2010
CS 188: Artificial Intelligence Fall 2009 Lecture 10: MDPs 9/29/2009 Dan Klein – UC Berkeley Many slides over the course adapted from either Stuart Russell.
Markov Decision Processes Value Iteration Pieter Abbeel UC Berkeley EECS TexPoint fonts used in EMF. Read the TexPoint manual before you delete this box.:
CS Reinforcement Learning1 Reinforcement Learning Variation on Supervised Learning Exact target outputs are not given Some variation of reward is.
Utility Theory & MDPs Tamara Berg CS Artificial Intelligence Many slides throughout the course adapted from Svetlana Lazebnik, Dan Klein, Stuart.
MAKING COMPLEX DEClSlONS
Reinforcement Learning  Basic idea:  Receive feedback in the form of rewards  Agent’s utility is defined by the reward function  Must learn to act.
Computer Science CPSC 502 Lecture 14 Markov Decision Processes (Ch. 9, up to 9.5.3)
CSE 473Markov Decision Processes Dan Weld Many slides from Chris Bishop, Mausam, Dan Klein, Stuart Russell, Andrew Moore & Luke Zettlemoyer.
1 Markov Decision Processes Infinite Horizon Problems Alan Fern * * Based in part on slides by Craig Boutilier and Daniel Weld.
1 Markov Decision Processes Infinite Horizon Problems Alan Fern * * Based in part on slides by Craig Boutilier and Daniel Weld.
Quiz 6: Utility Theory  Simulated Annealing only applies to continuous f(). False  Simulated Annealing only applies to differentiable f(). False  The.
CS 188: Artificial Intelligence Spring 2007 Lecture 21:Reinforcement Learning: I Utilities and Simple decisions 4/10/2007 Srini Narayanan – ICSI and UC.
gaflier-uas-battles-feral-hogs/ gaflier-uas-battles-feral-hogs/
CS 188: Artificial Intelligence Spring 2007 Lecture 23: Reinforcement Learning: III 4/17/2007 Srini Narayanan – ICSI and UC Berkeley.
Announcements  Upcoming due dates  Wednesday 11/4, 11:59pm Homework 8  Friday 10/30, 5pm Project 3  Watch out for Daylight Savings and UTC.
CSE 473Markov Decision Processes Dan Weld Many slides from Chris Bishop, Mausam, Dan Klein, Stuart Russell, Andrew Moore & Luke Zettlemoyer.
CS 188: Artificial Intelligence Spring 2007 Lecture 21:Reinforcement Learning: II MDP 4/12/2007 Srini Narayanan – ICSI and UC Berkeley.
Announcements  Homework 3: Games  Due tonight at 11:59pm.  Project 2: Multi-Agent Pacman  Has been released, due Friday 2/19 at 5:00pm.  Optional.
Def gradientDescent(x, y, theta, alpha, m, numIterations): xTrans = x.transpose() replaceMe =.0001 for i in range(0, numIterations): hypothesis = np.dot(x,
Reinforcement Learning  Basic idea:  Receive feedback in the form of rewards  Agent’s utility is defined by the reward function  Must learn to act.
CS 541: Artificial Intelligence Lecture X: Markov Decision Process Slides Credit: Peter Norvig and Sebastian Thrun.
CS 5751 Machine Learning Chapter 13 Reinforcement Learning1 Reinforcement Learning Control learning Control polices that choose optimal actions Q learning.
CS 182 Reinforcement Learning. An example RL domain Solitaire –What is the state space? –What are the actions? –What is the transition function? Is it.
CS 188: Artificial Intelligence Fall 2008 Lecture 8: MEU / Utilities 9/23/2008 Dan Klein – UC Berkeley Many slides over the course adapted from either.
Markov Decision Process (MDP)
Announcements Grader office hours posted on course website
Intelligent Systems (AI-2) Computer Science cpsc422, Lecture 3
Markov Decision Processes II
Making complex decisions
Reinforcement Learning (1)
Intelligent Systems (AI-2) Computer Science cpsc422, Lecture 3
Markov Decision Processes
CPS 570: Artificial Intelligence Markov decision processes, POMDPs
CS 4/527: Artificial Intelligence
CSE 473: Artificial Intelligence
CS 188: Artificial Intelligence
CAP 5636 – Advanced Artificial Intelligence
Instructors: Fei Fang (This Lecture) and Dave Touretzky
Quiz 6: Utility Theory Simulated Annealing only applies to continuous f(). False Simulated Annealing only applies to differentiable f(). False The 4 other.
CS 188: Artificial Intelligence Fall 2007
CS 188: Artificial Intelligence Fall 2008
CS 188: Artificial Intelligence Fall 2008
Instructor: Vincent Conitzer
CS 188: Artificial Intelligence Fall 2007
CSE 473 Markov Decision Processes
Chapter 17 – Making Complex Decisions
CS 188: Artificial Intelligence Spring 2006
CMSC 471 – Fall 2011 Class #25 – Tuesday, November 29
Hidden Markov Models (cont.) Markov Decision Processes
CS 188: Artificial Intelligence Spring 2006
CS 188: Artificial Intelligence Fall 2007
Announcements Homework 2 Project 2 Mini-contest 1 (optional)
Warm-up as You Walk In Given Set actions (persistent/static)
CS 416 Artificial Intelligence
Reinforcement Learning (2)
Markov Decision Processes
Reinforcement Learning (2)
Intelligent Systems (AI-2) Computer Science cpsc422, Lecture 3
Presentation transcript:

Markov Decision Processes Lirong Xia

Today Markov decision processes Computing optimal policy search with uncertain moves and “infinite” space Computing optimal policy value iteration policy iteration

Grid World The agent lives in a grid Walls block the agent’s path The agent’s actions do not always go as planned: 80% of the time, the action North takes the agent North (if there is no wall there) 10% of the time, North takes the agent West; 10% East If there is a wall in the direction the agent would have taken, the agent stays for this turn Small “living” reward (or cost) each step Big rewards come at the end Goal: maximize sum of reward

Deterministic Grid World Grid Feature Deterministic Grid World Stochastic Grid World

Markov Decision Processes An MDP is defined by: A set of states s∈S A set of actions a∈A A transition function T(s, a, s’) Prob that a from s leads to s’ i.e., p(s’|s, a) sometimes called the model A reward function R(s, a, s’) Sometimes just R(s) or R(s’) A start state (or distribution) Maybe a terminal state MDPs are a family of nondeterministic search problems Reinforcement learning (next class): MDPs where we don’t know the transition or reward functions

What is Markov about MDPs? Andrey Markov (1856-1922) “Markov” generally means that given the present state, the future and the past are independent For Markov decision processes, “Markov” means:

Solving MDPs In deterministic single-agent search problems, want an optimal plan, or sequence of actions, from start to a goal In an MDP, we want an optimal policy A policy π gives an action for each state An optimal policy maximizes expected utility if followed Optimal policy when R(s, a, s’) = -0.03 for all non- terminal state

Plan vs. Policy Plan Policy A path from the start to a GOAL a collection of optimal actions, one for each state of the world you can start at any state

Example Optimal Policies R(s) = -0.01 R(s) = -0.03 R(s) = -0.4 R(s) = -2.0

Example: High-Low Three card type: 2,3,4 Infinite deck, twice as many 2’s Start with 3 showing After each card, you say “high” or “low” If you’re right, you win the points shown on the new card If tied, then skip this round If you’re wrong, game ends Why not use expectimax? #1: get rewards as you go #2: you might play forever!

High-Low as an MDP States: 2, 3, 4, done Actions: High, Low Model: T(s,a,s’): p(s’=4|4,low) = ¼ p(s’=3|4,low) = ¼ p(s’=2|4,low) = ½ p(s’=done|4,low) =0 p(s’=4|4,high) = ¼ p(s’=3|4,high) = 0 p(s’=2|4,high) = 0 p(s’=done|4,high) = ¾ … Rewards: R(s,a,s’): Number shown on s’ if 0 otherwise Start: 3

MDP Search Trees Each MDP state gives an expectimax-like search tree

Utilities of Sequences In order to formalize optimality of a policy, need to understand utilities of sequences of rewards Typically consider stationary preferences: Two coherent ways to define stationary utilities Additive utility: Discounted utility:

Infinite Utilities?! Problems: infinite state sequences have infinite rewards Solutions: Finite horizon: Terminate episodes after a fixed T steps (e.g. life) Gives nonstationary policies (π depends on time left) Absorbing state: guarantee that for every policy, a terminal state will eventually be reached (like “done” for High-Low) Discounting: for 0<ϒ<1 Smaller ϒ means smaller “horizon”-shorter term focus

Discounting Typically discount rewards by each time step Sooner rewards have higher utility than later rewards Also helps the algorithms converge

Recap: Defining MDPs Markov decision processes: MDP quantities so far: States S Start state s0 Actions A Transition p(s’|s,a) (or T(s,a,s’)) Reward R(s,a,s’) (and discount ) MDP quantities so far: Policy = Choice of action for each (MAX) state Utility (or return) = sum of discounted rewards

Optimal Utilities Fundamental operation: compute the values (optimal expectimax utilities) of states s c.f. evaluation function in expectimax Define the value of a state s: V*(s) = expected utility starting in s and acting optimally Define the value of a q-state (s,a): Q*(s,a) = expected utility starting in s, taking action a and thereafter acting optimally Define the optimal policy: π*(s) = optimal action from state s

The Bellman Equations Definition of “optimal utility” leads to a simple one-step lookahead relationship amongst optimal utility values: Optimal rewards = maximize over first step + value of following the optimal policy Formally:

Solving MDPs We want to find the optimal policy Proposal 1: modified expectimax search, starting from each state s:

Why Not Search Trees? Why not solve with expectimax? Problems: This tree is usually infinite Same states appear over and over We would search once per state Idea: value iteration Compute optimal values for all states all at once using successive approximations

Value Estimates Calculate estimates Vk*(s) Not the optimal value of s! The optimal value considering only next k time steps (k rewards) As , it approaches the optimal value Almost solution: recursion (i.e. expectimax) Correct solution: dynamic programming

Computing the optimal policy Value iteration Policy iteration

Value Iteration Idea: Theorem: will converge to unique optimal values Start with V1(s) = 0 Given Vi, calculate the values for all states for depth i+1: This is called a value update or Bellman update Repeat until converge Use Vi as evaluation function when computing Vi+1 Theorem: will converge to unique optimal values Basic idea: approximations get refined towards optimal values Policy may converge long before values do

Example: Bellman Updates Example: γ=0.9, living reward=0, noise=0.2 Example: Bellman Updates max happens for a=right, other actions not shown

Example: Value Iteration Information propagates outward from terminal states and eventually all states have correct value estimates

Convergence Define the max-norm: Theorem: for any two approximations U and V I.e. any distinct approximations must get closer to each other, so, in particular, any approximation must get closer to the true U and value iteration converges to a unique, stable, optimal solution Theorem: I.e. once the change in our approximation is small, it must also be close to correct

Practice: Computing Actions Which action should we chose from state s: Given optimal values V? Given optimal q-values Q?

Utilities for a Fixed Policy Another basic operation: compute the utility of a state s under a fixed (generally non-optimal) policy Define the utility of a state s, under a fixed policy π: Vπ(s)=expected total discounted rewards (return) starting in s and following π Recursive relation (one-step lookahead / Bellman equation):

Policy Evaluation How do we calculate the V’s for a fixed policy? Idea one: turn recursive equations into updates Idea two: it’s just a linear system, solve with Matlab (or other tools)

Policy Iteration Alternative approach: This is policy iteration Step 1: policy evaluation: calculate utilities for some fixed policy (not optimal utilities!) Step 2: policy improvement: update policy using one-step look-ahead with resulting converged (but not optimal!) utilities as future values Repeat steps until policy converges This is policy iteration It’s still optimal! Can converge faster under some conditions

Policy Iteration Policy evaluation: with fixed current policy π, find values with simplified Bellman updates: Policy improvement: with fixed utilities, find the best action according to one-step look-ahead

Comparison Both compute same thing (optimal values for all states) In value iteration: Every iteration updates both utilities (explicitly, based on current utilities) and policy (implicitly, based on current utilities) Tracking the policy isn’t necessary; we take the max In policy iteration: Compute utilities with fixed policy After utilities are computed, a new policy is chosen Both are dynamic programs for solving MDPs

Preview: Reinforcement Learning Still have an MDP: A set of states A set of actions (per state) A A model T(s,a,s’) A reward function R(s,a,s’) Still looking for a policy π(s) New twist: don’t know T or R I.e. don’t know which states are good or what the actions do Must actually try actions and states out to learn