forked from Farama-Foundation/Metaworld
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
7 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
layout: "contents" | ||
title: Action Space | ||
firstpage: | ||
--- | ||
|
||
# Action Space | ||
|
||
The action space of the Sawyer robot is a ```Box(-1.0, 1.0, (4,), float32)```. | ||
An action represents the Cartesian displacement dx, dy, and dz of the end effector, and an additional action for gripper control. | ||
|
||
| Num | Action | Control Min | Control Max | Name (in XML file) | Joint | Unit | | ||
|-----|--------|-------------|-------------|---------------------|-------|------| | ||
| 0 | Displacement of the end effector in x direction (dx) | -1 | 1 | mocap | N/A | position (m) | | ||
| 1 | Displacement of the end effector in y direction (dy) | -1 | 1 | mocap | N/A | position (m) | | ||
| 2 | Displacement of the end effector in z direction (dz) | -1 | 1 | mocap | N/A | position (m) | | ||
| 3 | Gripper adjustment (closing/opening) | -1 | 1 | rightclaw, leftclaw | r_close, l_close | position (normalized) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
layout: "contents" | ||
title: Benchmark Descriptions | ||
firstpage: | ||
--- | ||
|
||
# Benchmark Descriptions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
layout: "contents" | ||
title: TBA | ||
firstpage: | ||
--- | ||
|
||
# TBA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
layout: "contents" | ||
title: Multi and Meta RL Task Descriptions | ||
firstpage: | ||
--- | ||
|
||
# Multi and Meta RL Task Descriptions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
layout: "contents" | ||
title: Reward Functions | ||
firstpage: | ||
--- | ||
|
||
# Reward Functions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
layout: "contents" | ||
title: State Space | ||
firstpage: | ||
--- | ||
|
||
# State Space | ||
|
||
The observation array consists of the gripper's (end effector's) position and state, alongside the object of interest's position and orientation. This table will detail each component usually present in such environments: | ||
|
||
| Num | Observation Description | Min | Max | Site Name (XML) | Joint Name (XML) | Joint Type | Unit | | ||
|-----|-----------------------------------------------|---------|---------|------------------------|-------------------|------------|-------------| | ||
| 0 | End effector x position in global coordinates | -Inf | Inf | hand | - | - | position (m)| | ||
| 1 | End effector y position in global coordinates | -Inf | Inf | hand | - | - | position (m)| | ||
| 2 | End effector z position in global coordinates | -Inf | Inf | hand | - | - | position (m)| | ||
| 3 | Gripper distance apart | 0.0 | 1.0 | - | - | - | dimensionless| | ||
| 4 | Object x position in global coordinates | -Inf | Inf | objGeom (derived) | - | - | position (m)| | ||
| 5 | Object y position in global coordinates | -Inf | Inf | objGeom (derived) | - | - | position (m)| | ||
| 6 | Object z position in global coordinates | -Inf | Inf | objGeom (derived) | - | - | position (m)| | ||
| 7 | Object x quaternion component in global coordinates | -Inf | Inf | objGeom (derived) | - | - | quaternion | | ||
| 8 | Object y quaternion component in global coordinates | -Inf | Inf | objGeom (derived) | - | - | quaternion | | ||
| 9 | Object z quaternion component in global coordinates | -Inf | Inf | objGeom (derived) | - | - | quaternion | | ||
| 10 | Object w quaternion component in global coordinates | -Inf | Inf | objGeom (derived) | - | - | quaternion | | ||
| 11 | Previous end effector x position | -Inf | Inf | hand | - | - | position (m)| | ||
| 12 | Previous end effector y position | -Inf | Inf | hand | - | - | position (m)| | ||
| 13 | Previous end effector z position | -Inf | Inf | hand | - | - | position (m)| | ||
| 14 | Previous gripper distance apart | 0.0 | 1.0 | - | - | - | dimensionless| | ||
| 15 | Previous object x position in global coordinates | -Inf | Inf | objGeom (derived) | - | - | position (m)| | ||
| 16 | Previous object y position in global coordinates | -Inf | Inf | objGeom (derived) | - | - | position (m)| | ||
| 17 | Previous object z position in global coordinates | -Inf | Inf | objGeom (derived) | - | - | position (m)| | ||
| 18 | Previous object x quaternion component in global coordinates | -Inf | Inf | objGeom (derived) | - | - | quaternion | | ||
| 19 | Previous object y quaternion component in global coordinates | -Inf | Inf | objGeom (derived) | - | - | quaternion | | ||
| 20 | Previous object z quaternion component in global coordinates | -Inf | Inf | objGeom (derived) | - | - | quaternion | | ||
| 21 | Previous object w quaternion component in global coordinates | -Inf | Inf | objGeom (derived) | - | - | quaternion | | ||
| 22 | Goal x position | -Inf | Inf | goal (derived) | - | - | position (m)| | ||
| 23 | Goal y position | -Inf | Inf | goal (derived) | - | - | position (m)| | ||
| 24 | Goal z position | -Inf | Inf | goal (derived) | - | - | position (m)| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters