2022-05-24 08:47:51 -04:00
|
|
|
__credits__ = ["Rushiv Arora"]
|
|
|
|
import numpy as np
|
|
|
|
|
|
|
|
from gym import utils
|
|
|
|
from gym.envs.mujoco import mujoco_env
|
|
|
|
|
|
|
|
DEFAULT_CAMERA_CONFIG = {
|
|
|
|
"distance": 4.0,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class HalfCheetahEnv(mujoco_env.MujocoEnv, utils.EzPickle):
|
|
|
|
"""
|
|
|
|
### Description
|
|
|
|
|
2022-05-24 23:09:05 +01:00
|
|
|
This environment is based on the work by P. Wawrzyński in
|
2022-05-24 08:47:51 -04:00
|
|
|
["A Cat-Like Robot Real-Time Learning to Run"](http://staff.elka.pw.edu.pl/~pwawrzyn/pub-s/0812_LSCLRR.pdf).
|
|
|
|
The HalfCheetah is a 2-dimensional robot consisting of 9 links and 8
|
|
|
|
joints connecting them (including two paws). The goal is to apply a torque
|
|
|
|
on the joints to make the cheetah run forward (right) as fast as possible,
|
|
|
|
with a positive reward allocated based on the distance moved forward and a
|
|
|
|
negative reward allocated for moving backward. The torso and head of the
|
|
|
|
cheetah are fixed, and the torque can only be applied on the other 6 joints
|
|
|
|
over the front and back thighs (connecting to the torso), shins
|
|
|
|
(connecting to the thighs) and feet (connecting to the shins).
|
|
|
|
|
|
|
|
### 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.0, 1.0]`, where `action` represents the numerical torques applied between *links*
|
|
|
|
|
2022-05-24 23:09:05 +01:00
|
|
|
| Num | Action | Control Min | Control Max | Name (in corresponding XML file) | Joint | Unit |
|
|
|
|
|-----|-----------------------------------------|-------------|-------------|----------------------------------|-------|--------------|
|
|
|
|
| 0 | Torque applied on the back thigh rotor | -1 | 1 | bthigh | hinge | torque (N m) |
|
|
|
|
| 1 | Torque applied on the back shin rotor | -1 | 1 | bshin | hinge | torque (N m) |
|
|
|
|
| 2 | Torque applied on the back foot rotor | -1 | 1 | bfoot | hinge | torque (N m) |
|
|
|
|
| 3 | Torque applied on the front thigh rotor | -1 | 1 | fthigh | hinge | torque (N m) |
|
|
|
|
| 4 | Torque applied on the front shin rotor | -1 | 1 | fshin | hinge | torque (N m) |
|
|
|
|
| 5 | Torque applied on the front foot rotor | -1 | 1 | ffoot | hinge | torque (N m) |
|
2022-05-24 08:47:51 -04:00
|
|
|
|
|
|
|
### Observation Space
|
|
|
|
|
|
|
|
The state space consists of positional values of different body parts of the
|
|
|
|
cheetah, 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:
|
|
|
|
|
2022-05-24 23:09:05 +01:00
|
|
|
| Num | Observation | Min | Max | Name (in corresponding XML file) | Joint | Unit |
|
2022-06-02 13:01:21 +01:00
|
|
|
|-----|--------------------------------------|------|-----|----------------------------------|-------|--------------------------|
|
2022-05-24 23:09:05 +01:00
|
|
|
| 0 | x-coordinate of the center of mass | -Inf | Inf | rootx | slide | position (m) |
|
|
|
|
| 1 | y-coordinate of the center of mass | -Inf | Inf | rootz | slide | position (m) |
|
|
|
|
| 2 | angle of the front tip | -Inf | Inf | rooty | hinge | angle (rad) |
|
|
|
|
| 3 | angle of the back thigh rotor | -Inf | Inf | bthigh | hinge | angle (rad) |
|
|
|
|
| 4 | angle of the back shin rotor | -Inf | Inf | bshin | hinge | angle (rad) |
|
|
|
|
| 5 | angle of the back foot rotor | -Inf | Inf | bfoot | hinge | angle (rad) |
|
|
|
|
| 6 | velocity of the tip along the y-axis | -Inf | Inf | fthigh | hinge | angle (rad) |
|
|
|
|
| 7 | angular velocity of front tip | -Inf | Inf | fshin | hinge | angle (rad) |
|
|
|
|
| 8 | angular velocity of second rotor | -Inf | Inf | ffoot | hinge | angle (rad) |
|
|
|
|
| 9 | x-coordinate of the front tip | -Inf | Inf | rootx | slide | velocity (m/s) |
|
|
|
|
| 10 | y-coordinate of the front tip | -Inf | Inf | rootz | slide | velocity (m/s) |
|
|
|
|
| 11 | angle of the front tip | -Inf | Inf | rooty | hinge | angular velocity (rad/s) |
|
|
|
|
| 12 | angle of the second rotor | -Inf | Inf | bthigh | hinge | angular velocity (rad/s) |
|
|
|
|
| 13 | angle of the second rotor | -Inf | Inf | bshin | hinge | angular velocity (rad/s) |
|
|
|
|
| 14 | velocity of the tip along the x-axis | -Inf | Inf | bfoot | hinge | angular velocity (rad/s) |
|
2022-06-02 13:01:21 +01:00
|
|
|
| 15 | velocity of the tip along the y-axis | -Inf | Inf | fthigh | hinge | angular velocity (rad/s) |
|
2022-05-24 23:09:05 +01:00
|
|
|
| 16 | angular velocity of front tip | -Inf | Inf | fshin | hinge | angular velocity (rad/s) |
|
|
|
|
| 17 | angular velocity of second rotor | -Inf | Inf | ffoot | hinge | angular velocity (rad/s) |
|
2022-05-24 08:47:51 -04:00
|
|
|
|
|
|
|
|
|
|
|
**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 `(8,)` and looks like:
|
|
|
|
|
2022-05-24 23:09:05 +01:00
|
|
|
| Num | Observation | Min | Max | Name (in corresponding XML file) | Joint | Unit |
|
|
|
|
|-----|--------------------------------------|------|-----|----------------------------------|-------|--------------------------|
|
|
|
|
| 0 | y-coordinate of the front tip | -Inf | Inf | rootz | slide | position (m) |
|
|
|
|
| 1 | angle of the front tip | -Inf | Inf | rooty | hinge | angle (rad) |
|
|
|
|
| 2 | angle of the second rotor | -Inf | Inf | bthigh | hinge | angle (rad) |
|
|
|
|
| 3 | angle of the second rotor | -Inf | Inf | bshin | hinge | angle (rad) |
|
|
|
|
| 4 | velocity of the tip along the x-axis | -Inf | Inf | bfoot | hinge | angle (rad) |
|
|
|
|
| 5 | velocity of the tip along the y-axis | -Inf | Inf | fthigh | hinge | angle (rad) |
|
|
|
|
| 6 | angular velocity of front tip | -Inf | Inf | fshin | hinge | angle (rad) |
|
|
|
|
| 7 | angular velocity of second rotor | -Inf | Inf | ffoot | hinge | angle (rad) |
|
|
|
|
| 8 | x-coordinate of the front tip | -Inf | Inf | rootx | slide | velocity (m/s) |
|
|
|
|
| 9 | y-coordinate of the front tip | -Inf | Inf | rootz | slide | velocity (m/s) |
|
|
|
|
| 10 | angle of the front tip | -Inf | Inf | rooty | hinge | angular velocity (rad/s) |
|
|
|
|
| 11 | angle of the second rotor | -Inf | Inf | bthigh | hinge | angular velocity (rad/s) |
|
|
|
|
| 12 | angle of the second rotor | -Inf | Inf | bshin | hinge | angular velocity (rad/s) |
|
|
|
|
| 13 | velocity of the tip along the x-axis | -Inf | Inf | bfoot | hinge | angular velocity (rad/s) |
|
|
|
|
| 14 | velocity of the tip along the y-axis | -Inf | Inf | fthigh | hinge |angular velocity (rad/s) |
|
|
|
|
| 15 | angular velocity of front tip | -Inf | Inf | fshin | hinge | angular velocity (rad/s) |
|
|
|
|
| 16 | angular velocity of second rotor | -Inf | Inf | ffoot | hinge | angular velocity (rad/s) |
|
2022-05-24 08:47:51 -04:00
|
|
|
|
|
|
|
### Rewards
|
|
|
|
The reward consists of two parts:
|
|
|
|
- *reward_run*: A reward of moving forward which is measured
|
|
|
|
as *(x-coordinate before action - x-coordinate after action)/dt*. *dt* is
|
2022-05-24 23:09:05 +01:00
|
|
|
the time between actions and is dependent on the frame_skip parameter
|
2022-05-24 08:47:51 -04:00
|
|
|
(default is 5), where the *dt* for one frame is 0.01 - making the
|
|
|
|
default *dt = 5*0.01 = 0.05*. This reward would be positive if the cheetah
|
|
|
|
runs forward (right) desired.
|
|
|
|
- *reward_control*: A negative reward for penalising the cheetah if it takes
|
|
|
|
actions that are too large. It is measured as *-coefficient x
|
|
|
|
sum(action<sup>2</sup>)* where *coefficient* is a parameter set for the
|
|
|
|
control and has a default value of 0.1
|
|
|
|
|
|
|
|
The total reward returned is ***reward*** *=* *reward_run + reward_control*
|
|
|
|
|
|
|
|
### Starting State
|
|
|
|
All observations start in state (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, 0.0, 0.0,) with a noise added to the
|
|
|
|
initial state for stochasticity. As seen before, the first 8 values in the
|
|
|
|
state are positional and the last 9 values are velocity. A uniform noise in
|
|
|
|
the range of [-0.1, 0.1] is added to the positional values while a standard
|
|
|
|
normal noise with a mean of 0 and standard deviation of 0.1 is added to the
|
|
|
|
initial velocity values of all zeros.
|
|
|
|
|
|
|
|
### Episode Termination
|
|
|
|
The episode terminates when the episode length is greater than 1000.
|
|
|
|
|
|
|
|
### Arguments
|
|
|
|
|
|
|
|
No additional arguments are currently supported (in v2 and lower), but
|
|
|
|
modifications can be made to the XML file in the assets folder at
|
|
|
|
`gym/envs/mujoco/assets/half_cheetah.xml` (or by changing the path to a
|
|
|
|
modified XML file in another folder).
|
|
|
|
|
|
|
|
```
|
|
|
|
env = gym.make('HalfCheetah-v2')
|
|
|
|
```
|
|
|
|
|
2022-05-24 23:09:05 +01:00
|
|
|
v3 and v4 take gym.make kwargs such as xml_file, ctrl_cost_weight, reset_noise_scale etc.
|
2022-05-24 08:47:51 -04:00
|
|
|
|
|
|
|
```
|
2022-05-24 23:09:05 +01:00
|
|
|
env = gym.make('HalfCheetah-v4', ctrl_cost_weight=0.1, ....)
|
2022-05-24 08:47:51 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
### Version History
|
|
|
|
|
2022-05-24 23:09:05 +01:00
|
|
|
* v4: all mujoco environments now use the mujoco bindings in mujoco>=2.1.3
|
2022-05-24 08:47:51 -04:00
|
|
|
* 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)
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
xml_file="half_cheetah.xml",
|
|
|
|
forward_reward_weight=1.0,
|
|
|
|
ctrl_cost_weight=0.1,
|
|
|
|
reset_noise_scale=0.1,
|
|
|
|
exclude_current_positions_from_observation=True,
|
|
|
|
):
|
|
|
|
utils.EzPickle.__init__(**locals())
|
|
|
|
|
|
|
|
self._forward_reward_weight = forward_reward_weight
|
|
|
|
|
|
|
|
self._ctrl_cost_weight = ctrl_cost_weight
|
|
|
|
|
|
|
|
self._reset_noise_scale = reset_noise_scale
|
|
|
|
|
|
|
|
self._exclude_current_positions_from_observation = (
|
|
|
|
exclude_current_positions_from_observation
|
|
|
|
)
|
|
|
|
|
|
|
|
mujoco_env.MujocoEnv.__init__(self, xml_file, 5)
|
|
|
|
|
|
|
|
def control_cost(self, action):
|
|
|
|
control_cost = self._ctrl_cost_weight * np.sum(np.square(action))
|
|
|
|
return control_cost
|
|
|
|
|
|
|
|
def step(self, action):
|
|
|
|
x_position_before = self.data.qpos[0]
|
|
|
|
self.do_simulation(action, self.frame_skip)
|
|
|
|
x_position_after = self.data.qpos[0]
|
|
|
|
x_velocity = (x_position_after - x_position_before) / self.dt
|
|
|
|
|
|
|
|
ctrl_cost = self.control_cost(action)
|
|
|
|
|
|
|
|
forward_reward = self._forward_reward_weight * x_velocity
|
|
|
|
|
|
|
|
observation = self._get_obs()
|
|
|
|
reward = forward_reward - ctrl_cost
|
|
|
|
done = False
|
|
|
|
info = {
|
|
|
|
"x_position": x_position_after,
|
|
|
|
"x_velocity": x_velocity,
|
|
|
|
"reward_run": forward_reward,
|
|
|
|
"reward_ctrl": -ctrl_cost,
|
|
|
|
}
|
|
|
|
|
|
|
|
return observation, reward, done, info
|
|
|
|
|
|
|
|
def _get_obs(self):
|
|
|
|
position = self.data.qpos.flat.copy()
|
|
|
|
velocity = self.data.qvel.flat.copy()
|
|
|
|
|
|
|
|
if self._exclude_current_positions_from_observation:
|
|
|
|
position = position[1:]
|
|
|
|
|
|
|
|
observation = np.concatenate((position, velocity)).ravel()
|
|
|
|
return observation
|
|
|
|
|
|
|
|
def reset_model(self):
|
|
|
|
noise_low = -self._reset_noise_scale
|
|
|
|
noise_high = self._reset_noise_scale
|
|
|
|
|
|
|
|
qpos = self.init_qpos + self.np_random.uniform(
|
|
|
|
low=noise_low, high=noise_high, size=self.model.nq
|
|
|
|
)
|
|
|
|
qvel = (
|
|
|
|
self.init_qvel
|
|
|
|
+ self._reset_noise_scale * self.np_random.standard_normal(self.model.nv)
|
|
|
|
)
|
|
|
|
|
|
|
|
self.set_state(qpos, qvel)
|
|
|
|
|
|
|
|
observation = self._get_obs()
|
|
|
|
return observation
|
|
|
|
|
|
|
|
def viewer_setup(self):
|
|
|
|
for key, value in DEFAULT_CAMERA_CONFIG.items():
|
|
|
|
if isinstance(value, np.ndarray):
|
|
|
|
getattr(self.viewer.cam, key)[:] = value
|
|
|
|
else:
|
|
|
|
setattr(self.viewer.cam, key, value)
|