I’m experiencing weird behavior while working with the Breakout-v0 environment in OpenAI gym. The game seems to freeze randomly during training where the ball completely disappears from the screen for multiple consecutive frames. During these periods, nothing happens and the ball doesn’t respawn for quite a while.
I’m not sure if this is a bug in the gym environment or if it’s actually part of how the original Breakout game works. Has anyone else encountered this issue?
Also, I’m trying to understand the action space better. From my testing, it seems like:
- Action 0: No movement (paddle stays still)
- Action 1: Also no movement (same as 0?)
- Action 2: Move paddle right
- Action 3: Move paddle left
Can someone confirm if these action mappings are correct? The freezing issue is really affecting my training performance and I need to figure out if this is expected behavior or something I should work around.