SlideShare une entreprise Scribd logo
1  sur  64
1 
Reinforcement Learning 
By: 
Chandra Prakash 
IIITM Gwalior
22 
Outline 
Introduction 
Element of reinforcement learning 
Reinforcement Learning Problem 
Problem solving methods for RL 
2
33 
Introduction 
Machine learning: Definition 
 Machine learning is a scientific discipline that is 
concerned with the design and development of 
algorithms that allow computers to learn based on 
data, such as from sensor data or databases. 
A major focus of machine learning research is to 
automatically learn to recognize complex patterns and 
make intelligent decisions based on data . 
3
4 
Machine learning Type: 
With respect to the feedback type to learner: 
 Supervised learning : Task Driven (Classification) 
 Unsupervised learning : Data Driven (Clustering) 
 Reinforcement learning — 
 Close to human learning. 
 Algorithm learns a policy of how to act in a given 
environment. 
 Every action has some impact in the environment, 
and the environment provides rewards that guides 
the learning algorithm.
5 
Supervised Learning Vs 
Reinforcement Learning 
Supervised Learning 
 Step: 1 
Teacher: Does picture 1 show a car or a flower? 
Learner: A flower. 
Teacher: No, it’s a car. 
Step: 2 
Teacher: Does picture 2 show a car or a flower? 
Learner: A car. 
Teacher: Yes, it’s a car. 
Step: 3 ....
6 
Supervised Learning Vs 
Reinforcement Learning (Cont...) 
Reinforcement Learning 
Step: 1 
World: You are in state 9. Choose action A or C. 
Learner: Action A. 
World: Your reward is 100. 
Step: 2 
World: You are in state 32. Choose action B or E. 
Learner: Action B. 
World: Your reward is 50. 
Step: 3 ....
77 
Introduction (Cont..) 
 Meaning of Reinforcement: Occurrence of an 
event, in the proper relation to a response, that tends to 
increase the probability that the response will occur 
again in the same situation. 
Reinforcement learning is the problem faced by an 
agent that learns behavior through trial-and-error 
interactions with a dynamic environment. 
 Reinforcement Learning is learning how to act in 
order to maximize a numerical reward. 
7
88 
Introduction (Cont..) 
 Reinforcement learning is not a type of neural 
network, nor is it an alternative to neural networks. 
Rather, it is an orthogonal approach for Learning 
Machine. 
 Reinforcement learning emphasizes learning feedback 
that evaluates the learner's performance without 
providing standards of correctness in the form 
of behavioral targets. 
Example: Bicycle learning 
8
99 
Element of reinforcement learning 
Agent 
State Reward Action 
Environment 
Policy 
 Agent: Intelligent programs 
 Environment: External condition 
 Policy: 
Defines the agent’s behavior at a given time 
A mapping from states to actions 
Lookup tables or simple function 
9
1100 
Element of reinforcement learning 
 Reward function : 
 Defines the goal in an RL problem 
 Policy is altered to achieve this goal 
 Value function: 
 Reward function indicates what is good in an immediate 
sense while a value function specifies what is good in 
the long run. 
 Value of a state is the total amount of reward an agent can expect 
to accumulate over the future, starting form that state. 
 Model of the environment : 
 Predict mimic behavior of environment, 
 Used for planning & if Know current state and action 
then predict the resultant next state and next reward. 
10
1111 
Agent- Environment Interface 
11
1122 
Steps for Reinforcement Learning 
1. The agent observes an input state 
2. An action is determined by a decision making 
function (policy) 
3. The action is performed 
4. The agent receives a scalar reward or reinforcement 
from the environment 
5. Information about the reward given for that state / 
action pair is recorded 
12
1133 
Silent Features of Reinforcement 
Learning : 
 Set of problems rather than a set of techniques 
 Without specifying how the task is to be achieved. 
 “RL as a tool” point of view: 
 RL is training by rewards and punishments. 
 Train tool for the computer learning. 
 The learning agent’s point of view: 
 RL is learning from trial and error with the world. 
 Eg. how much reward I much get if I get this. 
13
1144 
Reinforcement Learning (Cont..) 
 Reinforcement Learning uses Evaluative Feedback 
 Purely Evaluative Feedback 
 Indicates how good the action taken is. 
 Not tell if it is the best or the worst action possible. 
 Basis of methods for function optimization. 
 Purely Instructive Feedback 
 Indicates the correct action to take, independently of 
the action actually taken. 
 Eg: Supervised Learning 
 Associative and Non Associative: 
14
15 
Associative & Non Associative Tasks 
 Associative : 
 Situation Dependent 
 Mapping from situation to the actions that are best in that 
situation 
 Non Associative: 
 Situation independent 
 No need for associating different action with different 
situations. 
 Learner either tries to find a single best action when the task 
is stationary, or tries to track the best action as it changes 
over time when the task is non stationary.
1166 
Reinforcement Learning (Cont..) 
Exploration and exploitation 
Greedy action: Action chosen with greatest estimated 
value. 
Greedy action: a case of Exploitation. 
Non greedy action: a case of Exploration, as it 
enables us to improve estimate the non-greedy 
action's value. 
 N-armed bandit Problem: 
We have to choose from n different options or actions. 
We will choose the one with maximum reward. 
16
Bandits Problem 
One-Bandit 
“arms” 
Pull arms sequentially so as to maximize the total 
expected reward 
•It is non associative and evaluative
1188 
Action Selection Policies 
Greediest action - action with the highest estimated 
reward. 
 Ɛ -greedy 
 Most of the time the greediest action is chosen 
 Every once in a while with a small probability Ɛ, an 
action is selected at random. The action is selected 
uniformly, independent of the action-value estimates. 
 Ɛ -soft - The best action is selected with probability (1 
–Ɛ) and the rest of the time a random action is chosen 
uniformly. 
18
1199 
Ɛ-Greedy Action Selection Method : 
Let the a* is the greedy action at time t and Qt(a) is the 
value of action a at time. 
Greedy Action Selection: 
 Ɛ –greedy 
19 
Î 
* = argmax 
with probability 1 t a 
{ 
-Î 
random action with probability 
at= 
at = at 
a 
Qt (a)
20 
Action Selection Policies (Cont…) 
 Softmax – 
 Drawback of Ɛ -greedy & Ɛ -soft: Select random 
actions uniformly. 
 Softmax remedies this by: 
 Assigning a weight with each actions, according 
to their action-value estimate. 
 A random action is selected with regards to the 
weight associated with each action 
 The worst actions are unlikely to be chosen. 
 This is a good approach to take where the worst 
actions are very unfavorable.
21 
Softmax Action Selection( Cont…) 
 Problem with Ɛ-greedy: Neglects action values 
 Softmax idea: grade action probs. by estimated values. 
 Gibbs, or Boltzmann action selection, or exponential 
weights: 
t is the “computational temperature” 
At t  0 the Softmax action selection method become 
the same as greedy action selection.
22 
Incremental Implementation 
 Sample average: 
 Incremental computation: 
 Common update rule form: 
NewEstimate = OldEstimate + StepSize[Target – 
OldEstimate] 
 The expression [ Target - Old Estimate] is an error in the 
estimate. 
 It is reduce by taking a step toward the target. 
 In proceeding the (t+1)st reward for action a the step-size 
parameter will be 1(t+1).
Some terms in Reinforcement Learning 
 The Agent Learns a Policy: 
2233 
 Policy at step t, : a mapping from states to action 
probabilities will be: 
 Agents changes their policy with Experience. 
 Objective: get as much reward as possible over a 
long run. 
 Goals and Rewards 
 A goal should specify what we want to achieve, not 
how we want to achieve it. 
23
24 
Some terms in RL (Cont…) 
 Returns 
 Rewards in long term 
 Episodes: Subsequence of interaction between agent-environment 
e.g., plays of a game, trips through a 
maze. 
 Discount return 
 The geometrically discounted model of return: 
 Used to: 
 To determine the present value of the future 
rewards 
 Give more weight to earlier rewards
2255 
The Markov Property 
 Environment's response at (t+1) depends only on State 
(s) & Action (a) at t, 
Markov Decision Processes 
 Finite MDP 
 Transition Probabilities: 
 Expected Reward 
Transition Graph: Summarize dynamics of finite MDP. 
25
Value function 
 States-action pairs function that estimate how good it is 
for the agent to be in a given state 
 Type of value function 
2266 
 State-Value function 
 Action-Value function 
26
2277 
Backup Diagrams 
 Basis of the update or backup operations 
 backup diagrams to provide graphical summaries of 
the algorithms. (State value & Action value function) 
Bellman Equation for a Policy Π 
27
28 
Model-free and Model-based Learning 
 Model-based learning 
 Learn from the model instead of interacting with the world 
 Can visit arbitrary parts of the model 
 Also called indirect methods 
 E.g. Dynamic Programming 
 Model-free learning 
 Sample Reward and transition function by interacting with 
the world 
 Also called direct methods
29 
Problem Solving Methods for RL 
1) Dynamic programming 
2) Monte Carlo methods 
3) Temporal-difference learning.
3300 
1.Dynamic programming 
 Classical solution method 
 Require a complete and accurate model of the 
environment. 
 Popular method for Dynamic programming 
 Policy Evaluation : Iterative computation of the value 
function for a given policy (prediction Problem) 
 Policy Improvement: Computation of improved policy 
for a given value function. 
30 
( ) { ( )} t t 1 t V s E r gV s p ¬ + +
Dynamic Programming 
T 
st 
rt+1 
T 
T 
st+1 
T 
T T 
T 
T T 
T 
31 
( ) { ( )} t t 1 t V s E r gV s p ¬ + +
32
33
34 
 NewEstimate = OldEstimate + 
StepSize[Target – 
OldEstimate] 
NewEstimate = OldEstimate + StepSize[Target – OldEstimate]
Computation of improved policy for a given value function 
35
36 
 Policy Evaluation and Policy improvement 
together leads 
 Policy Iteration 
 Value Iteration:
3377 
Policy Iteration : Alternates policy evaluation and policy 
improvement steps 
37
 Combines evaluation and improvement in one update 
38
3399 
Value Iteration: 
Combines evaluation and improvement in one update
40 
Generalized Policy Iteration (GPI) 
Consist of two iteration process, 
 Policy Evaluation :Making the value function 
consistent with the current policy 
 Policy Improvement: Making the policy greedy 
with respect to the current value function
4411 
2. Monte Carlo Methods 
 Features of Monte Carlo Methods 
 No need of Complete knowledge of environment 
 Based on averaging sample returns observed after visit 
to that state. 
 Experience is divided into Episodes 
 Only after completing an episode, value estimates and 
policies are changed. 
 Don't require a model 
 Not suited for step-by-step incremental computation 
41
4422 
MC and DP Methods 
 Compute same value function 
 Same step as in DP 
 Policy evaluation 
 Computation of VΠ and QΠ for a fixed arbitrary 
policy (Π). 
 Policy Improvement 
 Generalized Policy Iteration 
42
4433 
To find value of a State 
 Estimate by experience, average the returns observed 
after visit to that state. 
 More the return, more is the average converge to 
expected value 
43
First-visit Monte Carlo Policy evaluation 
4444 
44
4455
In MCES, all returns for each state-action pair are accumulated 
and averaged, irrespective of what Policy was in force when 
they were observed 
4466 
46
4477
4488 
Monte Carlo Method (Cont…) 
 All actions should be selected infinitely for 
optimization 
 MC exploring starts can not converge to any 
suboptimal policy. 
 Agents have 2 approaches 
 On-policy 
 Off-policy 
48
49
5500 
On-policy MC algorithm 
50
51 
Off Policy MC algorithm
Monte Carlo and Dynamic Programming 
5522 
 MC has several advantage over DP: 
 Can learn from interaction with environment 
 No need of full models 
 No need to learn about ALL states 
 No bootstrapping 
52
5533 
3. Temporal Difference (TD) methods 
 Learn from experience, like MC 
 Can learn directly from interaction with environment 
 No need for full models 
 Estimate values based on estimated values of next states, 
like DP 
 Bootstrapping (like DP) 
 Issue to watch for: maintaining sufficient exploration 
53
for a given policy p, compute the state-value function 
target: the actual return after time t 
5544 
TD Prediction 
Policy Evaluation (the prediction problem): 
Simple every - visit Monte Carlomethod : 
V(s ) V(s )+α[R V(s )] t t t t ¬ - 
V p 
( ) : 
The simplest TD method, TD 0 
V(s ) V(s )+α[r + V(s ) V(s )] 
¬ g 
- t t t+ 1 t+ 1 
t target: an estimate of the return 
54
Simple Monte Carlo 
T T T 
T 
T T 
T st 
T T 
T T T 
55
Simplest TD Method 
st+1 
rt+1 
st 
T T T T T 
T T 
T T T T T T 
56 
V(st )¬V(st) +a rt+1 +g V(st+1 ) - V(st [ )]
Dynamic Programming 
T 
st 
rt+1 
T 
T 
st+1 
T 
T T 
T 
T T 
T 
57 
( ) { ( )} t t 1 t V s E r gV s p ¬ + +
5588 
TD methods bootstrap and sample 
 Bootstrapping: update involves an estimate 
 MC does not bootstrap 
 DP bootstraps 
 TD bootstraps 
 Sampling: update does not involve an expected 
value 
 MC samples 
 DP does not sample 
 TD samples 
58
After every transition from a nonterminal state , do this ( ) ( ) [ ( ) ( )] 
If is terminal, then 0. 
1 1 
5599 
Learning An Action-Value Function 
Estimate Qp for the current behavior policy p . 
59 
Q s ,a ¬Q s ,a +α r + gQ s ,a Q s ,a 
t t t t t+ 1 t+ 1 
t+1 t t 
s Q(s ,a )= 
s 
t+ t+ t+1 
t 
-
Q-Learning: Off-Policy TD Control 
60 
One - step Q- learning : 
Q st , at ( )¬Q st , at ( )+a rt +1 +g max 
[ Q(s, )- +aQ ( s, a)] 
t1t t a
6611 
Sarsa: On-Policy TD Control 
S A R S A: State Action Reward State Action 
61 
Turn this into a control method by always updating the policy 
to be greedy with respect to the current estimate:
6622 
Advantages of TD Learning 
 TD methods do not require a model of the 
environment, only experience 
 TD, but not MC, methods can be fully incremental 
 You can learn before knowing the final outcome 
 Less memory 
 Less peak computation 
 You can learn without the final outcome 
 From incomplete sequences 
 Both MC and TD converge 
62
63 
References: RL 
 Univ. of Alberta 
 http://www.cs.ualberta.ca/~sutton/book/ebook/node 
1.html 
 Sutton and barto,”Reinforcement Learning an 
introduction.” 
 Univ. of South Wales 
 http://www.cse.unsw.edu.au/~cs9417ml/RL1/tdlear 
ning.html
6644 
Thank You 
64

Contenu connexe

Tendances

Artificial intelligence agents and environment
Artificial intelligence agents and environmentArtificial intelligence agents and environment
Artificial intelligence agents and environmentMinakshi Atre
 
Reinforcement learning, Q-Learning
Reinforcement learning, Q-LearningReinforcement learning, Q-Learning
Reinforcement learning, Q-LearningKuppusamy P
 
Artificial Intelligence Searching Techniques
Artificial Intelligence Searching TechniquesArtificial Intelligence Searching Techniques
Artificial Intelligence Searching TechniquesDr. C.V. Suresh Babu
 
An introduction to Machine Learning
An introduction to Machine LearningAn introduction to Machine Learning
An introduction to Machine Learningbutest
 
Markov decision process
Markov decision processMarkov decision process
Markov decision processHamed Abdi
 
Transfer learning-presentation
Transfer learning-presentationTransfer learning-presentation
Transfer learning-presentationBushra Jbawi
 
Introduction to Recurrent Neural Network
Introduction to Recurrent Neural NetworkIntroduction to Recurrent Neural Network
Introduction to Recurrent Neural NetworkKnoldus Inc.
 
Deep Learning Explained
Deep Learning ExplainedDeep Learning Explained
Deep Learning ExplainedMelanie Swan
 
Problem solving agents
Problem solving agentsProblem solving agents
Problem solving agentsMegha Sharma
 
Stuart russell and peter norvig artificial intelligence - a modern approach...
Stuart russell and peter norvig   artificial intelligence - a modern approach...Stuart russell and peter norvig   artificial intelligence - a modern approach...
Stuart russell and peter norvig artificial intelligence - a modern approach...Lê Anh Đạt
 
Intelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCE
Intelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCEIntelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCE
Intelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCEKhushboo Pal
 
Machine Learning
Machine LearningMachine Learning
Machine LearningShrey Malik
 
An introduction to deep reinforcement learning
An introduction to deep reinforcement learningAn introduction to deep reinforcement learning
An introduction to deep reinforcement learningBig Data Colombia
 

Tendances (20)

AI: Learning in AI
AI: Learning in AI AI: Learning in AI
AI: Learning in AI
 
Reinforcement Learning
Reinforcement LearningReinforcement Learning
Reinforcement Learning
 
Artificial intelligence agents and environment
Artificial intelligence agents and environmentArtificial intelligence agents and environment
Artificial intelligence agents and environment
 
Deep learning
Deep learningDeep learning
Deep learning
 
Reinforcement learning, Q-Learning
Reinforcement learning, Q-LearningReinforcement learning, Q-Learning
Reinforcement learning, Q-Learning
 
Artificial Intelligence Searching Techniques
Artificial Intelligence Searching TechniquesArtificial Intelligence Searching Techniques
Artificial Intelligence Searching Techniques
 
An introduction to Machine Learning
An introduction to Machine LearningAn introduction to Machine Learning
An introduction to Machine Learning
 
Markov decision process
Markov decision processMarkov decision process
Markov decision process
 
Transfer learning-presentation
Transfer learning-presentationTransfer learning-presentation
Transfer learning-presentation
 
Introduction to Recurrent Neural Network
Introduction to Recurrent Neural NetworkIntroduction to Recurrent Neural Network
Introduction to Recurrent Neural Network
 
Deep Learning Explained
Deep Learning ExplainedDeep Learning Explained
Deep Learning Explained
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
 
Problem solving agents
Problem solving agentsProblem solving agents
Problem solving agents
 
Machine learning
Machine learning Machine learning
Machine learning
 
Stuart russell and peter norvig artificial intelligence - a modern approach...
Stuart russell and peter norvig   artificial intelligence - a modern approach...Stuart russell and peter norvig   artificial intelligence - a modern approach...
Stuart russell and peter norvig artificial intelligence - a modern approach...
 
Intelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCE
Intelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCEIntelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCE
Intelligent Agent PPT ON SLIDESHARE IN ARTIFICIAL INTELLIGENCE
 
Machine Learning
Machine LearningMachine Learning
Machine Learning
 
An introduction to deep reinforcement learning
An introduction to deep reinforcement learningAn introduction to deep reinforcement learning
An introduction to deep reinforcement learning
 
Lstm
LstmLstm
Lstm
 
Machine learning
Machine learningMachine learning
Machine learning
 

En vedette

Lecture 9 10 .mobile ad-hoc routing protocols
Lecture 9 10 .mobile ad-hoc routing protocolsLecture 9 10 .mobile ad-hoc routing protocols
Lecture 9 10 .mobile ad-hoc routing protocolsChandra Meena
 
Lecture 11 14. Adhoc routing protocols cont..
Lecture 11 14. Adhoc  routing protocols cont..Lecture 11 14. Adhoc  routing protocols cont..
Lecture 11 14. Adhoc routing protocols cont..Chandra Meena
 
Lecture 2 evolution of mobile cellular
Lecture 2  evolution of mobile cellular Lecture 2  evolution of mobile cellular
Lecture 2 evolution of mobile cellular Chandra Meena
 
Lecture 7 8 ad hoc wireless media access protocols
Lecture 7 8 ad hoc wireless media access protocolsLecture 7 8 ad hoc wireless media access protocols
Lecture 7 8 ad hoc wireless media access protocolsChandra Meena
 
Lecture 1 mobile and adhoc network- introduction
Lecture 1  mobile and adhoc network- introductionLecture 1  mobile and adhoc network- introduction
Lecture 1 mobile and adhoc network- introductionChandra Meena
 
Lecture 19 22. transport protocol for ad-hoc
Lecture 19 22. transport protocol for ad-hoc Lecture 19 22. transport protocol for ad-hoc
Lecture 19 22. transport protocol for ad-hoc Chandra Meena
 
Lecture 23 27. quality of services in ad hoc wireless networks
Lecture 23 27. quality of services in ad hoc wireless networksLecture 23 27. quality of services in ad hoc wireless networks
Lecture 23 27. quality of services in ad hoc wireless networksChandra Meena
 
Lecture 5 6 .ad hoc network
Lecture 5 6 .ad hoc networkLecture 5 6 .ad hoc network
Lecture 5 6 .ad hoc networkChandra Meena
 

En vedette (9)

Lecture 9 10 .mobile ad-hoc routing protocols
Lecture 9 10 .mobile ad-hoc routing protocolsLecture 9 10 .mobile ad-hoc routing protocols
Lecture 9 10 .mobile ad-hoc routing protocols
 
Lecture 11 14. Adhoc routing protocols cont..
Lecture 11 14. Adhoc  routing protocols cont..Lecture 11 14. Adhoc  routing protocols cont..
Lecture 11 14. Adhoc routing protocols cont..
 
Lecture 2 evolution of mobile cellular
Lecture 2  evolution of mobile cellular Lecture 2  evolution of mobile cellular
Lecture 2 evolution of mobile cellular
 
Lecture 7 8 ad hoc wireless media access protocols
Lecture 7 8 ad hoc wireless media access protocolsLecture 7 8 ad hoc wireless media access protocols
Lecture 7 8 ad hoc wireless media access protocols
 
Lecture 3 4. prnet
Lecture 3 4. prnetLecture 3 4. prnet
Lecture 3 4. prnet
 
Lecture 1 mobile and adhoc network- introduction
Lecture 1  mobile and adhoc network- introductionLecture 1  mobile and adhoc network- introduction
Lecture 1 mobile and adhoc network- introduction
 
Lecture 19 22. transport protocol for ad-hoc
Lecture 19 22. transport protocol for ad-hoc Lecture 19 22. transport protocol for ad-hoc
Lecture 19 22. transport protocol for ad-hoc
 
Lecture 23 27. quality of services in ad hoc wireless networks
Lecture 23 27. quality of services in ad hoc wireless networksLecture 23 27. quality of services in ad hoc wireless networks
Lecture 23 27. quality of services in ad hoc wireless networks
 
Lecture 5 6 .ad hoc network
Lecture 5 6 .ad hoc networkLecture 5 6 .ad hoc network
Lecture 5 6 .ad hoc network
 

Similaire à Reinforcement learning

reinforcement-learning-141009013546-conversion-gate02.pdf
reinforcement-learning-141009013546-conversion-gate02.pdfreinforcement-learning-141009013546-conversion-gate02.pdf
reinforcement-learning-141009013546-conversion-gate02.pdfVaishnavGhadge1
 
reinforcement-learning-141009013546-conversion-gate02.pptx
reinforcement-learning-141009013546-conversion-gate02.pptxreinforcement-learning-141009013546-conversion-gate02.pptx
reinforcement-learning-141009013546-conversion-gate02.pptxMohibKhan79
 
An efficient use of temporal difference technique in Computer Game Learning
An efficient use of temporal difference technique in Computer Game LearningAn efficient use of temporal difference technique in Computer Game Learning
An efficient use of temporal difference technique in Computer Game LearningPrabhu Kumar
 
Head First Reinforcement Learning
Head First Reinforcement LearningHead First Reinforcement Learning
Head First Reinforcement Learningazzeddine chenine
 
Reinforcement Learning
Reinforcement LearningReinforcement Learning
Reinforcement LearningSVijaylakshmi
 
Reinforcement learning
Reinforcement learningReinforcement learning
Reinforcement learningDing Li
 
Deep reinforcement learning from scratch
Deep reinforcement learning from scratchDeep reinforcement learning from scratch
Deep reinforcement learning from scratchJie-Han Chen
 
acai01-updated.ppt
acai01-updated.pptacai01-updated.ppt
acai01-updated.pptbutest
 
REINFORCEMENT LEARNING
REINFORCEMENT LEARNINGREINFORCEMENT LEARNING
REINFORCEMENT LEARNINGpradiprahul
 
Reinforcement Learning Guide For Beginners
Reinforcement Learning Guide For BeginnersReinforcement Learning Guide For Beginners
Reinforcement Learning Guide For Beginnersgokulprasath06
 
Matineh Shaker, Artificial Intelligence Scientist, Bonsai at MLconf SF 2017
Matineh Shaker, Artificial Intelligence Scientist, Bonsai at MLconf SF 2017Matineh Shaker, Artificial Intelligence Scientist, Bonsai at MLconf SF 2017
Matineh Shaker, Artificial Intelligence Scientist, Bonsai at MLconf SF 2017MLconf
 
Reinforcement learning
Reinforcement learningReinforcement learning
Reinforcement learningElias Hasnat
 
reiniforcement learning.ppt
reiniforcement learning.pptreiniforcement learning.ppt
reiniforcement learning.pptcharusharma165
 
How to formulate reinforcement learning in illustrative ways
How to formulate reinforcement learning in illustrative waysHow to formulate reinforcement learning in illustrative ways
How to formulate reinforcement learning in illustrative waysYasutoTamura1
 
Reinforcement Learning.ppt
Reinforcement Learning.pptReinforcement Learning.ppt
Reinforcement Learning.pptPOOJASHREEC1
 
14_ReinforcementLearning.pptx
14_ReinforcementLearning.pptx14_ReinforcementLearning.pptx
14_ReinforcementLearning.pptxRithikRaj25
 

Similaire à Reinforcement learning (20)

reinforcement-learning-141009013546-conversion-gate02.pdf
reinforcement-learning-141009013546-conversion-gate02.pdfreinforcement-learning-141009013546-conversion-gate02.pdf
reinforcement-learning-141009013546-conversion-gate02.pdf
 
reinforcement-learning-141009013546-conversion-gate02.pptx
reinforcement-learning-141009013546-conversion-gate02.pptxreinforcement-learning-141009013546-conversion-gate02.pptx
reinforcement-learning-141009013546-conversion-gate02.pptx
 
An efficient use of temporal difference technique in Computer Game Learning
An efficient use of temporal difference technique in Computer Game LearningAn efficient use of temporal difference technique in Computer Game Learning
An efficient use of temporal difference technique in Computer Game Learning
 
CS3013 -MACHINE LEARNING.pptx
CS3013 -MACHINE LEARNING.pptxCS3013 -MACHINE LEARNING.pptx
CS3013 -MACHINE LEARNING.pptx
 
Head First Reinforcement Learning
Head First Reinforcement LearningHead First Reinforcement Learning
Head First Reinforcement Learning
 
RL.ppt
RL.pptRL.ppt
RL.ppt
 
Reinforcement Learning
Reinforcement LearningReinforcement Learning
Reinforcement Learning
 
Reinforcement learning
Reinforcement learningReinforcement learning
Reinforcement learning
 
Introduction to Deep Reinforcement Learning
Introduction to Deep Reinforcement LearningIntroduction to Deep Reinforcement Learning
Introduction to Deep Reinforcement Learning
 
Deep reinforcement learning from scratch
Deep reinforcement learning from scratchDeep reinforcement learning from scratch
Deep reinforcement learning from scratch
 
acai01-updated.ppt
acai01-updated.pptacai01-updated.ppt
acai01-updated.ppt
 
REINFORCEMENT LEARNING
REINFORCEMENT LEARNINGREINFORCEMENT LEARNING
REINFORCEMENT LEARNING
 
Reinforcement Learning Guide For Beginners
Reinforcement Learning Guide For BeginnersReinforcement Learning Guide For Beginners
Reinforcement Learning Guide For Beginners
 
Matineh Shaker, Artificial Intelligence Scientist, Bonsai at MLconf SF 2017
Matineh Shaker, Artificial Intelligence Scientist, Bonsai at MLconf SF 2017Matineh Shaker, Artificial Intelligence Scientist, Bonsai at MLconf SF 2017
Matineh Shaker, Artificial Intelligence Scientist, Bonsai at MLconf SF 2017
 
Reinforcement learning
Reinforcement learningReinforcement learning
Reinforcement learning
 
reiniforcement learning.ppt
reiniforcement learning.pptreiniforcement learning.ppt
reiniforcement learning.ppt
 
How to formulate reinforcement learning in illustrative ways
How to formulate reinforcement learning in illustrative waysHow to formulate reinforcement learning in illustrative ways
How to formulate reinforcement learning in illustrative ways
 
Reinforcement Learning.ppt
Reinforcement Learning.pptReinforcement Learning.ppt
Reinforcement Learning.ppt
 
14_ReinforcementLearning.pptx
14_ReinforcementLearning.pptx14_ReinforcementLearning.pptx
14_ReinforcementLearning.pptx
 
YijueRL.ppt
YijueRL.pptYijueRL.ppt
YijueRL.ppt
 

Dernier

Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleAlluxio, Inc.
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)Dr SOUNDIRARAJ N
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 

Dernier (20)

Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at Scale
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 

Reinforcement learning

  • 1. 1 Reinforcement Learning By: Chandra Prakash IIITM Gwalior
  • 2. 22 Outline Introduction Element of reinforcement learning Reinforcement Learning Problem Problem solving methods for RL 2
  • 3. 33 Introduction Machine learning: Definition  Machine learning is a scientific discipline that is concerned with the design and development of algorithms that allow computers to learn based on data, such as from sensor data or databases. A major focus of machine learning research is to automatically learn to recognize complex patterns and make intelligent decisions based on data . 3
  • 4. 4 Machine learning Type: With respect to the feedback type to learner:  Supervised learning : Task Driven (Classification)  Unsupervised learning : Data Driven (Clustering)  Reinforcement learning —  Close to human learning.  Algorithm learns a policy of how to act in a given environment.  Every action has some impact in the environment, and the environment provides rewards that guides the learning algorithm.
  • 5. 5 Supervised Learning Vs Reinforcement Learning Supervised Learning  Step: 1 Teacher: Does picture 1 show a car or a flower? Learner: A flower. Teacher: No, it’s a car. Step: 2 Teacher: Does picture 2 show a car or a flower? Learner: A car. Teacher: Yes, it’s a car. Step: 3 ....
  • 6. 6 Supervised Learning Vs Reinforcement Learning (Cont...) Reinforcement Learning Step: 1 World: You are in state 9. Choose action A or C. Learner: Action A. World: Your reward is 100. Step: 2 World: You are in state 32. Choose action B or E. Learner: Action B. World: Your reward is 50. Step: 3 ....
  • 7. 77 Introduction (Cont..)  Meaning of Reinforcement: Occurrence of an event, in the proper relation to a response, that tends to increase the probability that the response will occur again in the same situation. Reinforcement learning is the problem faced by an agent that learns behavior through trial-and-error interactions with a dynamic environment.  Reinforcement Learning is learning how to act in order to maximize a numerical reward. 7
  • 8. 88 Introduction (Cont..)  Reinforcement learning is not a type of neural network, nor is it an alternative to neural networks. Rather, it is an orthogonal approach for Learning Machine.  Reinforcement learning emphasizes learning feedback that evaluates the learner's performance without providing standards of correctness in the form of behavioral targets. Example: Bicycle learning 8
  • 9. 99 Element of reinforcement learning Agent State Reward Action Environment Policy  Agent: Intelligent programs  Environment: External condition  Policy: Defines the agent’s behavior at a given time A mapping from states to actions Lookup tables or simple function 9
  • 10. 1100 Element of reinforcement learning  Reward function :  Defines the goal in an RL problem  Policy is altered to achieve this goal  Value function:  Reward function indicates what is good in an immediate sense while a value function specifies what is good in the long run.  Value of a state is the total amount of reward an agent can expect to accumulate over the future, starting form that state.  Model of the environment :  Predict mimic behavior of environment,  Used for planning & if Know current state and action then predict the resultant next state and next reward. 10
  • 11. 1111 Agent- Environment Interface 11
  • 12. 1122 Steps for Reinforcement Learning 1. The agent observes an input state 2. An action is determined by a decision making function (policy) 3. The action is performed 4. The agent receives a scalar reward or reinforcement from the environment 5. Information about the reward given for that state / action pair is recorded 12
  • 13. 1133 Silent Features of Reinforcement Learning :  Set of problems rather than a set of techniques  Without specifying how the task is to be achieved.  “RL as a tool” point of view:  RL is training by rewards and punishments.  Train tool for the computer learning.  The learning agent’s point of view:  RL is learning from trial and error with the world.  Eg. how much reward I much get if I get this. 13
  • 14. 1144 Reinforcement Learning (Cont..)  Reinforcement Learning uses Evaluative Feedback  Purely Evaluative Feedback  Indicates how good the action taken is.  Not tell if it is the best or the worst action possible.  Basis of methods for function optimization.  Purely Instructive Feedback  Indicates the correct action to take, independently of the action actually taken.  Eg: Supervised Learning  Associative and Non Associative: 14
  • 15. 15 Associative & Non Associative Tasks  Associative :  Situation Dependent  Mapping from situation to the actions that are best in that situation  Non Associative:  Situation independent  No need for associating different action with different situations.  Learner either tries to find a single best action when the task is stationary, or tries to track the best action as it changes over time when the task is non stationary.
  • 16. 1166 Reinforcement Learning (Cont..) Exploration and exploitation Greedy action: Action chosen with greatest estimated value. Greedy action: a case of Exploitation. Non greedy action: a case of Exploration, as it enables us to improve estimate the non-greedy action's value.  N-armed bandit Problem: We have to choose from n different options or actions. We will choose the one with maximum reward. 16
  • 17. Bandits Problem One-Bandit “arms” Pull arms sequentially so as to maximize the total expected reward •It is non associative and evaluative
  • 18. 1188 Action Selection Policies Greediest action - action with the highest estimated reward.  Ɛ -greedy  Most of the time the greediest action is chosen  Every once in a while with a small probability Ɛ, an action is selected at random. The action is selected uniformly, independent of the action-value estimates.  Ɛ -soft - The best action is selected with probability (1 –Ɛ) and the rest of the time a random action is chosen uniformly. 18
  • 19. 1199 Ɛ-Greedy Action Selection Method : Let the a* is the greedy action at time t and Qt(a) is the value of action a at time. Greedy Action Selection:  Ɛ –greedy 19 Î * = argmax with probability 1 t a { -Î random action with probability at= at = at a Qt (a)
  • 20. 20 Action Selection Policies (Cont…)  Softmax –  Drawback of Ɛ -greedy & Ɛ -soft: Select random actions uniformly.  Softmax remedies this by:  Assigning a weight with each actions, according to their action-value estimate.  A random action is selected with regards to the weight associated with each action  The worst actions are unlikely to be chosen.  This is a good approach to take where the worst actions are very unfavorable.
  • 21. 21 Softmax Action Selection( Cont…)  Problem with Ɛ-greedy: Neglects action values  Softmax idea: grade action probs. by estimated values.  Gibbs, or Boltzmann action selection, or exponential weights: t is the “computational temperature” At t  0 the Softmax action selection method become the same as greedy action selection.
  • 22. 22 Incremental Implementation  Sample average:  Incremental computation:  Common update rule form: NewEstimate = OldEstimate + StepSize[Target – OldEstimate]  The expression [ Target - Old Estimate] is an error in the estimate.  It is reduce by taking a step toward the target.  In proceeding the (t+1)st reward for action a the step-size parameter will be 1(t+1).
  • 23. Some terms in Reinforcement Learning  The Agent Learns a Policy: 2233  Policy at step t, : a mapping from states to action probabilities will be:  Agents changes their policy with Experience.  Objective: get as much reward as possible over a long run.  Goals and Rewards  A goal should specify what we want to achieve, not how we want to achieve it. 23
  • 24. 24 Some terms in RL (Cont…)  Returns  Rewards in long term  Episodes: Subsequence of interaction between agent-environment e.g., plays of a game, trips through a maze.  Discount return  The geometrically discounted model of return:  Used to:  To determine the present value of the future rewards  Give more weight to earlier rewards
  • 25. 2255 The Markov Property  Environment's response at (t+1) depends only on State (s) & Action (a) at t, Markov Decision Processes  Finite MDP  Transition Probabilities:  Expected Reward Transition Graph: Summarize dynamics of finite MDP. 25
  • 26. Value function  States-action pairs function that estimate how good it is for the agent to be in a given state  Type of value function 2266  State-Value function  Action-Value function 26
  • 27. 2277 Backup Diagrams  Basis of the update or backup operations  backup diagrams to provide graphical summaries of the algorithms. (State value & Action value function) Bellman Equation for a Policy Π 27
  • 28. 28 Model-free and Model-based Learning  Model-based learning  Learn from the model instead of interacting with the world  Can visit arbitrary parts of the model  Also called indirect methods  E.g. Dynamic Programming  Model-free learning  Sample Reward and transition function by interacting with the world  Also called direct methods
  • 29. 29 Problem Solving Methods for RL 1) Dynamic programming 2) Monte Carlo methods 3) Temporal-difference learning.
  • 30. 3300 1.Dynamic programming  Classical solution method  Require a complete and accurate model of the environment.  Popular method for Dynamic programming  Policy Evaluation : Iterative computation of the value function for a given policy (prediction Problem)  Policy Improvement: Computation of improved policy for a given value function. 30 ( ) { ( )} t t 1 t V s E r gV s p ¬ + +
  • 31. Dynamic Programming T st rt+1 T T st+1 T T T T T T T 31 ( ) { ( )} t t 1 t V s E r gV s p ¬ + +
  • 32. 32
  • 33. 33
  • 34. 34  NewEstimate = OldEstimate + StepSize[Target – OldEstimate] NewEstimate = OldEstimate + StepSize[Target – OldEstimate]
  • 35. Computation of improved policy for a given value function 35
  • 36. 36  Policy Evaluation and Policy improvement together leads  Policy Iteration  Value Iteration:
  • 37. 3377 Policy Iteration : Alternates policy evaluation and policy improvement steps 37
  • 38.  Combines evaluation and improvement in one update 38
  • 39. 3399 Value Iteration: Combines evaluation and improvement in one update
  • 40. 40 Generalized Policy Iteration (GPI) Consist of two iteration process,  Policy Evaluation :Making the value function consistent with the current policy  Policy Improvement: Making the policy greedy with respect to the current value function
  • 41. 4411 2. Monte Carlo Methods  Features of Monte Carlo Methods  No need of Complete knowledge of environment  Based on averaging sample returns observed after visit to that state.  Experience is divided into Episodes  Only after completing an episode, value estimates and policies are changed.  Don't require a model  Not suited for step-by-step incremental computation 41
  • 42. 4422 MC and DP Methods  Compute same value function  Same step as in DP  Policy evaluation  Computation of VΠ and QΠ for a fixed arbitrary policy (Π).  Policy Improvement  Generalized Policy Iteration 42
  • 43. 4433 To find value of a State  Estimate by experience, average the returns observed after visit to that state.  More the return, more is the average converge to expected value 43
  • 44. First-visit Monte Carlo Policy evaluation 4444 44
  • 45. 4455
  • 46. In MCES, all returns for each state-action pair are accumulated and averaged, irrespective of what Policy was in force when they were observed 4466 46
  • 47. 4477
  • 48. 4488 Monte Carlo Method (Cont…)  All actions should be selected infinitely for optimization  MC exploring starts can not converge to any suboptimal policy.  Agents have 2 approaches  On-policy  Off-policy 48
  • 49. 49
  • 50. 5500 On-policy MC algorithm 50
  • 51. 51 Off Policy MC algorithm
  • 52. Monte Carlo and Dynamic Programming 5522  MC has several advantage over DP:  Can learn from interaction with environment  No need of full models  No need to learn about ALL states  No bootstrapping 52
  • 53. 5533 3. Temporal Difference (TD) methods  Learn from experience, like MC  Can learn directly from interaction with environment  No need for full models  Estimate values based on estimated values of next states, like DP  Bootstrapping (like DP)  Issue to watch for: maintaining sufficient exploration 53
  • 54. for a given policy p, compute the state-value function target: the actual return after time t 5544 TD Prediction Policy Evaluation (the prediction problem): Simple every - visit Monte Carlomethod : V(s ) V(s )+α[R V(s )] t t t t ¬ - V p ( ) : The simplest TD method, TD 0 V(s ) V(s )+α[r + V(s ) V(s )] ¬ g - t t t+ 1 t+ 1 t target: an estimate of the return 54
  • 55. Simple Monte Carlo T T T T T T T st T T T T T 55
  • 56. Simplest TD Method st+1 rt+1 st T T T T T T T T T T T T T 56 V(st )¬V(st) +a rt+1 +g V(st+1 ) - V(st [ )]
  • 57. Dynamic Programming T st rt+1 T T st+1 T T T T T T T 57 ( ) { ( )} t t 1 t V s E r gV s p ¬ + +
  • 58. 5588 TD methods bootstrap and sample  Bootstrapping: update involves an estimate  MC does not bootstrap  DP bootstraps  TD bootstraps  Sampling: update does not involve an expected value  MC samples  DP does not sample  TD samples 58
  • 59. After every transition from a nonterminal state , do this ( ) ( ) [ ( ) ( )] If is terminal, then 0. 1 1 5599 Learning An Action-Value Function Estimate Qp for the current behavior policy p . 59 Q s ,a ¬Q s ,a +α r + gQ s ,a Q s ,a t t t t t+ 1 t+ 1 t+1 t t s Q(s ,a )= s t+ t+ t+1 t -
  • 60. Q-Learning: Off-Policy TD Control 60 One - step Q- learning : Q st , at ( )¬Q st , at ( )+a rt +1 +g max [ Q(s, )- +aQ ( s, a)] t1t t a
  • 61. 6611 Sarsa: On-Policy TD Control S A R S A: State Action Reward State Action 61 Turn this into a control method by always updating the policy to be greedy with respect to the current estimate:
  • 62. 6622 Advantages of TD Learning  TD methods do not require a model of the environment, only experience  TD, but not MC, methods can be fully incremental  You can learn before knowing the final outcome  Less memory  Less peak computation  You can learn without the final outcome  From incomplete sequences  Both MC and TD converge 62
  • 63. 63 References: RL  Univ. of Alberta  http://www.cs.ualberta.ca/~sutton/book/ebook/node 1.html  Sutton and barto,”Reinforcement Learning an introduction.”  Univ. of South Wales  http://www.cse.unsw.edu.au/~cs9417ml/RL1/tdlear ning.html