Q-Learning and SARSA, with Python

Explaining the fundamentals of model-free RL algorithms: Q-Learning and SARSA (with code!)

Chao De-Yu
Towards Data Science
4 min readJun 19, 2021

--

Photo by Fabio Ballasina on Unsplash

Reinforcement Learning (RL) is one of the learning paradigms in machine learning that learns an optimal policy mapping states to actions by interacting with an environment to achieve the goal. In this article, I will introduce the two most commonly used RL…

--

--