A OpenAI Gym Env for Rover with Arm
Project description
A OpenAI Gym Env for Rover with Arm
Project Overview - https://1drv.ms/p/s!Aswo8fN5BKr61klitElDnhZ-JARq
Task1 - Move the cart near the table and pick up the object in the tray
Reward = 1 (when the object is picked up)
(Else) If the bot gets close to the object it gets a small positive reward (say 0.001) and if it gets far it gets a negative reward (say -0.001).
Code with Sample Actions
import rover_arm
import gymnasium as gym
env = gym.make('rover-arm-pick-v0', render_mode = 'rgb_array')
observation = env.reset()
done = False
while not done:
action = env.action_space.sample()
observation, reward, terminated, truncated, info = env.step(action)
done = terminated or truncated
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.
You will have to install the dev version in local, and give keyboard access to terminal or IDE where code is being executed. To install in dev version you could do
pip install 'rover-arm[dev]'
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 Z-axis
-, + -> Open / Close the fingers of the robot arm
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
import gymnasium as gym
import rover_arm.keyboard_control as kc
env = gym.make('rover-arm-pick-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, terminated, truncated, info = env.step(action)
done = terminated or truncated
img = env.render()
# print(img.shape)
print(action, observation, reward)
print(reward, done, info)
Task2: Pick the object from the closer tray and place it on the distant tray
Use the env "rover-arm-place-v0" for task2
env = gym.make('rover-arm-place-v0')
Note: Task2 Env is not upto date, it uses gym style instead of gymnasium, so expect done instead of truncated and terminated.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rover_arm-1.1.9.tar.gz.
File metadata
- Download URL: rover_arm-1.1.9.tar.gz
- Upload date:
- Size: 2.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cee52424721d517c37e53a6a224d6d45c95e933ce42f78d93df3693e931eb54d
|
|
| MD5 |
1f7cedb156a4853d444ca6e3fcb0b46b
|
|
| BLAKE2b-256 |
979e2dc04bc2e0132120253bc16da380a960b35e40218fbdf8f0719c8eb8de46
|
File details
Details for the file rover_arm-1.1.9-py3-none-any.whl.
File metadata
- Download URL: rover_arm-1.1.9-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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dddede6a817085bd10d7ebcda4b110dbac6c41364b3064931f1643bf13d4e4ad
|
|
| MD5 |
a7769698f8b4010822f99220b64ed03d
|
|
| BLAKE2b-256 |
d59dfbfc6d85ee124a39a0c2329d7b8b2e78f89d444e7afcf07cc697d379fa3a
|