SARSA reinforcement learning agent
The SARSA algorithm is a model-free, online, on-policy reinforcement learning method. A SARSA agent is a value-based reinforcement learning agent which trains a critic to estimate the return or future rewards.
For more information on SARSA agents, see SARSA Agents.
For more information on the different types of reinforcement learning agents, see Reinforcement Learning Agents.
creates a SARSA agent with the specified critic network and sets the agent
= rlSARSAAgent(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 |