Packages

Gyx allows designing and training Reinforcement Learning tasks. It includes environment abstractions that allows interaction with Python based environments like OpenAI Gym.

Current section

Files

Jump to
gyx lib core runner.ex
Raw

lib/core/runner.ex

defmodule Gyx.Core.Runner do
@moduledoc """
This Behaivour describes necesary interfaces
between environment and agent(s) to be performed when
running an experiment
"""
@doc """
Bridge function for running agent's `begin_episode`
"""
@callback initialize_episode() :: any()
end