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
Describe the bug
Rendering the FetchPickAndPlace-v3 environment, I see that that robot seems to be misplaced and that the small Box which should be picked up spawns inside the Big Box (table) on the floor.
Code example
import gymnasium as gym
import gymnasium_robotics
gym.register_envs(gymnasium_robotics)
env = gym.make('FetchPickAndPlaceDense-v3', render_mode='human')
num_episodes = 100
for i in range(num_episodes):
obs, info = env.reset()
done = False
while not done:
action = env.action_space.sample()
obs, reward, terminated, truncated, info = env.step(action)
done = terminated or truncated
System Info
installed gymnasium-robotics via pip in a fresh venv
Ubuntu 24.04.1 LTS
Python 3.12.3
Describe the bug
Rendering the FetchPickAndPlace-v3 environment, I see that that robot seems to be misplaced and that the small Box which should be picked up spawns inside the Big Box (table) on the floor.
Code example
System Info
installed gymnasium-robotics via pip in a fresh venv
Ubuntu 24.04.1 LTS
Python 3.12.3
Additional context
This videos shows the issue.
Checklist
The text was updated successfully, but these errors were encountered: