Walker2D#

This environment is part of the Mujoco environments. Please read that page first for general information.
Action Space |
Box(-1.0, 1.0, (6,), float32) |
Observation Shape |
(17,) |
Observation High |
[inf inf inf inf inf inf inf inf inf inf inf inf inf inf inf inf inf] |
Observation Low |
[-inf -inf -inf -inf -inf -inf -inf -inf -inf -inf -inf -inf -inf -inf -inf -inf -inf] |
Import |
|
Description#
This environment builds on the hopper environment based on the work done by Erez, Tassa, and Todorov in “Infinite Horizon Model Predictive Control for Nonlinear Periodic Tasks” by adding another set of legs making it possible for the robot to walker forward instead of hop. Like other Mujoco environments, this environment aims to increase the number of independent state and control variables as compared to the classic control environments. The walker is a two-dimensional two-legged figure that consist of four main body parts - a single torso at the top (with the two legs splitting after the torso), two thighs in the middle below the torso, two legs in the bottom below the thighs, and two feet attached to the legs on which the entire body rests. The goal is to make coordinate both sets of feet, legs, and thighs to move in the forward (right) direction by applying torques on the six hinges connecting the six body parts.
Action Space#
The agent take a 6-element vector for actions. The action space is a continuous (action, action, action, action, action, action)
all in [-1, 1]
, where action
represents the numerical torques applied at the hinge joints.
Num |
Action |
Control Min |
Control Max |
Name (in corresponding XML file) |
Joint |
Unit |
---|---|---|---|---|---|---|
0 |
Torque applied on the thigh rotor |
-1 |
1 |
thigh_joint |
hinge |
torque (N m) |
1 |
Torque applied on the leg rotor |
-1 |
1 |
leg_joint |
hinge |
torque (N m) |
2 |
Torque applied on the foot rotor |
-1 |
1 |
foot_joint |
hinge |
torque (N m) |
3 |
Torque applied on the left thigh rotor |
-1 |
1 |
thigh_left_joint |
hinge |
torque (N m) |
4 |
Torque applied on the left leg rotor |
-1 |
1 |
leg_left_joint |
hinge |
torque (N m) |
5 |
Torque applied on the left foot rotor |
-1 |
1 |
foot_left_joint |
hinge |
torque (N m) |
Observation Space#
The state space consists of positional values of different body parts of the walker, followed by the velocities of those individual parts (their derivatives) with all the positions ordered before all the velocities.
The observation is a ndarray
with shape (17,)
where the elements correspond to the following:
Num |
Observation |
Min |
Max |
Name (in corresponding XML file) |
Joint |
Unit |
---|---|---|---|---|---|---|
0 |
x-coordinate of the top |
-Inf |
Inf |
rootx (torso) |
slide |
position (m) |
1 |
z-coordinate of the top (height of hopper) |
-Inf |
Inf |
rootz (torso) |
slide |
position (m) |
2 |
angle of the top |
-Inf |
Inf |
rooty (torso) |
hinge |
angle (rad) |
3 |
angle of the thigh joint |
-Inf |
Inf |
thigh_joint |
hinge |
angle (rad) |
4 |
angle of the leg joint |
-Inf |
Inf |
leg_joint |
hinge |
angle (rad) |
5 |
angle of the foot joint |
-Inf |
Inf |
foot_joint |
hinge |
angle (rad) |
6 |
angle of the left thigh joint |
-Inf |
Inf |
thigh_left_joint |
hinge |
angle (rad) |
7 |
angle of the left leg joint |
-Inf |
Inf |
leg_left_joint |
hinge |
angle (rad) |
8 |
angle of the left foot joint |
-Inf |
Inf |
foot_left_joint |
hinge |
angle (rad) |
9 |
velocity of the x-coordinate of the top |
-Inf |
Inf |
rootx |
slide |
velocity (m/s) |
10 |
velocity of the z-coordinate (height) of the top |
-Inf |
Inf |
rootz |
slide |
velocity (m/s) |
11 |
angular velocity of the angle of the top |
-Inf |
Inf |
rooty |
hinge |
angular velocity (rad/s) |
12 |
angular velocity of the thigh hinge |
-Inf |
Inf |
thigh_joint |
hinge |
angular velocity (rad/s) |
13 |
angular velocity of the leg hinge |
-Inf |
Inf |
leg_joint |
hinge |
angular velocity (rad/s) |
14 |
angular velocity of the foot hinge |
-Inf |
Inf |
foot_joint |
hinge |
angular velocity (rad/s) |
15 |
angular velocity of the thigh hinge |
-Inf |
Inf |
thigh_left_joint |
hinge |
angular velocity (rad/s) |
16 |
angular velocity of the leg hinge |
-Inf |
Inf |
leg_left_joint |
hinge |
angular velocity (rad/s) |
17 |
angular velocity of the foot hinge |
-Inf |
Inf |
foot_left_joint |
hinge |
angular velocity (rad/s) |
Note: In practice (and Gym implementation), the first positional element is omitted from the state space since the reward function is calculated based on that value. This value is hidden from the algorithm, which in turn has to develop an abstract understanding of it from the observed rewards. Therefore, observation space has shape (17,)
instead of (18,)
and looks like:
Num |
Observation |
Min |
Max |
Name (in corresponding XML file) |
Joint |
Unit |
---|---|---|---|---|---|---|
0 |
z-coordinate of the top (height of hopper) |
-Inf |
Inf |
rootz (torso) |
slide |
position (m) |
1 |
angle of the top |
-Inf |
Inf |
rooty (torso) |
hinge |
angle (rad) |
2 |
angle of the thigh joint |
-Inf |
Inf |
thigh_joint |
hinge |
angle (rad) |
3 |
angle of the leg joint |
-Inf |
Inf |
leg_joint |
hinge |
angle (rad) |
4 |
angle of the foot joint |
-Inf |
Inf |
foot_joint |
hinge |
angle (rad) |
5 |
angle of the left thigh joint |
-Inf |
Inf |
thigh_left_joint |
hinge |
angle (rad) |
6 |
angle of the left leg joint |
-Inf |
Inf |
leg_left_joint |
hinge |
angle (rad) |
7 |
angle of the left foot joint |
-Inf |
Inf |
foot_left_joint |
hinge |
angle (rad) |
8 |
velocity of the x-coordinate of the top |
-Inf |
Inf |
rootx |
slide |
velocity (m/s) |
9 |
velocity of the z-coordinate (height) of the top |
-Inf |
Inf |
rootz |
slide |
velocity (m/s) |
10 |
angular velocity of the angle of the top |
-Inf |
Inf |
rooty |
hinge |
angular velocity (rad/s) |
11 |
angular velocity of the thigh hinge |
-Inf |
Inf |
thigh_joint |
hinge |
angular velocity (rad/s) |
12 |
angular velocity of the leg hinge |
-Inf |
Inf |
leg_joint |
hinge |
angular velocity (rad/s) |
13 |
angular velocity of the foot hinge |
-Inf |
Inf |
foot_joint |
hinge |
angular velocity (rad/s) |
14 |
angular velocity of the thigh hinge |
-Inf |
Inf |
thigh_left_joint |
hinge |
angular velocity (rad/s) |
15 |
angular velocity of the leg hinge |
-Inf |
Inf |
leg_left_joint |
hinge |
angular velocity (rad/s) |
16 |
angular velocity of the foot hinge |
-Inf |
Inf |
foot_left_joint |
hinge |
angular velocity (rad/s) |
Rewards#
The reward consists of three parts:
-
alive bonus: Every timestep that the walker is alive, it gets a reward of 1,
-
reward_forward: A reward of walking forward which is measured as (x-coordinate before action - x-coordinate after action)/dt. dt is the time between actions and is dependent on the frame_skip parameter (default is 4), where the dt for one frame is 0.002 - making the default dt = 4 * 0.002 = 0.008. This reward would be positive if the walker walks forward (right) desired.
-
reward_control: A negative reward for penalising the walker if it takes actions that are too large. It is measured as -coefficient x sum(action2) where coefficient is a parameter set for the control and has a default value of 0.001
The total reward returned is reward = alive bonus + reward_forward + reward_control
Starting State#
All observations start in state (0.0, 1.25, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0) with a uniform noise in the range of [-0.005, 0.005] added to the values for stochasticity.
Episode Termination#
The episode terminates when any of the following happens:
-
The episode duration reaches a 1000 timesteps
-
Any of the state space values is no longer finite
-
The height of the walker (index 1) is not in the range
[0.8, 2]
-
The absolute value of the angle (index 2) is not in the range
[-1, 1]
Arguments#
No additional arguments are currently supported (in v2 and lower), but modifications can be made to the XML file in the assets folder (or by changing the path to a modified XML file in another folder)..
env = gym.make('Walker2d-v2')
v3 and v4 take gym.make kwargs such as xml_file, ctrl_cost_weight, reset_noise_scale etc.
env = gym.make('Walker2d-v4', ctrl_cost_weight=0.1, ....)
Version History#
-
v4: all mujoco environments now use the mujoco bindings in mujoco>=2.1.3
-
v3: support for gym.make kwargs such as xml_file, ctrl_cost_weight, reset_noise_scale etc. rgb rendering comes from tracking camera (so agent does not run away from screen)
-
v2: All continuous control environments now use mujoco_py >= 1.50
-
v1: max_time_steps raised to 1000 for robot based tasks. Added reward_threshold to environments.
-
v0: Initial versions release (1.0.0)