IPOMDP-Net: a Deep Neural Network for Partially Observable Multi-Agent Planning Using Interactive Pomdps

Total Page:16

File Type:pdf, Size:1020Kb

IPOMDP-Net: a Deep Neural Network for Partially Observable Multi-Agent Planning Using Interactive Pomdps The Thirty-Third AAAI Conference on Artificial Intelligence (AAAI-19) IPOMDP-Net: A Deep Neural Network for Partially Observable Multi-Agent Planning Using Interactive POMDPs Yanlin Han, Piotr Gmytrasiewicz Department of Computer Science University of Illinois at Chicago Chicago, IL 60607 Abstract ment learning methods, in which the rewards are usually as- sumed obtainable. While the model-free policy learning can This paper introduces the IPOMDP-net, a neural network be end-to-end, it lacks the model information for effective architecture for multi-agent planning under partial observ- generalization (Karkus, Hsu, and Lee 2017). Particularly, in ability. It embeds an interactive partially observable Markov decision process (I-POMDP) model and a QMDP planning the multi-agent domain, other agents’ actions impact the en- algorithm that solves the model in a neural network archi- vironment, which indirectly impact our policies. Therefore, tecture. The IPOMDP-net is fully differentiable and allows we prefer a model-based approach, since having a model of for end-to-end training. In the learning phase, we train an other agents helps our reasoning about their actions and con- IPOMDP-net on various fixed and randomly generated en- sequently benefits our decision making. vironments in a reinforcement learning setting, assuming ob- The unprecedented success of deep neural networks servable reinforcements and unknown (randomly initialized) (DNNs) in supervised learning (Ciregan, Meier, and model functions. In the planning phase, we test the trained network on new, unseen variants of the environments under Schmidhuber ; Farabet et al. 2013; Krizhevsky, Sutskever, the planning setting, using the trained model to plan without and Hinton 2012) provides new approaches to decision reinforcements. Empirical results show that our model-based making under uncertainty. Convolutional neural networks IPOMDP-net outperforms the other state-of-the-art model- (CNNs) and recurrent neural networks (RNNs) have been free network and generalizes better to larger, unseen environ- applied to tasks like Atari games (Mnih et al. 2015), robotics ments. Our approach provides a general neural computing ar- (Levine et al. 2016), and 2D path planning (Karkus, Hsu, and chitecture for multi-agent planning using I-POMDPs. It sug- Lee 2017). In these tasks, a DNN is trained to approximate gests that, in a multi-agent setting, having a model of other a policy function that maps an agent’s observations to opti- agents benefits our decision-making, resulting in a policy of mal actions. The deep Q-network (DQN), which consists of higher quality and better generalizability. convolutional layers for feature extraction and a fully con- nected layer for mapping features to actions, tackles many Introduction Atari games with the same network architecture (Mnih et al. 2015). DQN is inherently reactive and lacks explicit plan- Decision-making under partial observability is fundamen- ning computation (Tamar et al. 2016). The deep recurrent tally important but computationally hard, especially in Q-network (DRQN) extends DQN to the partially observ- multi-agent settings. In partially observable multi-agent en- able domain by replacing the fully connected layer with a vironments, an agent needs to deal with uncertainties from recurrent long short-term memory (LSTM) (Hochreiter and its own models as well as impacts from other agents ac- Schmidhuber 1997) layer to integrate temporal information tions caused by their models. To learn policies in such (Hausknecht and Stone 2015). Furthermore, the value iter- settings, one approach is to learn models and solve them ation network (VIN) started to embed specific computation through planning. If the models are known, it reduces to a structures (Tamar et al. 2016), particularly the value iteration planning problem and can be formulated as an interactive algorithm, in the network architecture and solves fully ob- partially observable Markov decision process (I-POMDP) servable Markov decision processes (MDPs). The QMDP- (Gmytrasiewicz and Doshi 2005). Although approximate al- net further embeds a POMDP model and a QMDP planning gorithms have made progress on mitigating the computing algorithm that solves the model in a RNN (Karkus, Hsu, complexity (Doshi and Gmytrasiewicz 2009; Han and Gmy- and Lee 2017). However, all the discussed neural networks trasiewicz 2018), solving I-POMDPs exactly is still com- are either model-free or for single-agent settings. Unless we putationally intractable for the worst case. Moreover, con- model other agents’ impact as noise and embed it into the structing I-POMDP models manually or learning them from world dynamic, which often leads to inferior solution qual- observations remains difficult. An alternative approach is to ity, it is not feasible to directly apply these networks into a learn policies directly, such as using model-free reinforce- multi-agent partially observable domain. Copyright c 2019, Association for the Advancement of Artificial In this work, we propose a neural network architec- Intelligence (www.aaai.org). All rights reserved. ture, the IPOMDP-net, for multi-agent planning under par- 6062 tial observability. We extends the QMDP-net to a multi- of agent j at level l − 1 is defined as θj;l−1 = agent domain by combining an interactive POMDP (I- hbj;l−1; A; Ωj;Tj;Oj;Rj; OCji, where bj;l−1 is agent j’s POMDP)(Gmytrasiewicz and Doshi 2005) model with a belief nested to the level (l − 1), bj;l−1 2 ∆(ISj;l−1), QMDP planning algorithm and embedding both in a re- and OCj is j’s optimality criterion. It can be rewritten as ^ ^ current neural network. We implement the IPOMDP-net on θj;l−1 = hbj;l−1; θji, where θj includes all elements of the GPU-based computing devices and train it on problems of intentional model other than the belief. various sizes and dimensions. The training starts from ran- The ISi;l can be defined in an inductive manner: domly initialized weights, and is performed in a reinforce- ^ ment learning fashion assuming the reward is obtainable. ISi;0 = S; θj;0 = fhbj;0; θj i : bj;0 2 ∆(S)g We then evaluate the trained IPOMDP-net by comparing its ISi;1 = S × θj;0; θj;1 = fhbj;1; θ^j i : bj;1 2 ∆(ISj;1)g performance with another state-of-the-art model-free neural :::::: (2) network. During the testing, we remove the obtainable re- ^ ward assumption of all trained neural networks and test them ISi;l = S × θj;l−1; θj;l = fhbj;l; θj i : bj;l 2 ∆(ISj;l)g on new unseen settings of the same problems. Therefore, All remaining components in an I-POMDP are similar to they are using learned policies and acting based on observa- those in a POMDP. A = A × A is the set of joint actions tion and action sequences in the same way as the symbolic i j of all agents. Ω is the set of agent i’s possible observations. I-POMDP does. We show empirical results that our model- i T : S × A × S ! [0; 1] is the transition function. O : S × based IPOMDP-net outperforms the state-of-the-art model- i i A×Ω ! [0; 1] is the observation function. R : IS ×A ! free network in different tasks. i i i is the reward function. Our approach provides a general neural computing ar- R chitecture for multi-agent planning using I-POMDPs. It combines the benefits of model-free learning and model- Interactive Belief Update based planning. Compared with model-free networks, the Given the definitions above, the interactive belief update can IPOMDP-net trained on small problem sizes generalizes be performed as follows, by considering others’ actions and more effectively to larger difficult settings. It suggests that, anticipated observations: in a multi-agent setting, having a model of other agents ben- efits our decision-making, resulting in a policy of higher bt (ist) = P r(istjbt−1; at−1; ot) (3) quality and better generalizability. i;l i;l i i X t−1 X t−1 t−1 t−1 t−1 t = α bi;l(is ) P r(aj jθj;l−1)T (s ; a ; s )× ist−1 t−1 Background aj In this section, we will briefly introduce the underlying t t−1 t X t t−1 t t−1 t−1 t t Oi(s ; a ; oi) Oj (s ; a ; oj )τ(bj;l−1; aj ; oj ; b;l−1) multi-agent planning model, the interactive POMDP (Gmy- t oj trasiewicz and Doshi 2005), that is encoded in our neural network architecture. Conveniently, the equation above can be summarized as t t−1 t−1 t bi;l = SE(bi;l ; ai ; oi). I-POMDP Framework Compared with POMDP, there are two major differences. I-POMDPs generalize POMDPs (Kaelbling, Littman, and First, the probability of other’s actions given his models Cassandra 1998) to multi-agent settings by including mod- needs to be computed since the state now depends on both els of other agents in the belief state space (Gmytrasiewicz agents’ actions (the second summation). Second, the model- and Doshi 2005). The resulting hierarchical belief structure ing agent needs to update his beliefs based on the anticipa- represents an agent’s belief about the physical state, belief tion of what observations the other agent might get and how about the other agents and their beliefs about others’ be- it updates (the third summation). liefs, and can be nested infinitely in this recursive manner. While exact interactive belief update is intractable, there For simplicity, we consider two interacting agents i and j. are sampling-based approximations using customized inter- This formalism generalizes to more number of agents in a active version of particle filters (Doshi and Gmytrasiewicz straightforward manner. 2009; ?), which will be embedded in the IPOMDP-net in a A computable finitely nested interactive POMDP of agent neural analogy.
Recommended publications
  • Probabilistic Goal Markov Decision Processes∗
    Proceedings of the Twenty-Second International Joint Conference on Artificial Intelligence Probabilistic Goal Markov Decision Processes∗ Huan Xu Shie Mannor Department of Mechanical Engineering Department of Electrical Engineering National University of Singapore, Singapore Technion, Israel [email protected] [email protected] Abstract also concluded that in daily decision making, people tends to regard risk primarily as failure to achieving a predeter- The Markov decision process model is a power- mined goal [Lanzillotti, 1958; Simon, 1959; Mao, 1970; ful tool in planing tasks and sequential decision Payne et al., 1980; 1981]. making problems. The randomness of state tran- Different variants of the probabilistic goal formulation sitions and rewards implies that the performance 1 of a policy is often stochastic. In contrast to the such as chance constrained programs , have been extensively standard approach that studies the expected per- studied in single-period optimization [Miller and Wagner, formance, we consider the policy that maximizes 1965; Pr´ekopa, 1970]. However, little has been done in the probability of achieving a pre-determined tar- the context of sequential decision problem including MDPs. get performance, a criterion we term probabilis- The standard approaches in risk-averse MDPs include max- tic goal Markov decision processes. We show that imization of expected utility function [Bertsekas, 1995], this problem is NP-hard, but can be solved using a and optimization of a coherent risk measure [Riedel, 2004; pseudo-polynomial algorithm. We further consider Le Tallec, 2007]. Both approaches lead to formulations that a variant dubbed “chance-constraint Markov deci- can not be solved in polynomial time, except for special sion problems,” that treats the probability of achiev- cases including exponential utility function [Chung and So- ing target performance as a constraint instead of the bel, 1987], piecewise linear utility function with a single maximizing objective.
    [Show full text]
  • 1 Introduction
    SEMI-MARKOV DECISION PROCESSES M. Baykal-G}ursoy Department of Industrial and Systems Engineering Rutgers University Piscataway, New Jersey Email: [email protected] Abstract Considered are infinite horizon semi-Markov decision processes (SMDPs) with finite state and action spaces. Total expected discounted reward and long-run average expected reward optimality criteria are reviewed. Solution methodology for each criterion is given, constraints and variance sensitivity are also discussed. 1 Introduction Semi-Markov decision processes (SMDPs) are used in modeling stochastic control problems arrising in Markovian dynamic systems where the sojourn time in each state is a general continuous random variable. They are powerful, natural tools for the optimization of queues [20, 44, 41, 18, 42, 43, 21], production scheduling [35, 31, 2, 3], reliability/maintenance [22]. For example, in a machine replacement problem with deteriorating performance over time, a decision maker, after observing the current state of the machine, decides whether to continue its usage, or initiate a maintenance (preventive or corrective) repair, or replace the machine. There are a reward or cost structure associated with the states and decisions, and an information pattern available to the decision maker. This decision depends on a performance measure over the planning horizon which is either finite or infinite, such as total expected discounted or long-run average expected reward/cost with or without external constraints, and variance penalized average reward. SMDPs are based on semi-Markov processes (SMPs) [9] [Semi-Markov Processes], that include re- newal processes [Definition and Examples of Renewal Processes] and continuous-time Markov chains (CTMCs) [Definition and Examples of CTMCs] as special cases.
    [Show full text]
  • Arxiv:2004.13965V3 [Cs.LG] 16 Feb 2021 Optimal Policy
    Graph-based State Representation for Deep Reinforcement Learning Vikram Waradpande, Daniel Kudenko, and Megha Khosla L3S Research Center, Leibniz University, Hannover {waradpande,khosla,kudenko}@l3s.de Abstract. Deep RL approaches build much of their success on the abil- ity of the deep neural network to generate useful internal representa- tions. Nevertheless, they suffer from a high sample-complexity and start- ing with a good input representation can have a significant impact on the performance. In this paper, we exploit the fact that the underlying Markov decision process (MDP) represents a graph, which enables us to incorporate the topological information for effective state representation learning. Motivated by the recent success of node representations for several graph analytical tasks we specifically investigate the capability of node repre- sentation learning methods to effectively encode the topology of the un- derlying MDP in Deep RL. To this end we perform a comparative anal- ysis of several models chosen from 4 different classes of representation learning algorithms for policy learning in grid-world navigation tasks, which are representative of a large class of RL problems. We find that all embedding methods outperform the commonly used matrix represen- tation of grid-world environments in all of the studied cases. Moreoever, graph convolution based methods are outperformed by simpler random walk based methods and graph linear autoencoders. 1 Introduction A good problem representation has been known to be crucial for the perfor- mance of AI algorithms. This is not different in the case of reinforcement learn- ing (RL), where representation learning has been a focus of investigation.
    [Show full text]
  • A Brief Taster of Markov Decision Processes and Stochastic Games
    Algorithmic Game Theory and Applications Lecture 15: a brief taster of Markov Decision Processes and Stochastic Games Kousha Etessami Kousha Etessami AGTA: Lecture 15 1 warning • The subjects we will touch on today are so interesting and vast that one could easily spend an entire course on them alone. • So, think of what we discuss today as only a brief “taster”, and please do explore it further if it interests you. • Here are two standard textbooks that you can look up if you are interested in learning more: – M. Puterman, Markov Decision Processes, Wiley, 1994. – J. Filar and K. Vrieze, Competitive Markov Decision Processes, Springer, 1997. (This book is really about 2-player zero-sum stochastic games.) Kousha Etessami AGTA: Lecture 15 2 Games against Nature Consider a game graph, where some nodes belong to player 1 but others are chance nodes of “Nature”: Start Player I: Nature: 1/3 1/6 3 2/3 1/3 1/3 1/6 1 −2 Question: What is Player 1’s “optimal strategy” and “optimal expected payoff” in this game? Kousha Etessami AGTA: Lecture 15 3 a simple finite game: “make a big number” k−1k−2 0 • Your goal is to create as large a k-digit number as possible, using digits from D = {0, 1, 2,..., 9}, which “nature” will give you, one by one. • The game proceeds in k rounds. • In each round, “nature” chooses d ∈ D “uniformly at random”, i.e., each digit has probability 1/10. • You then choose which “unfilled” position in the k-digit number should be “filled” with digit d.
    [Show full text]
  • Markov Decision Processes
    Markov Decision Processes Robert Platt Northeastern University Some images and slides are used from: 1. CS188 UC Berkeley 2. AIMA 3. Chris Amato 4. Stacy Marsella Stochastic domains So far, we have studied search Can use search to solve simple planning problems, e.g. robot planning using A* But only in deterministic domains... Stochastic domains So far, we have studied search Can use search to solve simple planning problems, e.g. robot planning using A* A* doesn't work so well in stochastic environments... !!? Stochastic domains So far, we have studied search Can use search to solve simple planning problems, e.g. robot planning using A* A* doesn't work so well in stochastic environments... !!? We are going to introduce a new framework for encoding problems w/ stochastic dynamics: the Markov Decision Process (MDP) SEQUENTIAL DECISION- MAKING MAKING DECISIONS UNDER UNCERTAINTY • Rational decision making requires reasoning about one’s uncertainty and objectives • Previous section focused on uncertainty • This section will discuss how to make rational decisions based on a probabilistic model and utility function • Last class, we focused on single step decisions, now we will consider sequential decision problems REVIEW: EXPECTIMAX max • What if we don’t know the outcome of actions? • Actions can fail a b • when a robot moves, it’s wheels might slip chance • Opponents may be uncertain 20 55 .3 .7 .5 .5 1020 204 105 1007 • Expectimax search: maximize average score • MAX nodes choose action that maximizes outcome • Chance nodes model an outcome
    [Show full text]
  • Markovian Competitive and Cooperative Games with Applications to Communications
    DISSERTATION in Partial Fulfillment of the Requirements for the Degree of Doctor of Philosophy from University of Nice Sophia Antipolis Specialization: Communication and Electronics Lorenzo Maggi Markovian Competitive and Cooperative Games with Applications to Communications Thesis defended on the 9th of October, 2012 before a committee composed of: Reporters Prof. Jean-Jacques Herings (Maastricht University, The Netherlands) Prof. Roberto Lucchetti, (Politecnico of Milano, Italy) Examiners Prof. Pierre Bernhard, (INRIA Sophia Antipolis, France) Prof. Petros Elia, (EURECOM, France) Prof. Matteo Sereno (University of Torino, Italy) Prof. Bruno Tuffin (INRIA Rennes Bretagne-Atlantique, France) Thesis Director Prof. Laura Cottatellucci (EURECOM, France) Thesis Co-Director Prof. Konstantin Avrachenkov (INRIA Sophia Antipolis, France) THESE pr´esent´ee pour obtenir le grade de Docteur en Sciences de l’Universit´ede Nice-Sophia Antipolis Sp´ecialit´e: Automatique, Traitement du Signal et des Images Lorenzo Maggi Jeux Markoviens, Comp´etitifs et Coop´eratifs, avec Applications aux Communications Th`ese soutenue le 9 Octobre 2012 devant le jury compos´ede : Rapporteurs Prof. Jean-Jacques Herings (Maastricht University, Pays Bas) Prof. Roberto Lucchetti, (Politecnico of Milano, Italie) Examinateurs Prof. Pierre Bernhard, (INRIA Sophia Antipolis, France) Prof. Petros Elia, (EURECOM, France) Prof. Matteo Sereno (University of Torino, Italie) Prof. Bruno Tuffin (INRIA Rennes Bretagne-Atlantique, France) Directrice de Th`ese Prof. Laura Cottatellucci (EURECOM, France) Co-Directeur de Th`ese Prof. Konstantin Avrachenkov (INRIA Sophia Antipolis, France) Abstract In this dissertation we deal with the design of strategies for agents interacting in a dynamic environment. The mathematical tool of Game Theory (GT) on Markov Decision Processes (MDPs) is adopted.
    [Show full text]
  • Factored Markov Decision Process Models for Stochastic Unit Commitment
    MITSUBISHI ELECTRIC RESEARCH LABORATORIES http://www.merl.com Factored Markov Decision Process Models for Stochastic Unit Commitment Daniel Nikovski, Weihong Zhang TR2010-083 October 2010 Abstract In this paper, we consider stochastic unit commitment problems where power demand and the output of some generators are random variables. We represent stochastic unit commitment prob- lems in the form of factored Markov decision process models, and propose an approximate algo- rithm to solve such models. By incorporating a risk component in the cost function, the algorithm can achieve a balance between the operational costs and blackout risks. The proposed algorithm outperformed existing non-stochastic approaches on several problem instances, resulting in both lower risks and operational costs. 2010 IEEE Conference on Innovative Technologies This work may not be copied or reproduced in whole or in part for any commercial purpose. Permission to copy in whole or in part without payment of fee is granted for nonprofit educational and research purposes provided that all such whole or partial copies include the following: a notice that such copying is by permission of Mitsubishi Electric Research Laboratories, Inc.; an acknowledgment of the authors and individual contributions to the work; and all applicable portions of the copyright notice. Copying, reproduction, or republishing for any other purpose shall require a license with payment of fee to Mitsubishi Electric Research Laboratories, Inc. All rights reserved. Copyright c Mitsubishi Electric Research Laboratories, Inc., 2010 201 Broadway, Cambridge, Massachusetts 02139 MERLCoverPageSide2 Factored Markov Decision Process Models for Stochastic Unit Commitment Daniel Nikovski and Weihong Zhang, {nikovski,wzhang}@merl.com, phone 617-621-7510 Mitsubishi Electric Research Laboratories, 201 Broadway, Cambridge, MA 02139, USA, fax 617-621-7550 Abstract—In this paper, we consider stochastic unit commit- generate in order to meet demand.
    [Show full text]
  • Capturing Financial Markets to Apply Deep Reinforcement Learning
    Capturing Financial markets to apply Deep Reinforcement Learning Souradeep Chakraborty* BITS Pilani University, K.K. Birla Goa Campus [email protected] *while working under Dr. Subhamoy Maitra, at the Applied Statistics Unit, ISI Calcutta JEL: C02, C32, C63, C45 Abstract In this paper we explore the usage of deep reinforcement learning algorithms to automatically generate consistently profitable, robust, uncorrelated trading signals in any general financial market. In order to do this, we present a novel Markov decision process (MDP) model to capture the financial trading markets. We review and propose various modifications to existing approaches and explore different techniques like the usage of technical indicators, to succinctly capture the market dynamics to model the markets. We then go on to use deep reinforcement learning to enable the agent (the algorithm) to learn how to take profitable trades in any market on its own, while suggesting various methodology changes and leveraging the unique representation of the FMDP (financial MDP) to tackle the primary challenges faced in similar works. Through our experimentation results, we go on to show that our model could be easily extended to two very different financial markets and generates a positively robust performance in all conducted experiments. Keywords: deep reinforcement learning, online learning, computational finance, Markov decision process, modeling financial markets, algorithmic trading Introduction 1.1 Motivation Since the early 1990s, efforts have been made to automatically generate trades using data and computation which consistently beat a benchmark and generate continuous positive returns with minimal risk. The goal started to shift from “learning how to win in financial markets” to “create an algorithm that can learn on its own, how to win in financial markets”.
    [Show full text]
  • Markov Decision Processes and Dynamic Programming 1 The
    Master MVA: Reinforcement Learning Lecture: 2 Markov Decision Processes and Dynamic Programming Lecturer: Alessandro Lazaric http://researchers.lille.inria.fr/∼lazaric/Webpage/Teaching.html Objectives of the lecture 1. Understand: Markov decision processes, Bellman equations and Bellman operators. 2. Use: dynamic programming algorithms. 1 The Markov Decision Process 1.1 Definitions Definition 1 (Markov chain). Let the state space X be a bounded compact subset of the Euclidean space, the discrete-time dynamic system (xt)t2N 2 X is a Markov chain if P(xt+1 = x j xt; xt−1; : : : ; x0) = P(xt+1 = x j xt); (1) so that all the information needed to predict (in probability) the future is contained in the current state (Markov property). Given an initial state x0 2 X, a Markov chain is defined by the transition proba- bility p such that p(yjx) = P(xt+1 = yjxt = x): (2) Remark: notice that in some cases we can turn a higher-order Markov process into a Markov process by including the past as a new state variable. For instance, in the control of an inverted pendulum, the state that can be observed is only the angular position θt. In this case the system is non-Markov since the next position depends on the previous position but also on the angular speed, which is defined as dθt = θt − θt−1 (as a first approximation). Thus, if we define the state space as xt = (θt; dθt) we obtain a Markov chain. Definition 2 (Markov decision process [Bellman, 1957, Howard, 1960, Fleming and Rishel, 1975, Puterman, 1994, Bertsekas and Tsitsiklis, 1996]).
    [Show full text]
  • An Introduction to Temporal Difference Learning
    An Introduction to Temporal Difference Learning Florian Kunz Seminar on Autonomous Learning Systems Department of Computer Science TU Darmstadt [email protected] Abstract Temporal Difference learning is one of the most used approaches for policy evaluation. It is a central part of solving reinforcement learning tasks. For deriving optimal control, policies have to be evaluated. This task requires value function approximation. At this point TD methods find application. The use of eligibility traces for backpropagation of updates as well as the bootstrapping of the prediction for every update state make these methods so powerful. This paper gives an introduction to reinforcement learning for a novice to understand the TD(λ) algorithm as presented by R. Sutton. The TD methods are the center of this paper, and hence, each step for deriving the update function is treated. Starting with value function approximation followed by the Bellman Equation and ending with eligibility traces. The further enhancement of TD in form of linear-squared temporal difference methods is treated. Both methods are compared in respect to their computational cost and learning rate. In the end an outlook towards application in control is given. 1 Introduction This article addresses the machine learning approach of temporal difference. TD can be classified as an incremental method specialized in predicting future values for a partially unknown system. Temporal difference learning is declared to be a reinforcement learning method. This area of ma- chine learning covers the problem of finding a perfect solution in an unknown environment. To be able to do so, a representation is needed to define which action yields the highest rewards.
    [Show full text]
  • Markov Decision Processes
    An Introduction to Markov Decision Processes Bob Givan Ron Parr Purdue University Duke University MDP Tutorial - 1 Outline Markov Decision Processes defined (Bob) • Objective functions • Policies Finding Optimal Solutions (Ron) • Dynamic programming • Linear programming Refinements to the basic model (Bob) • Partial observability • Factored representations MDP Tutorial - 2 Stochastic Automata with Utilities A Markov Decision Process (MDP) model contains: • A set of possible world states S • A set of possible actions A • A real valued reward function R(s,a) • A description T of each action’s effects in each state. We assume the Markov Property: the effects of an action taken in a state depend only on that state and not on the prior history. MDP Tutorial - 3 Stochastic Automata with Utilities A Markov Decision Process (MDP) model contains: • A set of possible world states S • A set of possible actions A • A real valued reward function R(s,a) • A description T of each action’s effects in each state. We assume the Markov Property: the effects of an action taken in a state depend only on that state and not on the prior history. MDP Tutorial - 4 Representing Actions Deterministic Actions: • T :SA× → S For each state and action we specify a new state. 0.6 0.4 Stochastic Actions: • T :SA× → Prob()S For each state and action we specify a probability distribution over next states. Represents the distribution P(s’ | s, a). MDP Tutorial - 5 Representing Actions Deterministic Actions: • T :SA× → S For each state and action we specify a new state. 1.0 Stochastic Actions: • T :SA× → Prob()S For each state and action we specify a probability distribution over next states.
    [Show full text]
  • Reinforcement Learning and Markov Decision Processes (Mdps)
    Reinforcement learning and Markov Decision Processes (MDPs) 15-859(B) Avrim Blum RL and MDPs General scenario: We are an agent in some state. Have obser- vations, perform actions, get rewards. (See lights, pull levers, get cookies) Markov Decision Process: like DFA problem except we’ll assume: • Transitions are probabilistic. (harder than DFA) • Observation = state. (easier than DFA) Assumption is that reward and next state are (probabilistic) func- tions of current observation and action only. • Goal is to learn a good strategy for collecting reward, rather than necessarily to make a model. (different from DFA) '$ a , 0.6: s 1 2 '$s &% 1 XX XX XXX XXX &% Xz '$ a1, 0.4 s3 &% Typical example Imagine a grid world with walls. • Actions left, right, up, down. • If not currently hugging a wall, then with some probability the action takes you to an incorrect neighbor. • Entering top-right corner gives reward of 100 and then takes you to a random state. Nice features of MDPs • Like DFA, an appealing model of agent trying to figure out actions to take in the world. Incorporates notion of actions being good or bad for reasons that will only become apparent later. • Probabilities allow to handle situations like: wanted robot to go forward 1 foot but went forward 1.5 feet instead and turned slightly to right. Or someone randomly picked it up and moved it somewhere else. • Natural learning algorithms that propagate reward backwards through state space. If get reward 100 in state s, then perhaps give value 90 to state s′ you were in right before s.
    [Show full text]