Options for TD3 agent
Use an rlTD3AgentOptions
object to specify options for
twin-delayed deep deterministic policy gradient (TD3) agents. To create a TD3 agent, use
rlTD3Agent
For more information see Twin-Delayed 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 TD3 agent using all default options. You can
modify the object properties using dot notation.opt
= rlTD3AgentOptions
sets option properties using
name-value pairs. For example, opt
= rlTD3AgentOptions(Name,Value
)rlTD3AgentOptions('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.
rlTD3Agent | Twin-delayed 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.