RPegoud / jym

JAX implementation of RL algorithms and vectorized environments
MIT License
32 stars 1 forks source link

Fix breakout termination bug #22

Open RPegoud opened 9 months ago

RPegoud commented 9 months ago

Currently, the breakout environment only terminates via the step limit condition:

done = jnp.logical_or(state.done, state.time >= self.max_steps_in_episode)

Task: verify the game logic of the environment and fix the termination issue.