-
-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[New Feature]: Integrating Envpool Environments #28
Comments
Now we can use Envpool Atari environments in RLLTE. The code change can be found in PR#29 from rllte.env import make_envpool_atari_env
envs = make_envpool_atari_env(env_id='Breakout-v5', num_envs=8, device='cuda', seed=1, asynchronous=False) Since the asynchronous mode achieved much lower training performance than the synchronous mode, we recommend using the synchronous mode currently. |
Now we can use Envpool Procgen environments in RLLTE. from rllte.env import make_envpool_procgen_env
envs = make_envpool_procgen_env(
env_id=bigfish,
num_envs=64,
device='cuda',
seed=1,
gamma=0.99,
num_levels=200,
start_level=0,
distribution_mode="easy",
asynchronous=False
) Since the asynchronous mode achieved much lower training performance than the synchronous mode, we recommend using the synchronous mode currently. |
We are introducing the Envpool to improve the operational efficiency of built-in environments.
Env list:
The text was updated successfully, but these errors were encountered: