Agents

MinimalRLCore.end!Method
end!(agent::AbstractAgent, evn_s_tp1, r, args...)

Function called when the environment is terminated. Default calls step!(agent, env_s_tp1, r, true, args...)

source
MinimalRLCore.start!Method
start!(agent::AbstractAgent, env_s_tp1, args...)

Function for starting the agent for a new episode.

returns an action to get passed to the environment

source
MinimalRLCore.step!Method
step!(agent::AbstractAgent, env_s_tp1, r, terminal, args...)

Function to take a step with an agent.

Returns an action to get passed to the environment.

source