Module Openai_gym.Gym_t
type json
= Json_t.json
Type of arbitrary JSON values.
type step_response
=
{
step_observation : json;
step_reward : float;
step_done : bool;
step_info : json;
}
type step_param
=
{
step_render : bool;
step_action : json;
}
type observation_space_info
=
{
observation_space_info : json;
}
type observation_space_contains_response
=
{
observation_space_contains_member : bool;
}
type observation
=
{
observation : json;
}
type monitor_start_param
=
{
monitor_directory : string;
monitor_force : bool;
monitor_resume : bool;
monitor_video_callable : bool;
}
type instance_id
=
{
instance_id : string;
}
type envs
= (string * string) list
type env_id
=
{
env_id : string;
}
type all_envs
=
{
all_envs : envs;
}
type action_space_info
=
{
action_space_info : json;
}
type action_space_contains_response
=
{
action_space_contains_member : bool;
}
type action
=
{
action : int;
}