mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-31 18:12:53 +00:00
* extending robotics shadow hand with touch sensors * extending robotics shadow hand with touch sensors * extending robotics shadow hand with touch sensors * extending robotics shadow hand with touch sensors * extending robotics shadow hand with touch sensors * extending robotics shadow hand with touch sensors * extending robotics shadow hand with touch sensors Co-authored-by: Luca Lach <llach@techfak.uni-bielefeld.de> * add touch sensors layout * add touch sensors layout * extending robotics shadow hand with touch sensors Co-authored-by: Luca Lach <llach@techfak.uni-bielefeld.de> * extending robotics shadow hand with touch sensors * add touch sensors layout Co-authored-by: Luca Lach <llach@techfak.uni-bielefeld.de> * update touch sensors layout 85 Co-authored-by: Luca Lach <llach@techfak.uni-bielefeld.de> * add manipulate_egg_touch_sensors_85.xml & manipulate_pen_touch_sensors_85.xml; ManipulateTouchSensorsEnv._render_callback() Co-authored-by: Luca Lach <llach@techfak.uni-bielefeld.de> * add shared_touch_sensors_92.xml; solve pytest . failure Co-authored-by: Luca Lach <llach@techfak.uni-bielefeld.de>
15 lines
767 B
Python
15 lines
767 B
Python
from gym.envs.robotics.fetch_env import FetchEnv
|
|
from gym.envs.robotics.fetch.slide import FetchSlideEnv
|
|
from gym.envs.robotics.fetch.pick_and_place import FetchPickAndPlaceEnv
|
|
from gym.envs.robotics.fetch.push import FetchPushEnv
|
|
from gym.envs.robotics.fetch.reach import FetchReachEnv
|
|
|
|
from gym.envs.robotics.hand.reach import HandReachEnv
|
|
from gym.envs.robotics.hand.manipulate import HandBlockEnv
|
|
from gym.envs.robotics.hand.manipulate import HandEggEnv
|
|
from gym.envs.robotics.hand.manipulate import HandPenEnv
|
|
|
|
from gym.envs.robotics.hand.manipulate_touch_sensors import HandBlockTouchSensorsEnv
|
|
from gym.envs.robotics.hand.manipulate_touch_sensors import HandEggTouchSensorsEnv
|
|
from gym.envs.robotics.hand.manipulate_touch_sensors import HandPenTouchSensorsEnv
|