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
In the register_envs function, the name given to the classes does not include "MinAtar/". Because of this, if you call register_envs, it will overwrite the names of the original ALE games. This also means that calling gym.make("MinAtar/Breakout-v0") or any other game doesn't work since there are no registered envs starting with "MinAtar". The bug is in
In the
register_envs
function, the name given to the classes does not include "MinAtar/". Because of this, if you call register_envs, it will overwrite the names of the original ALE games. This also means that callinggym.make("MinAtar/Breakout-v0")
or any other game doesn't work since there are no registered envs starting with "MinAtar". The bug is inMinAtar/minatar/gym.py
Lines 58 to 70 in 2a12fc8
It can be fixed by just modifying "id="{}-v0".format(name)," to "id="MinAtar/{}-v0".format(name)," for both v0 and v1.
I can open a PR for this if you like.
The text was updated successfully, but these errors were encountered: