Agents
MinimalRLCore.end! — Methodend!(agent::AbstractAgent, evn_s_tp1, r, args...)Function called when the environment is terminated. Default calls step!(agent, env_s_tp1, r, true, args...)
MinimalRLCore.start! — Methodstart!(agent::AbstractAgent, env_s_tp1, args...)Function for starting the agent for a new episode.
returns an action to get passed to the environment
MinimalRLCore.step! — Methodstep!(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.