Farama-Foundation / Gymnasium-Robotics

A collection of robotics simulation environments for reinforcement learning
https://robotics.farama.org/
MIT License
485 stars 79 forks source link

[Bug Report] PointMaze_Open_DiverseGR not registered #194

Closed dtch1997 closed 7 months ago

dtch1997 commented 7 months ago

If you are submitting a bug report, please fill in the following details and use the tag [bug].

Describe the bug In gymnasium_robotics.envs.maps there is a map defined:

OPEN_DIVERSE_GR = [
    [1, 1, 1, 1, 1, 1, 1],
    [1, C, C, C, C, C, 1],
    [1, C, C, C, C, C, 1],
    [1, C, C, C, C, C, 1],
    [1, 1, 1, 1, 1, 1, 1],
]

However, the corresponding Gymnasium environment is not registered.

Error message:

gymnasium.error.NameNotFound: Environment `PointMaze_Open_Diverse_GR` doesn't exist. Did you mean: `PointMaze_Open_Diverse_G`?

Code example

import gymnasium as gym

env = gym.make('PointMaze_Open_Diverse_GR') # throws error

System Info Gymnasium: gymnasium_robotics==1.2.3 installed through pip System: Ubuntu 20.04

Checklist