gym env for collaborative robot yumi with pybullet
features
- collision detection for links
- custom reward function
- sliders to tune joint angles
- synthetic camera rendering
$ git clone [email protected]:0aqz0/yumi-gym.git
$ cd yumi-gym
$ pip install -e .
import gym, yumi_gym
env = gym.make('yumi-v0')
env.render()
observation = env.reset()
while True:
env.render()
action = env.action_space.sample()
observation, reward, done, info = env.step(action)