make_atari_env
.make_atari_env(
env_id: str = 'Alien-v5', num_envs: int = 8, device: str = 'cpu', seed: int = 1,
frame_stack: int = 4, asynchronous: bool = True
)
Create Atari environments.
Args
- env_id (str) : Name of environment.
- num_envs (int) : Number of environments.
- device (str) : Device to convert the data.
- seed (int) : Random seed.
- frame_stack (int) : Number of stacked frames.
- asynchronous (bool) :
True
for creating asynchronous environments, andFalse
for creating synchronous environments.
Returns
The vectorized environments.
make_envpool_atari_env
.make_envpool_atari_env(
env_id: str = 'Alien-v5', num_envs: int = 8, device: str = 'cpu', seed: int = 1,
asynchronous: bool = True
)
Create Atari environments with envpool
.
Args
- env_id (str) : Name of environment.
- num_envs (int) : Number of environments.
- device (str) : Device to convert the data.
- seed (int) : Random seed.
- asynchronous (bool) :
True
for creating asynchronous environments, andFalse
for creating synchronous environments.
Returns
The vectorized environments.