You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
environment made by RolloutWrapper doesn't reflect num_env_step variable which we put into RolloutWrapper:
Code for reproduction
fromgymnax.experimentalimportRolloutWrapperimportjaxENV_NUM=3manager=RolloutWrapper(None, env_name='CartPole-v1', num_env_steps=100)
rng, rollout_rng=jax.random.split(jax.random.key(0))
rollout_rng=jax.random.split(rollout_rng, ENV_NUM)
obs, action, reward, next_obs, done, cum_ret=manager.batch_rollout(rollout_rng, None)
print(done.shape) # it should print (3, 100), but the result is (3, 500)
The text was updated successfully, but these errors were encountered:
Issue
environment made by RolloutWrapper doesn't reflect
num_env_step
variable which we put intoRolloutWrapper
:Code for reproduction
The text was updated successfully, but these errors were encountered: