Options for DDPG agent
Use an rlDDPGAgentOptions
object to specify options for deep
deterministic policy gradient (DDPG) agents. To create a DDPG agent, use rlDDPGAgent
.
For more information, see Deep Deterministic Policy Gradient 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 DDPG agent using all default options. You
can modify the object properties using dot notation.opt
= rlDDPGAgentOptions
sets option properties using
name-value pairs. For example,
opt
= rlDDPGAgentOptions(Name,Value
)rlDDPGAgentOptions('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.
rlDDPGAgent | Deep deterministic policy gradient reinforcement learning agent |
[1] Sutton, Richard S., and Andrew G. Barto. Reinforcement Learning: An Introduction. Second edition. Adaptive Computation and Machine Learning. Cambridge, Mass: The MIT Press, 2018.