The Reinforcement Learning Problem
Topics: Reinforcement Learning
Reinforcement Learning (RL) is the study of learning by trial and error to achieve a certain goal. It employs the concept of reward and penalty to reinforce or change the behavior of the agent.
The goal of the agent in RL is to select/learn a policy which maximizes the expected return when the agent acts according to it.
A few equations here to make it concrete. Consider a stochastic policy and stochastic environment transitions. The the probability of a trajectory is:
where:
: probability of the initial state
: state transition probability, which is the probability of moving to a new state given the current state and the selected action
: stochastic policy, which represents the probability of selecting an action given the current state
The expected return is:
where is the return.
Then the central optimization problem in RL can be expressed as:
where is the optimal policy, which is the policy that maximizes the expected return .
References
Backlinks
Notes that reference this page.
Connections
Direct relationships to this note.