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
Breakout have following action space
['NOOP', 'FIRE', 'RIGHT', 'LEFT', 'RIGHTFIRE', 'LEFTFIRE']
The ball in the Breakout atari game does not appear until one of ['FIRE', 'RIGHTFIRE', 'LEFTFIRE'] actions is executed.
I understand this FIRE action make the game start for human player, but this is unnecessary in learning procedure.
The text was updated successfully, but these errors were encountered:
It may be unnecessary, but a reasonable learning algorithm shouldn't have much trouble learning it. Changing the semantics of an environment makes new researcher's results not comparable to old results, so we avoid changing them unless there's a compelling reason.
Breakout have following action space
['NOOP', 'FIRE', 'RIGHT', 'LEFT', 'RIGHTFIRE', 'LEFTFIRE']
The ball in the Breakout atari game does not appear until one of ['FIRE', 'RIGHTFIRE', 'LEFTFIRE'] actions is executed.
I understand this FIRE action make the game start for human player, but this is unnecessary in learning procedure.
The text was updated successfully, but these errors were encountered: