Main Content

rlTRPOAgentOptions

Options for TRPO agent

Since R2021b

Description

Use an rlTRPOAgentOptions object to specify options for trust region policy optimization (TRPO) agents. To create a TRPO agent, use rlTRPOAgent.

For more information on TRPO agents, see Trust Region Policy Optimization (TRPO) Agents.

For more information on the different types of reinforcement learning agents, see Reinforcement Learning Agents.

Creation

Description

opt = rlTRPOAgentOptions creates an rlPPOAgentOptions object for use as an argument when creating a TRPO agent using all default settings. You can modify the object properties using dot notation.

example

opt = rlTRPOAgentOptions(Name=Value) creates the options set opt and sets its properties using one or more name-value arguments. For example, rlTRPOAgentOptions(DiscountFactor=0.95) creates an option set with a discount factor of 0.95. You can specify multiple name-value arguments.

Properties

expand all

Number of steps the agent interacts with the environment before learning from its experience, specified as a positive integer. When the agent is trained in parallel, ExperienceHorizon is ignored, and the whole episode is used to compute the gradients.

The ExperienceHorizon value must be greater than or equal to the MiniBatchSize value.

Example: ExperienceHorizon=512

Mini-batch size used for each learning epoch, specified as a positive integer. When the agent uses a recurrent neural network, MiniBatchSize is treated as the training trajectory length.

The MiniBatchSize value must be less than or equal to the ExperienceHorizon value.

Example: MiniBatchSize=256

Entropy loss weight, specified as a scalar value between 0 and 1. A higher entropy loss weight value promotes agent exploration by applying a penalty for being too certain about which action to take. Doing so can help the agent move out of local optima.

When gradients are computed during training, an additional gradient component is computed for minimizing the entropy loss. For more information, see Entropy Loss.

Example: EntropyLossWeight=0.02

Number of epochs for which the actor and critic networks learn from the current experience set, specified as a positive integer.

Example: NumEpoch=2

Method for estimating advantage values, specified as one of the following:

  • "gae" — Generalized advantage estimator

  • "finite-horizon" — Finite horizon estimation

For more information on these methods, see the training algorithm information in Proximal Policy Optimization (PPO) Agents.

Example: AdvantageEstimateMethod="finite-horizon"

Smoothing factor for generalized advantage estimator, specified as a scalar value between 0 and 1, inclusive. This option applies only when the AdvantageEstimateMethod option is "gae"

Example: GAEFactor=0.97

Conjugate gradient damping factor for numerical stability, specified as a nonnegative scalar.

Example: ConjugateGradientDamping=0.05

Upper limit for the Kullback-Leibler (KL) divergence between the old policy and the current policy, specified as a positive scalar.

Example: KLDivergenceLimit=0.02

Maximum number of iterations for conjugate gradient descent, specified as positive integer.

Example: NumIterationsConjugateGradient=30

Number of iterations for line search, specified as a positive integer.

Typically, the default value works well for most cases.

Example: NumIterationsLineSearch=5

Conjugate gradient residual tolerance, specified as a positive scalar. Once the residual for the conjugate gradient algorithm is below this tolerance, the algorithm stops.

Typically, the default value works well for most cases.

Example: ConjugateGradientResidualTolerance=2e-8

Method for normalizing advantage function values, specified as one of the following:

  • "none" — Do not normalize advantage values

  • "current" — Normalize the advantage function using the mean and standard deviation for the current mini-batch of experiences.

  • "moving" — Normalize the advantage function using the mean and standard deviation for a moving window of recent experiences. To specify the window size, set the AdvantageNormalizingWindow option.

In some environments, you can improve agent performance by normalizing the advantage function during training. The agent normalizes the advantage function by subtracting the mean advantage value and scaling by the standard deviation.

Example: NormalizedAdvantageMethod="moving"

Window size for normalizing advantage function values, specified as a positive integer. Use this option when the NormalizedAdvantageMethod option is "moving".

Example: AdvantageNormalizingWindow=1e5

Critic optimizer options, specified as an rlOptimizerOptions object. It allows you to specify training parameters of the critic approximator such as learning rate, gradient threshold, as well as the optimizer algorithm and its parameters. For more information, see rlOptimizerOptions and rlOptimizer.

Example: CriticOptimizerOptions = rlOptimizerOptions(LearnRate=5e-3)

Sample time of agent, specified as a positive scalar or as -1. Setting this parameter to -1 allows for event-based simulations.

Within a Simulink® environment, the RL Agent block in which the agent is specified to execute every SampleTime seconds of simulation time. If SampleTime is -1, the block inherits the sample time from its parent subsystem.

Within a MATLAB® environment, the agent is executed every time the environment advances. In this case, SampleTime is the time interval between consecutive elements in the output experience returned by sim or train. If SampleTime is -1, the time interval between consecutive elements in the returned output experience reflects the timing of the event that triggers the agent execution.

Example: SampleTime=-1

Discount factor applied to future rewards during training, specified as a positive scalar less than or equal to 1.

Example: DiscountFactor=0.9

Object Functions

rlTRPOAgentTrust region policy optimization (TRPO) reinforcement learning agent

Examples

collapse all

Create a TRPO agent options object, specifying the discount factor.

opt = rlTRPOAgentOptions(DiscountFactor=0.9)
opt = 
  rlTRPOAgentOptions with properties:

                            SampleTime: 1
                        DiscountFactor: 0.9000
                     EntropyLossWeight: 0.0100
                     ExperienceHorizon: 512
                         MiniBatchSize: 128
                              NumEpoch: 3
                CriticOptimizerOptions: [1x1 rl.option.rlOptimizerOptions]
              ConjugateGradientDamping: 0.1000
                     KLDivergenceLimit: 0.0100
        NumIterationsConjugateGradient: 10
               NumIterationsLineSearch: 10
    ConjugateGradientResidualTolerance: 1.0000e-08
               AdvantageEstimateMethod: "gae"
                             GAEFactor: 0.9500
             NormalizedAdvantageMethod: "none"
            AdvantageNormalizingWindow: 1000000
                            InfoToSave: [1x1 struct]

You can modify options using dot notation. For example, set the agent sample time to 0.1.

opt.SampleTime = 0.1;

Version History

Introduced in R2021b

expand all