Skip to main content

A OpenAI Gym Env for Rover with Arm

Project description

A OpenAI Gym Env for Rover with Arm

Task - Move the cart near the table and pick up the object in the tray

Reward = 1 (when the object is picked up)

Reward = 0 (else)

Code with Sample Actions

import rover_arm
import gym
env = gym.make('rover-arm-v0', render_mode = 'rgb_array')

observation = env.reset()
done = False

while not done:
    action = env.action_space.sample()
    observation, reward, done, info = env.step(action)
    img = env.render()
    # print(img.shape)
    print(action, observation, reward)
    
print(reward, done, info)

You can try to explore the environment and action space by controlling the bot using Keyboard.

Keyboard Controls

Rover Up, Down, Left, Right Arrows to steer the Rover.

Arm A, D - Move the end-effector in X-axis W, S - Move the end-effector in Y-axis Q, E - Move the end-effector in Y-axis

Note: W, S are also hot keys to adjust view in pybullet env (so ignore the changes or press again to undo the change.)

Code to control the bot using keyboard in human mode (needs to be run in local)

import rover_arm.keyboard_control as kc

import rover_arm
import gym
env = gym.make('rover-arm-v0', render_mode = 'human')

keyboard_controller = kc.KeyboardAction()
keyboard_controller.start_listening()

observation = env.reset()
done = False

while not done:
    action = keyboard_controller.action
    observation, reward, done, info = env.step(action)
    # print(action, observation, reward)
# print(reward, done, info)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rover_arm-0.0.12.tar.gz (2.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rover_arm-0.0.12-py3-none-any.whl (2.8 MB view details)

Uploaded Python 3

File details

Details for the file rover_arm-0.0.12.tar.gz.

File metadata

  • Download URL: rover_arm-0.0.12.tar.gz
  • Upload date:
  • Size: 2.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.13

File hashes

Hashes for rover_arm-0.0.12.tar.gz
Algorithm Hash digest
SHA256 ee3abfa82cdeacc852d37a32fba90e29643aabd0b22451e76ddf9594d0333565
MD5 8fd67752e777cdecb736d0e8fd304243
BLAKE2b-256 ad9f2f162349238975a0f777845764b199a83558adcb33f3f37067549d73adfa

See more details on using hashes here.

File details

Details for the file rover_arm-0.0.12-py3-none-any.whl.

File metadata

  • Download URL: rover_arm-0.0.12-py3-none-any.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.13

File hashes

Hashes for rover_arm-0.0.12-py3-none-any.whl
Algorithm Hash digest
SHA256 d1410c4413bfececfb7d2e0671095c1e4e81ab9e0b42603060f43ab3eeb48f59
MD5 ec159844adc706f73c278e2de6474da6
BLAKE2b-256 2952504dee90b9b7c1e39bc732b68880bedde1f0d64c31f8010ffcdd142f81d6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page