package core
Ordering
- Alphabetic
Visibility
- Public
- Protected
Type Members
- trait Env[A, O, AS[A] <: Space[A], OS[O] <: Space[O]] extends Object with PythonInternals
From https://github.com/openai/gym/blob/master/gym/core.py Env is a facade that adds types to standard open-ai environments.
From https://github.com/openai/gym/blob/master/gym/core.py Env is a facade that adds types to standard open-ai environments.
- A
the type of admissible action for this environment, e.g. Int, py.Any, ...
- O
the type of admissible observation for this environment, e.g. Int, py.Any, ...
- AS
the type of the space associate to actions, e.g. Space, Box, Dict, Tuple, ..
- OS
the type of the space associate to actions, e.g. Space, Box, Dict, Tuple, ..
- Annotations
- @native()
- trait Wrapper[A, O, AS[a] <: Space[a], OS[o] <: Space[o], W <: Env[A, O, AS, OS]] extends Env[A, O, AS, OS]
From https://github.com/openai/gym/blob/master/gym/core.py
From https://github.com/openai/gym/blob/master/gym/core.py
- Annotations
- @native()