Trust Region Policy Optimization (TRPO) Agent
Trust region policy optimization (TRPO) is an on-policy, policy gradient reinforcement learning method for environments with a discrete or continuous action space. It directly estimates a stochastic policy and uses a value function critic to estimate the value of the policy. The KL-divergence between the old policy and the new policy is used as a constraint during optimization. As a result, this algorithm prevents significant performance drops compared to standard policy gradient methods by keeping the updated policy within a trust region close to the current policy [1]. For continuous action spaces, this agent does not enforce constraints set in the action specification; therefore, if you need to enforce action constraints, you must do so within the environment.
In Reinforcement Learning Toolbox™, a TRPO agent is implemented by an rlPPOAgent
object.
Note
For TRPO agents, you can only use actors or critics with deep network that support calculating higher order derivatives. Actors and critics that use recurrent networks, custom basis functions, or tables are not supported.
PPO is a simplified version of TRPO. Specifically, PPO has less hyperparameters and therefore is easier to tune, and less computationally expensive than TRPO. For more information on PPO agents, see Proximal Policy Optimization (PPO) Agent. For more information on the different types of reinforcement learning agents, see Reinforcement Learning Agents.
TRPO agents can be trained in environments with the following observation and action spaces.
Observation Space | Action Space |
---|---|
Discrete or continuous | Discrete or continuous |
TRPO agents use the following actor and critic.
Critic | Actor |
---|---|
Value function critic V(S), which you
create using | Stochastic policy actor π(S), which
you create using |
During training, a TRPO agent:
Estimates probabilities of taking each action in the action space and randomly selects actions based on the probability distribution.
Interacts with the environment for multiple steps using the current policy before using mini-batches to update the actor and critic properties over multiple epochs.
If the UseExplorationPolicy
option of the agent is set to
false
the action with maximum likelihood is always used in sim
and generatePolicyFunction
. As a result, the simulated agent and generated policy
behave deterministically.
If the UseExplorationPolicy
is set to true
the
agent selects its actions by sampling its probability distribution. As a result the policy is
stochastic and the agent explores its observation space.
This option affects only simulation and deployment; it does not affect training.
Actor and Critic Function Approximators
To estimate the policy and value function, a TRPO agent maintains two function approximators.
Actor π(A|S;θ) — The actor, with parameters θ, outputs the conditional probability of taking each action A when in state S as one of the following:
Discrete action space — The probability of taking each discrete action. The sum of these probabilities across all actions is 1.
Continuous action space — The mean and standard deviation of the Gaussian probability distribution for each continuous action.
Critic V(S;ϕ) — The critic, with parameters ϕ, takes observation S and returns the corresponding expectation of the discounted long-term reward.
For more information on creating actors and critics for function approximation, see Create Policies and Value Functions.
During training, the agent tunes the parameter values in θ. After training, the parameters remain at their tuned value and the trained actor function approximator is stored in π(A|S).
Agent Creation
You can create and train TRPO agents at the MATLAB® command line or using the Reinforcement Learning Designer app. For more information on creating agents using Reinforcement Learning Designer, see Create Agents Using Reinforcement Learning Designer.
At the command line, you can create a TRPO agent with default actor and critic based on the observation and action specifications from the environment. To do so, perform the following steps.
Create observation specifications for your environment. If you already have an environment object, you can obtain these specifications using
getObservationInfo
.Create action specifications for your environment. If you already have an environment object, you can obtain these specifications using
getActionInfo
.If needed, specify the number of neurons in each learnable layer. To do so, create an agent initialization options object using
rlAgentInitializationOptions
.Specify agent options using an
rlTRPOAgentOptions
object (alternatively, you can skip this step and then modify the agent options later using dot notation).Create the agent using an
rlTRPOAgent
object.
Alternatively, you can create actor and critic and use these objects to create your agent. In this case, ensure that the input and output dimensions of the actor and critic match the corresponding action and observation specifications of the environment.
Create an actor using
rlDiscreteCategoricalActor
object (for discrete action spaces) orrlContinuousGaussianActor
object (for continuous action spaces).Create a critic using an
rlValueFunction
object.If needed, specify agent options using an
rlTRPOAgentOptions
object.Create the agent using the
rlTRPOAgent
function.
TRPO agents do not support actors and critics that use recurrent deep neural networks as
function approximators. TRPO agents also do not support deep neural networks that use a
quadraticLayer
.
For more information on creating actors and critics for function approximation, see Create Policies and Value Functions.
Trust Region Policy Optimization
Trust region policy optimization finds the actor parameters that minimize the following actor loss function.
Here:
M is the mini-batch size.
Di is an advantage function.
πi(Ai|Si;θ) is the probability of taking action Ai following the current policy. This value is a specific value of the probability (discrete action) or of the probability density function (continuous action).
π(Ai|Si;θold) is the probability of taking action Ai following the old policy.
wℋi(θ,Si) is an entropy loss term, where w is the entropy loss weight and ℋi(θ,Si) is the entropy. For more information, see Entropy Loss.
This minimization is subject to the following constraint.
Here:
DKL(θold,θ,Si) is the Kullback-Leibler (KL) divergence between the old policy π(A|Si;θold) and current policy π(A|Si;θ). DKL measures how much the probability distributions of the old and new policies differ. DKL is zero when the two distributions are identical.
δ is the limit for DKL and controls how much the new policy can deviate from the old policy.
For agents with discrete action spaces, DKL is computed as follows, where P is the number of actions.
For agents with continuous action spaces, DKL is computed as follows.
Here:
μθ,k and σθ,k are the mean and standard deviation for the kth action output by the current actor policy π(Ak|Si;θ).
μθold,k and σθold,k are the mean and standard deviation for the kth action output by the old policy π(Ak|Si;θold).
To approximate this optimization problem, the TRPO agent uses a linear approximation of Lactor(θ) and a quadratic approximation of DKL(θold,θ,Si). The approximations are computed by taking the Taylor series expansion around θ.
The analytical solution to this approximate optimization problem is as follows.
Here, x=H-1g and α is a coefficient for ensuring that the policy improves and satisfies the constraint.
Training Algorithm
TRPO agents use the following training algorithm. To configure the training algorithm,
specify options using an rlTRPOAgentOptions
object.
Initialize the actor π(A|S;θ) with random parameter values θ.
Initialize the critic V(S;ϕ) with random parameter values ϕ.
Generate N experiences by following the current policy. The experience sequence is
Here, St is a state observation, At is an action taken from that state, St+1 is the next state, and Rt+1 is the reward received for moving from St to St+1.
When in state St, the agent computes the probability of taking each action in the action space using π(A|St;θ) and randomly selects action At based on the probability distribution.
ts is the starting time step of the current set of N experiences. At the beginning of the training episode, ts = 1. For each subsequent set of N experiences in the same training episode, ts ← ts + N.
For each experience sequence that does not contain a terminal state, N is equal to the
ExperienceHorizon
option value. Otherwise, N is less thanExperienceHorizon
and SN is the terminal state.For each episode step t = ts, ts+1, …, ts+N-1, compute the return and advantage function using the method specified by the
AdvantageEstimateMethod
option.Finite Horizon (
AdvantageEstimateMethod = "finite-horizon"
) — Compute the return Gt, which is the sum of the reward for that step and the discounted future reward [2].Here, b is
0
if Sts+N is a terminal state and1
otherwise. That is, if Sts+N is not a terminal state, the discounted future reward includes the discounted state value function, computed using the critic network V.Compute the advantage function Dt.
Generalized Advantage Estimator (
AdvantageEstimateMethod = "gae"
) — Compute the advantage function Dt, which is the discounted sum of temporal difference errors [3].Here, b is
0
if Sts+N is a terminal state and1
otherwise. λ is a smoothing factor specified using theGAEFactor
option.Compute the return Gt.
To specify the discount factor γ for either method, use the
DiscountFactor
option.Learn from mini-batches of experiences over K epochs. To specify K, use the
NumEpoch
option. For each learning epoch:Sample a random mini-batch data set of size M from the current set of experiences. To specify M, use the
MiniBatchSize
option. Each element of the mini-batch data set contains a current experience and the corresponding return and advantage function values.Update the critic parameters by minimizing the loss Lcritic across all sampled mini-batch data.
Normalize the advantage values Di based on recent unnormalized advantage values.
If the
NormalizedAdvantageMethod
option is'none'
, do not normalize the advantage values.If the
NormalizedAdvantageMethod
option is'current'
, normalize the advantage values based on the unnormalized advantages in the current mini-batch.If the
NormalizedAdvantageMethod
option is'moving'
, normalize the advantage values based on the unnormalized advantages for the N most recent advantages, including the current advantage value. To specify the window size N, use theAdvantageNormalizingWindow
option.
Update the actor parameters by solving the constrained optimization problem.
Compute the policy gradient.
Apply the conjugate gradient (CG) method to find an approximate solution to the following equation, where H is the Hessian of the KL-divergence between the old and new policies.
To configure the termination conditions for the CG algorithm, use the
NumIterationsConjugateGradient
andConjugateGradientResidualTolerance
options. To stabilize the numerical computation for the CG algorithm, use theConjugateGradientDamping
option.Using a line search algorithm, find the largest α that satisfies the following constraints.
Here, δ is the KL-divergence limit, which you set using the
KLDivergenceLimit
option. n is the number of line search iterations, which you set using theNumIterationsLineSearch
option.If a valid value of α exists, update the parameters of the actor network to θ. If a valid value of α does not exist, do not update the actor parameters.
Repeat steps 3 through 5 until the training episode reaches a terminal state.
Entropy Loss
To promote agent exploration, you can add an entropy loss term wℋi(θ,Si) to the actor loss function, where w is the entropy loss weight and ℋi(θ,Si) is the entropy.
The entropy value is higher when the agent is more uncertain about which action to take next. Therefore, maximizing the entropy loss term (minimizing the negative entropy loss) increases the agent uncertainty, thus encouraging exploration. To promote additional exploration, which can help the agent move out of local optima, you can specify a larger entropy loss weight.
For a discrete action space, the agent uses the following entropy value. In this case, the actor outputs the probability of taking each possible discrete action.
Here:
P is the number of possible discrete actions.
π(Ak|Si;θ) is the probability of taking action Ak when in state Si following the current policy.
For a continuous action space, the agent uses the following entropy value. In this case, the actor outputs the mean and standard deviation of the Gaussian distribution for each continuous action.
Here:
C is the number of continuous actions output by the actor.
σk,i is the standard deviation for action k when in state Si following the current policy.
References
[1] Schulman, John, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. "Trust Region Policy Optimization." Proceedings of the 32nd International Conference on Machine Learning, pp. 1889-1897. 2015.
[2] Mnih, Volodymyr, Adrià Puigdomènech Badia, Mehdi Mirza, Alex Graves, Timothy P. Lillicrap, Tim Harley, David Silver, and Koray Kavukcuoglu. “Asynchronous Methods for Deep Reinforcement Learning.” ArXiv:1602.01783 [Cs], February 4, 2016. https://arxiv.org/abs/1602.01783.
[3] Schulman, John, Philipp Moritz, Sergey Levine, Michael Jordan, and Pieter Abbeel. “High-Dimensional Continuous Control Using Generalized Advantage Estimation.” ArXiv:1506.02438 [Cs], October 20, 2018. https://arxiv.org/abs/1506.02438.