CS 188: Artificial Intelligence Fall 2008

Similar documents
Lecture 10: Reinforcement Learning

Reinforcement Learning by Comparing Immediate Reward

Exploration. CS : Deep Reinforcement Learning Sergey Levine

TD(λ) and Q-Learning Based Ludo Players

Artificial Neural Networks written examination

ISFA2008U_120 A SCHEDULING REINFORCEMENT LEARNING ALGORITHM

Lecture 1: Machine Learning Basics

Python Machine Learning

Learning Optimal Dialogue Strategies: A Case Study of a Spoken Dialogue Agent for

Axiom 2013 Team Description Paper

Improving Action Selection in MDP s via Knowledge Transfer

High-level Reinforcement Learning in Strategy Games

Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition

AMULTIAGENT system [1] can be defined as a group of

System Implementation for SemEval-2017 Task 4 Subtask A Based on Interpolated Deep Neural Networks

Generative models and adversarial training

Speeding Up Reinforcement Learning with Behavior Transfer

Regret-based Reward Elicitation for Markov Decision Processes

Go fishing! Responsibility judgments when cooperation breaks down

Challenges in Deep Reinforcement Learning. Sergey Levine UC Berkeley

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur

Introduction to Simulation

(Sub)Gradient Descent

Machine Learning and Data Mining. Ensembles of Learners. Prof. Alexander Ihler

Learning Prospective Robot Behavior

The Good Judgment Project: A large scale test of different methods of combining expert predictions

ENME 605 Advanced Control Systems, Fall 2015 Department of Mechanical Engineering

Laboratorio di Intelligenza Artificiale e Robotica

An Introduction to Simio for Beginners

An OO Framework for building Intelligence and Learning properties in Software Agents

A Case Study: News Classification Based on Term Frequency

Genevieve L. Hartman, Ph.D.

Shockwheat. Statistics 1, Activity 1

Lecture 6: Applications

Georgetown University at TREC 2017 Dynamic Domain Track

Discriminative Learning of Beam-Search Heuristics for Planning

Major Milestones, Team Activities, and Individual Deliverables

Evolutive Neural Net Fuzzy Filtering: Basic Description

ReinForest: Multi-Domain Dialogue Management Using Hierarchical Policies and Knowledge Ontology

Continual Curiosity-Driven Skill Acquisition from High-Dimensional Video Inputs for Humanoid Robots

Probabilistic Latent Semantic Analysis

Learning Structural Correspondences Across Different Linguistic Domains with Synchronous Neural Language Models

Testing A Moving Target: How Do We Test Machine Learning Systems? Peter Varhol Technology Strategy Research, USA

Software Maintenance

Math 1313 Section 2.1 Example 2: Given the following Linear Program, Determine the vertices of the feasible set. Subject to:

Lahore University of Management Sciences. FINN 321 Econometrics Fall Semester 2017

OPTIMIZATINON OF TRAINING SETS FOR HEBBIAN-LEARNING- BASED CLASSIFIERS

Softprop: Softmax Neural Network Backpropagation Learning

How People Learn Physics

arxiv: v1 [cs.lg] 15 Jun 2015

12- A whirlwind tour of statistics

Designing a Rubric to Assess the Modelling Phase of Student Design Projects in Upper Year Engineering Courses

The Strong Minimalist Thesis and Bounded Optimality

The 9 th International Scientific Conference elearning and software for Education Bucharest, April 25-26, / X

Probability estimates in a scenario tree

Improving Conceptual Understanding of Physics with Technology

Laboratorio di Intelligenza Artificiale e Robotica

Entrepreneurial Discovery and the Demmert/Klein Experiment: Additional Evidence from Germany

A Neural Network GUI Tested on Text-To-Phoneme Mapping

Learning From the Past with Experiment Databases

Hentai High School A Game Guide

Outline for Session III

Assignment 1: Predicting Amazon Review Ratings

Learning and Transferring Relational Instance-Based Policies

Multi-genre Writing Assignment

CS Machine Learning

Knowledge Transfer in Deep Convolutional Neural Nets

The Evolution of Random Phenomena

Chapter 4 - Fractions

Purdue Data Summit Communication of Big Data Analytics. New SAT Predictive Validity Case Study

Diagnostic Test. Middle School Mathematics

Learning Methods for Fuzzy Systems

File # for photo

Seminar - Organic Computing

IMGD Technical Game Development I: Iterative Development Techniques. by Robert W. Lindeman

SARDNET: A Self-Organizing Feature Map for Sequences

Active Learning. Yingyu Liang Computer Sciences 760 Fall

Learning goal-oriented strategies in problem solving

Session 2B From understanding perspectives to informing public policy the potential and challenges for Q findings to inform survey design

C O U R S E. Tools for Group Thinking

FF+FPG: Guiding a Policy-Gradient Planner

Intelligent Agents. Chapter 2. Chapter 2 1

Using focal point learning to improve human machine tacit coordination

A Comparison of Annealing Techniques for Academic Course Scheduling

Rule Learning With Negation: Issues Regarding Effectiveness

Australian Journal of Basic and Applied Sciences

Managerial Decision Making

Cooperative Game Theoretic Models for Decision-Making in Contexts of Library Cooperation 1

Lecture 2: Quantifiers and Approximation

A Game-based Assessment of Children s Choices to Seek Feedback and to Revise

Cognitive Thinking Style Sample Report

UDL AND LANGUAGE ARTS LESSON OVERVIEW

Algebra 1, Quarter 3, Unit 3.1. Line of Best Fit. Overview

IAT 888: Metacreation Machines endowed with creative behavior. Philippe Pasquier Office 565 (floor 14)

Understanding and Interpreting the NRC s Data-Based Assessment of Research-Doctorate Programs in the United States (2010)

Teacher Quality and Value-added Measurement

ACTL5103 Stochastic Modelling For Actuaries. Course Outline Semester 2, 2014

Temper Tamer s Handbook

Evidence for Reliability, Validity and Learning Effectiveness

How long did... Who did... Where was... When did... How did... Which did...

Transcription:

CS 188: Artificial Intelligence Fall 2008 Lecture 11: Reinforcement Learning 10/2/2008 Dan Klein UC Berkeley Many slides over the course adapted from either Stuart Russell or Andrew Moore 1 1

Reinforcement Learning Reinforcement learning: Still have an MDP: A set of states s S 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) [DEMO] 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 3 2

Example: Animal Learning RL studied experimentally for more than 60 years in psychology Rewards: food, pain, hunger, drugs, etc. Mechanisms and sophistication debated Example: foraging Bees learn near-optimal foraging plan in field of artificial flowers with controlled nectar supplies Bees have a direct neural connection from nectar intake measurement to motor planning area 4 3

Example: Backgammon Reward only for win / loss in terminal states, zero otherwise TD-Gammon learns a function approximation to V(s) using a neural network Combined with depth 3 search, one of the top 3 players in the world You could imagine training Pacman this way but it s tricky! 5 4

Passive Learning Simplified task You don t know the transitions T(s,a,s ) You don t know the rewards R(s,a,s ) You are given a policy π(s) Goal: learn the state values (and maybe the model) I.e., policy evaluation In this case: Learner along for the ride No choice about what actions to take Just execute the policy and learn from experience We ll get to the active case soon This is NOT offline planning! 6 5

Example: Direct Estimation Episodes: [DEMO Optimal Policy] y +100 (1,1) up -1 (1,2) up -1 (1,2) up -1 (1,3) right -1 (2,3) right -1 (3,3) right -1 (3,2) up -1 (3,3) right -1 (4,3) exit +100 (done) (1,1) up -1 (1,2) up -1 (1,3) right -1 (2,3) right -1 (3,3) right -1 (3,2) up -1 (4,2) exit -100 (done) -100 γ = 1, R = -1 V(1,1) ~ (92 + -106) / 2 = -7 V(3,3) ~ (99 + 97 + -102) / 3 = 31.3 x 7 6

Model-Based Learning Idea: Learn the model empirically (rather than values) Solve the MDP as if the learned model were correct Empirical model learning Simplest case: Count outcomes for each s,a Normalize to give estimate of T(s,a,s ) Discover R(s,a,s ) the first time we experience (s,a,s ) More complex learners are possible (e.g. if we know that all squares have related action outcomes, e.g. stationary noise ) 8 7

Example: Model-Based Learning Episodes: y +100 (1,1) up -1 (1,2) up -1 (1,1) up -1 (1,2) up -1-100 (1,2) up -1 (1,3) right -1 (1,3) right -1 (2,3) right -1 (3,3) right -1 (2,3) right -1 (3,3) right -1 (3,2) up -1 γ = 1 x (3,2) up -1 (3,3) right -1 (4,2) exit -100 (done) T(<3,3>, right, <4,3>) = 1 / 3 (4,3) exit +100 (done) T(<2,3>, right, <3,3>) = 2 / 2 9 8

Recap: Model-Based Policy Evaluation Simplified Bellman updates to calculate V for a fixed policy: New V is expected one-step-lookahead using current V Unfortunately, need T and R s,π(s),s s π(s) s, π(s) s 10 9

Sample Avg to Replace Expectation? Who needs T and R? Approximate the expectation with samples (drawn from T!) s π(s) s, π(s) s 1 s 2 s 3 11 10

Model-Free Learning Big idea: why bother learning T? Update V each time we experience a transition Frequent outcomes will contribute more updates (over time) Temporal difference learning (TD) Policy still fixed! Move values toward value of whatever successor occurs: running average! s π(s) s, π(s) s 12 11

Example: TD Policy Evaluation (1,1) up -1 (1,2) up -1 (1,2) up -1 (1,3) right -1 (2,3) right -1 (3,3) right -1 (3,2) up -1 (3,3) right -1 (4,3) exit +100 (done) (1,1) up -1 (1,2) up -1 (1,3) right -1 (2,3) right -1 (3,3) right -1 (3,2) up -1 (4,2) exit -100 (done) Take γ = 1, α = 0.5 13 12

Problems with TD Value Learning TD value leaning is model-free for policy evaluation However, if we want to turn our value estimates into a policy, we re sunk: s a s, a s,a,s s Idea: learn Q-values directly Makes action selection model-free too! 14 13

Active Learning Full reinforcement learning You don t know the transitions T(s,a,s ) You don t know the rewards R(s,a,s ) You can choose any actions you like Goal: learn the optimal policy (maybe values) In this case: Learner makes choices! Fundamental tradeoff: exploration vs. exploitation This is NOT offline planning! 15 14

Model-Based Learning In general, want to learn the optimal policy, not evaluate a fixed policy Idea: adaptive dynamic programming Learn an initial model of the environment: Solve for the optimal policy for this model (value or policy iteration) Refine model through experience and repeat Crucial: we have to make sure we actually learn about all of the model 16 15

Example: Greedy ADP Imagine we find the lower path to the good exit first Some states will never be visited following this policy from (1,1) We ll keep re-using this policy because following it never collects the regions of the model we need to learn the optimal policy?? 17 16

What Went Wrong? Problem with following optimal policy for current model: Never learn about better regions of the space if current policy neglects them?? Fundamental tradeoff: exploration vs. exploitation Exploration: must take actions with suboptimal estimates to discover new rewards and increase eventual utility Exploitation: once the true optimal policy is learned, exploration reduces utility Systems must explore in the beginning and exploit in the limit 18 17

Q-Value Iteration Value iteration: find successive approx optimal values Start with V 0* (s) = 0, which we know is right (why?) Given V i*, calculate the values for all states for depth i+1: But Q-values are more useful! Start with Q 0* (s,a) = 0, which we know is right (why?) Given Q i*, calculate the q-values for all q-states for depth i+1: 19 18

[DEMO Grid Q s] Q-Learning Learn Q*(s,a) values Receive a sample (s,a,s,r) Consider your old estimate: Consider your new sample estimate: Incorporate the new estimate into a running average: 20 19

Q-Learning Properties [DEMO Grid Q s] Will converge to optimal policy If you explore enough If you make the learning rate small enough But not decrease it too quickly! Basically doesn t matter how you select actions (!) Neat property: learns optimal q-values regardless of action selection noise (some caveats) S E S E 21 20

Exploration / Exploitation [DEMO RL Pacman] Several schemes for forcing exploration Simplest: random actions (ε greedy) Every time step, flip a coin With probability ε, act randomly With probability 1-ε, act according to current policy Problems with random actions? You do explore the space, but keep thrashing around once learning is done One solution: lower ε over time Another solution: exploration functions 22 21

Exploration Functions When to explore Random actions: explore a fixed amount Better idea: explore areas whose badness is not (yet) established Exploration function Takes a value estimate and a count, and returns an optimistic utility, e.g. (exact form not important) 23 22

Q-Learning [DEMO Crawler Q s] Q-learning produces tables of q-values: 24 23

Q-Learning In realistic situations, we cannot possibly learn about every single state! Too many states to visit them all in training Too many states to hold the q-tables in memory Instead, we want to generalize: Learn about some small number of training states from experience Generalize that experience to new, similar states This is a fundamental idea in machine learning, and we ll see it over and over again 25 24

Example: Pacman Let s say we discover through experience that this state is bad: In naïve q learning, we know nothing about this state or its q states: Or even this one! 26 25

Feature-Based Representations Solution: describe a state using a vector of features Features are functions from states to real numbers (often 0/1) that capture important properties of the state Example features: Distance to closest ghost Distance to closest dot Number of ghosts 1 / (dist to dot) 2 Is Pacman in a tunnel? (0/1) etc. Can also describe a q-state (s, a) with features (e.g. action moves closer to food) 27 26

Linear Feature Functions Using a feature representation, we can write a q function (or value function) for any state using a few weights: Advantage: our experience is summed up in a few powerful numbers Disadvantage: states may share features but be very different in value! 28 27

Function Approximation Q-learning with linear q-functions: Intuitive interpretation: Adjust weights of active features E.g. if something unexpectedly bad happens, disprefer all states with that state s features Formal justification: online least squares 29 28

Example: Q-Pacman 30 29

Linear regression 40 26 24 20 22 20 0 0 10 20 30 20 10 0 0 10 20 30 40 Given examples Predict given a new point 31 30

Linear regression 40 26 24 20 22 20 0 0 20 30 20 10 0 0 10 20 30 40 Prediction Prediction 32 31

Ordinary Least Squares (OLS) Observation Error or residual Prediction 0 0 20 33 32

Minimizing Error Value update explained: 34 33

30 25 Overfitting 20 Degree 15 polynomial 15 10 5 0-5 -10-15 0 2 4 6 8 10 12 14 16 18 20 [DEMO] 35 34

Policy Search 36 35

Policy Search Problem: often the feature-based policies that work well aren t the ones that approximate V / Q best E.g. your value functions from project 2 were probably horrible estimates of future rewards, but they still produced good decisions We ll see this distinction between modeling and prediction again later in the course Solution: learn the policy that maximizes rewards rather than the value that predicts rewards This is the idea behind policy search, such as what controlled the upside-down helicopter 37 36

Policy Search Simplest policy search: Start with an initial linear value function or q-function Nudge each feature weight up and down and see if your policy is better than before Problems: How do we tell the policy got better? Need to run many sample episodes! If there are a lot of features, this can be impractical 38 37

Policy Search* Advanced policy search: Write a stochastic (soft) policy: Turns out you can efficiently approximate the derivative of the returns with respect to the parameters w (details in the book, but you don t have to know them) Take uphill steps, recalculate derivatives, etc. 39 38

Take a Deep Breath We re done with search and planning! Next, we ll look at how to reason with probabilities Diagnosis Tracking objects Speech recognition Robot mapping lots more! Last part of course: machine learning 40 39