Deep deterministic policy gradient reinforcement learning agent
The deep deterministic policy gradient (DDPG) algorithm is an actor-critic, model-free, online, off-policy reinforcement learning method which computes an optimal policy that maximizes the long-term reward.
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 a DDPG agent with the specified actor and critic networks and sets the agent
= rlDDPGAgent(actor
,critic
,agentOptions
)AgentOptions
property.
train | Train a reinforcement learning agent within a specified environment |
sim | Simulate a trained reinforcement learning agent within a specified environment |
getActor | Get actor representation from reinforcement learning agent |
setActor | Set actor representation of reinforcement learning agent |
getCritic | Get critic representation from reinforcement learning agent |
setCritic | Set critic representation of reinforcement learning agent |
generatePolicyFunction | Create function that evaluates trained policy of reinforcement learning agent |