Note
Expected SARSA
Topics: Reinforcement Learning
Algorithm Overview
Expected SARSA is a tabular, on-policy reinforcement learning algorithm that learns a discrete policy. It is targeted at environments with discrete state and discrete action spaces.
It can be thought as being like Q-Learning but with expected value instead of maximum over next state-action pair.
The update rule for Expected SARSA is as follows (1):
Pseudocode
(2)

References
- R. S. Sutton and A. G. Barto, Reinforcement learning: an introduction. in Adaptive computation and machine learning. Cambridge, Mass: MIT Press, 2018.
- https://jochemsoons.medium.com/a-comparison-between-sarsa-and-expected-sarsa-66b931202c75
Backlinks
Notes that reference this page.
Connections
Direct relationships to this note.