BD Brain Drip
📊
Module 02 7 concepts

Tabular Methods

Q-learning, SARSA, dynamic programming, and Monte Carlo methods.

01

Dynamic Programming

Computing optimal policies via iterative Bellman updates when the full environment model is known – the theoretical foundation of reinforcement learning.

02

Eligibility Traces

Credit assignment mechanism that blends TD and Monte Carlo through exponentially decaying memory of visited states.

03

Monte Carlo Methods

Learning value estimates from complete episode returns – model-free RL through averaging sampled outcomes.

04

N-Step Methods

Bridging Monte Carlo and TD by bootstrapping after n steps – tunable bias-variance trade-off.

05

Q-Learning

Off-policy TD control that learns the optimal action-value function regardless of the behavior policy – the most influential tabular RL algorithm.

06

SARSA

On-policy TD control that updates Q-values using the action actually taken – safer than Q-learning in stochastic environments.

07

Temporal Difference Learning

Bootstrapping value estimates from incomplete episodes by updating toward one-step lookahead targets.