# topic/ai-ml/rl

17 notes · all tags

Actor-Critic Methods

Actor-critic combines a policy (actor) with a value function (critic) for stable, low-variance policy gradient learning.

4 links · 7 backlinks
# topic/ai-ml/rl

Advantage Function

The advantage function measures how much better an action is compared to the average action in that state:

4 links · 8 backlinks
# topic/ai-ml/rl

Bellman Equations

The Bellman equations express the recursive relationship in Value Functions: the value of a state equals the immediate reward plus the discounted value of the next state.

3 links · 5 backlinks
# topic/ai-ml/rl

Deep Q-Network

DQN extends Q-Learning to high-dimensional state spaces by approximating with a neural network.

3 links · 2 backlinks
# topic/ai-ml/rl# topic/ai-ml/deep

Dynamic Programming in RL

Dynamic programming solves MDPs exactly when the model ( , ) is known. Foundation for understanding all RL algorithms.

4 links · 5 backlinks
# topic/ai-ml/rl

LLMs as RL Agents

The framing of LLM generation as a reinforcement learning problem reveals deep connections between language modeling and sequential decision-making.

8 links · 4 backlinks
# topic/ai-ml/rl# topic/ai-ml/deep

Markov Decision Process

An MDP is the formal framework for sequential decision-making under uncertainty.

3 links · 4 backlinks
# topic/ai-ml/rl

Monte Carlo Methods in RL

Monte Carlo (MC) methods learn value functions from complete episodes of experience — no model needed.

2 links · 4 backlinks
# topic/ai-ml/rl

Policy Gradient Theorem

The policy gradient theorem gives the gradient of the expected return with respect to policy parameters — enabling direct optimization of the policy.

4 links · 5 backlinks
# topic/ai-ml/rl

Proximal Policy Optimization (PPO)

PPO is the default policy gradient algorithm for practical RL, including RLHF.

5 links · 6 backlinks
# topic/ai-ml/rl

Q-Learning

Q-learning is an off-policy TD control algorithm that directly learns the optimal action-value function .

2 links · 8 backlinks
# topic/ai-ml/rl

REINFORCE

REINFORCE is the simplest policy gradient algorithm. It uses complete episode returns to estimate the gradient.

4 links · 4 backlinks
# topic/ai-ml/rl

Reinforcement Learning

Reinforcement learning studies agents that learn by acting in an environment and receiving reward. The useful mental model is: an MDP defines the interaction, value functions…

18 links · 1 backlinks
# topic/ai-ml/rl

RLHF Pipeline

RLHF (Reinforcement Learning from Human Feedback) aligns LLMs with human preferences by training against a learned reward model.

4 links · 8 backlinks
# topic/ai-ml/rl# topic/ai-ml/deep

SARSA

SARSA is an on-policy TD control algorithm. The name comes from the tuple .

2 links · 3 backlinks
# topic/ai-ml/rl

Temporal Difference Learning

TD learning combines the model-free nature of Monte Carlo with the bootstrapping of dynamic programming.

6 links · 1 backlinks
# topic/ai-ml/rl

Value Functions

Value functions estimate how good it is to be in a state (or to take an action in a state) under a given policy’

4 links · 6 backlinks
# topic/ai-ml/rl