Skip to content
/ yumi-gym Public

gym env for collaborative robot yumi with pybullet

License

Notifications You must be signed in to change notification settings

0aqz0/yumi-gym

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yumi-gym

gym env for collaborative robot yumi with pybullet

yumi

features

  • collision detection for links
  • custom reward function
  • sliders to tune joint angles
  • synthetic camera rendering

Installation

$ git clone git@github.com:0aqz0/yumi-gym.git
$ cd yumi-gym
$ pip install -e .

Usage

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)

References

About

gym env for collaborative robot yumi with pybullet

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages