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