Skip to content

This is the open-ai-gym environment for controlling two link arm

License

Notifications You must be signed in to change notification settings

gyuta/gym-twolinkarm-env

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gym-twolinkarm-env

readme

Installation

pip install gym-twolinkarm-env

Usage example

# coding: utf-8
import gym
import gym_twolinkarm_env

env = gym.make("TwoLinkArmEnv-v0")

for ep in range(10):
    env.reset()
    for step in range(200):
        action = env.action_space.sample()
        obs, rew, done, info = env.step(action)
        env.render()

About

This is the open-ai-gym environment for controlling two link arm

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published