Options for AC agent
Use an rlACAgentOptions
object to specify options for
creating actor-critic (AC) agents. To create an actor-critic agent, use rlACAgent
For more information see Actor-Critic Agents.
For more information on the different types of reinforcement learning agents, see Reinforcement Learning Agents.
creates a default
option set for an AC agent. You can modify the object properties using dot
notation.opt
= rlACAgentOptions
sets option properties using
name-value pairs. For example, opt
= rlACAgentOptions(Name,Value
)rlDQNAgentOptions('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.
rlACAgent | Actor-critic reinforcement learning agent |