Options for PPO agent
Use an rlPPOAgentOptions
object to specify options for
proximal policy optimization (PPO) agents. To create a PPO agent, use rlPPOAgent
For more information on PPO agents, see Proximal Policy Optimization Agents.
For more information on the different types of reinforcement learning agents, see Reinforcement Learning Agents.
creates an
opt
= rlPPOAgentOptionsrlPPOAgentOptions
object for use as an argument when creating a PPO
agent using all default settings. You can modify the object properties using dot
notation.
sets option properties using
name-value pairs. For example, opt
= rlPPOAgentOptions(Name,Value
)rlPPOAgentOptions('DiscountFactor',0.95)
creates an option set with a discount factor of 0.95
. You can specify
multiple name-value pairs. Enclose each property name in quotes.
rlPPOAgent | Proximal policy optimization reinforcement learning agent |