fancy_gym/alr_envs/alr/mujoco/hopper_jump/hopper_jump.py

321 lines
13 KiB
Python
Raw Normal View History

2022-06-30 17:33:05 +02:00
from typing import Optional
2022-04-13 17:28:25 +02:00
from gym.envs.mujoco.hopper_v3 import HopperEnv
import numpy as np
2022-05-29 11:58:01 +02:00
import os
2022-04-13 17:28:25 +02:00
MAX_EPISODE_STEPS_HOPPERJUMP = 250
class ALRHopperJumpEnv(HopperEnv):
"""
Initialization changes to normal Hopper:
2022-06-30 17:33:05 +02:00
- terminate_when_unhealthy: True -> False
2022-04-13 17:28:25 +02:00
- healthy_z_range: (0.7, float('inf')) -> (0.5, float('inf'))
2022-06-30 17:33:05 +02:00
- healthy_angle_range: (-0.2, 0.2) -> (-float('inf'), float('inf'))
- exclude_current_positions_from_observation: True -> False
2022-04-13 17:28:25 +02:00
"""
def __init__(
self,
xml_file='hopper_jump.xml',
forward_reward_weight=1.0,
ctrl_cost_weight=1e-3,
2022-06-30 17:33:05 +02:00
healthy_reward=1.0,
penalty=0.0,
terminate_when_unhealthy=False,
healthy_state_range=(-100.0, 100.0),
healthy_z_range=(0.5, float('inf')),
healthy_angle_range=(-float('inf'), float('inf')),
reset_noise_scale=5e-3,
exclude_current_positions_from_observation=False,
2022-06-30 17:33:05 +02:00
):
2022-06-30 17:33:05 +02:00
self._steps = 0
2022-04-13 17:28:25 +02:00
self.max_height = 0
2022-06-30 17:33:05 +02:00
# self.penalty = penalty
2022-04-13 17:28:25 +02:00
self.goal = 0
2022-06-30 17:33:05 +02:00
2022-05-29 11:58:01 +02:00
self._floor_geom_id = None
self._foot_geom_id = None
2022-06-30 17:33:05 +02:00
2022-05-29 11:58:01 +02:00
self.contact_with_floor = False
self.init_floor_contact = False
self.has_left_floor = False
self.contact_dist = None
2022-06-30 17:33:05 +02:00
2022-05-29 11:58:01 +02:00
xml_file = os.path.join(os.path.dirname(__file__), "assets", xml_file)
2022-04-13 17:28:25 +02:00
super().__init__(xml_file, forward_reward_weight, ctrl_cost_weight, healthy_reward, terminate_when_unhealthy,
healthy_state_range, healthy_z_range, healthy_angle_range, reset_noise_scale,
exclude_current_positions_from_observation)
def step(self, action):
2022-06-30 17:33:05 +02:00
self._steps += 1
self._floor_geom_id = self.model.geom_name2id('floor')
self._foot_geom_id = self.model.geom_name2id('foot_geom')
2022-04-13 17:28:25 +02:00
self.do_simulation(action, self.frame_skip)
2022-06-30 17:33:05 +02:00
2022-04-13 17:28:25 +02:00
height_after = self.get_body_com("torso")[2]
2022-06-30 17:33:05 +02:00
site_pos_after = self.data.get_site_xpos('foot_site')
2022-04-13 17:28:25 +02:00
self.max_height = max(height_after, self.max_height)
2022-06-30 17:33:05 +02:00
has_floor_contact = self._is_floor_foot_contact() if not self.contact_with_floor else False
if not self.init_floor_contact:
self.init_floor_contact = has_floor_contact
if self.init_floor_contact and not self.has_left_floor:
self.has_left_floor = not has_floor_contact
if not self.contact_with_floor and self.has_left_floor:
self.contact_with_floor = has_floor_contact
2022-04-13 17:28:25 +02:00
ctrl_cost = self.control_cost(action)
costs = ctrl_cost
done = False
2022-06-30 17:33:05 +02:00
goal_dist = np.linalg.norm(site_pos_after - np.array([self.goal, 0, 0]))
if self.contact_dist is None and self.contact_with_floor:
self.contact_dist = goal_dist
2022-05-29 11:58:01 +02:00
rewards = 0
2022-06-30 17:33:05 +02:00
if self._steps >= MAX_EPISODE_STEPS_HOPPERJUMP:
# healthy_reward = 0 if self.context else self.healthy_reward * self._steps
healthy_reward = self.healthy_reward * 2 # * self._steps
contact_dist = self.contact_dist if self.contact_dist is not None else 5
dist_reward = self._forward_reward_weight * (-3 * goal_dist + 10 * self.max_height - 2 * contact_dist)
rewards = dist_reward + healthy_reward
2022-04-13 17:28:25 +02:00
observation = self._get_obs()
reward = rewards - costs
2022-06-30 17:33:05 +02:00
info = dict(
height=height_after,
x_pos=site_pos_after,
max_height=self.max_height,
goal=self.goal,
goal_dist=goal_dist,
height_rew=self.max_height,
healthy_reward=self.healthy_reward * 2,
healthy=self.is_healthy,
contact_dist=self.contact_dist if self.contact_dist is not None else 0
)
2022-04-13 17:28:25 +02:00
return observation, reward, done, info
def _get_obs(self):
return np.append(super()._get_obs(), self.goal)
2022-06-30 17:33:05 +02:00
def reset(self, *, seed: Optional[int] = None, return_info: bool = False, options: Optional[dict] = None, ):
self.goal = self.np_random.uniform(1.4, 2.16, 1)[0] # 1.3 2.3
2022-04-13 17:28:25 +02:00
self.max_height = 0
2022-06-30 17:33:05 +02:00
self._steps = 0
2022-04-13 17:28:25 +02:00
return super().reset()
# overwrite reset_model to make it deterministic
def reset_model(self):
qpos = self.init_qpos # + self.np_random.uniform(low=noise_low, high=noise_high, size=self.model.nq)
qvel = self.init_qvel # + self.np_random.uniform(low=noise_low, high=noise_high, size=self.model.nv)
2022-04-13 17:28:25 +02:00
self.set_state(qpos, qvel)
observation = self._get_obs()
2022-05-29 11:58:01 +02:00
self.has_left_floor = False
self.contact_with_floor = False
self.init_floor_contact = False
self.contact_dist = None
return observation
2022-06-30 17:33:05 +02:00
def _is_floor_foot_contact(self):
floor_geom_id = self.model.geom_name2id('floor')
foot_geom_id = self.model.geom_name2id('foot_geom')
for i in range(self.data.ncon):
contact = self.data.contact[i]
collision = contact.geom1 == floor_geom_id and contact.geom2 == foot_geom_id
collision_trans = contact.geom1 == foot_geom_id and contact.geom2 == floor_geom_id
2022-05-29 11:58:01 +02:00
if collision or collision_trans:
return True
return False
class ALRHopperXYJumpEnv(ALRHopperJumpEnv):
def step(self, action):
self._floor_geom_id = self.model.geom_name2id('floor')
self._foot_geom_id = self.model.geom_name2id('foot_geom')
2022-06-30 17:33:05 +02:00
self._steps += 1
2022-05-29 11:58:01 +02:00
self.do_simulation(action, self.frame_skip)
height_after = self.get_body_com("torso")[2]
site_pos_after = self.sim.data.site_xpos[self.model.site_name2id('foot_site')].copy()
self.max_height = max(height_after, self.max_height)
# floor_contact = self._contact_checker(self._floor_geom_id, self._foot_geom_id) if not self.contact_with_floor else False
# self.init_floor_contact = floor_contact if not self.init_floor_contact else self.init_floor_contact
# self.has_left_floor = not floor_contact if self.init_floor_contact and not self.has_left_floor else self.has_left_floor
# self.contact_with_floor = floor_contact if not self.contact_with_floor and self.has_left_floor else self.contact_with_floor
2022-06-30 17:33:05 +02:00
floor_contact = self._is_floor_foot_contact(self._floor_geom_id,
self._foot_geom_id) if not self.contact_with_floor else False
2022-05-29 11:58:01 +02:00
if not self.init_floor_contact:
self.init_floor_contact = floor_contact
if self.init_floor_contact and not self.has_left_floor:
self.has_left_floor = not floor_contact
if not self.contact_with_floor and self.has_left_floor:
self.contact_with_floor = floor_contact
if self.contact_dist is None and self.contact_with_floor:
self.contact_dist = np.linalg.norm(self.sim.data.site_xpos[self.model.site_name2id('foot_site')]
2022-06-05 15:11:07 +02:00
- np.array([self.goal, 0, 0]))
2022-05-29 11:58:01 +02:00
ctrl_cost = self.control_cost(action)
costs = ctrl_cost
done = False
2022-06-05 15:11:07 +02:00
goal_dist = np.linalg.norm(site_pos_after - np.array([self.goal, 0, 0]))
2022-05-29 11:58:01 +02:00
rewards = 0
2022-06-30 17:33:05 +02:00
if self._steps >= self.max_episode_steps:
# healthy_reward = 0 if self.context else self.healthy_reward * self._steps
healthy_reward = self.healthy_reward * 2 # * self._steps
2022-05-29 11:58:01 +02:00
contact_dist = self.contact_dist if self.contact_dist is not None else 5
dist_reward = self._forward_reward_weight * (-3 * goal_dist + 10 * self.max_height - 2 * contact_dist)
2022-05-29 11:58:01 +02:00
rewards = dist_reward + healthy_reward
observation = self._get_obs()
reward = rewards - costs
info = {
'height': height_after,
'x_pos': site_pos_after,
'max_height': self.max_height,
'goal': self.goal,
2022-05-31 19:41:08 +02:00
'goal_dist': goal_dist,
2022-05-29 11:58:01 +02:00
'height_rew': self.max_height,
'healthy_reward': self.healthy_reward * 2,
2022-06-21 17:15:01 +02:00
'healthy': self.is_healthy,
'contact_dist': self.contact_dist if self.contact_dist is not None else 0
2022-06-30 17:33:05 +02:00
}
2022-05-29 11:58:01 +02:00
return observation, reward, done, info
def reset_model(self):
self.init_qpos[1] = 1.5
self._floor_geom_id = self.model.geom_name2id('floor')
self._foot_geom_id = self.model.geom_name2id('foot_geom')
noise_low = -np.zeros(self.model.nq)
noise_low[3] = -0.5
noise_low[4] = -0.2
noise_low[5] = 0
noise_high = np.zeros(self.model.nq)
noise_high[3] = 0
noise_high[4] = 0
noise_high[5] = 0.785
rnd_vec = self.np_random.uniform(low=noise_low, high=noise_high, size=self.model.nq)
qpos = self.init_qpos + rnd_vec
qvel = self.init_qvel
self.set_state(qpos, qvel)
observation = self._get_obs()
self.has_left_floor = False
self.contact_with_floor = False
self.init_floor_contact = False
self.contact_dist = None
2022-04-13 17:28:25 +02:00
return observation
2022-05-29 11:58:01 +02:00
def reset(self):
super().reset()
2022-06-05 15:11:07 +02:00
self.goal = self.np_random.uniform(0.3, 1.35, 1)[0]
self.sim.model.body_pos[self.sim.model.body_name2id('goal_site_body')] = np.array([self.goal, 0, 0])
2022-05-29 11:58:01 +02:00
return self.reset_model()
2022-06-05 15:11:07 +02:00
def _get_obs(self):
goal_diff = self.sim.data.site_xpos[self.model.site_name2id('foot_site')].copy() \
- np.array([self.goal, 0, 0])
return np.concatenate((super(ALRHopperXYJumpEnv, self)._get_obs(), goal_diff))
2022-04-20 14:50:02 +02:00
2022-06-21 17:15:01 +02:00
def set_context(self, context):
# context is 4 dimensional
qpos = self.init_qpos
qvel = self.init_qvel
qpos[-3:] = context[:3]
self.goal = context[-1]
self.set_state(qpos, qvel)
self.sim.model.body_pos[self.sim.model.body_name2id('goal_site_body')] = np.array([self.goal, 0, 0])
return self._get_obs()
2022-05-31 19:41:08 +02:00
class ALRHopperXYJumpEnvStepBased(ALRHopperXYJumpEnv):
def __init__(
self,
xml_file='hopper_jump.xml',
forward_reward_weight=1.0,
ctrl_cost_weight=1e-3,
healthy_reward=0.0,
penalty=0.0,
context=True,
terminate_when_unhealthy=False,
healthy_state_range=(-100.0, 100.0),
healthy_z_range=(0.5, float('inf')),
healthy_angle_range=(-float('inf'), float('inf')),
reset_noise_scale=5e-3,
exclude_current_positions_from_observation=False,
max_episode_steps=250,
height_scale=10,
dist_scale=3,
healthy_scale=2
2022-06-30 17:33:05 +02:00
):
self.height_scale = height_scale
self.dist_scale = dist_scale
self.healthy_scale = healthy_scale
super().__init__(xml_file, forward_reward_weight, ctrl_cost_weight, healthy_reward, penalty, context,
terminate_when_unhealthy, healthy_state_range, healthy_z_range, healthy_angle_range,
reset_noise_scale, exclude_current_positions_from_observation, max_episode_steps)
2022-05-31 19:41:08 +02:00
def step(self, action):
self._floor_geom_id = self.model.geom_name2id('floor')
self._foot_geom_id = self.model.geom_name2id('foot_geom')
2022-06-30 17:33:05 +02:00
self._steps += 1
2022-05-31 19:41:08 +02:00
self.do_simulation(action, self.frame_skip)
height_after = self.get_body_com("torso")[2]
site_pos_after = self.sim.data.site_xpos[self.model.site_name2id('foot_site')].copy()
self.max_height = max(height_after, self.max_height)
ctrl_cost = self.control_cost(action)
healthy_reward = self.healthy_reward * self.healthy_scale
height_reward = self.height_scale * height_after
2022-05-31 19:41:08 +02:00
goal_dist = np.atleast_1d(np.linalg.norm(site_pos_after - np.array([self.goal, 0, 0], dtype=object)))[0]
goal_dist_reward = -self.dist_scale * goal_dist
2022-05-31 19:41:08 +02:00
dist_reward = self._forward_reward_weight * (goal_dist_reward + height_reward)
reward = -ctrl_cost + healthy_reward + dist_reward
done = False
observation = self._get_obs()
2022-06-21 17:15:01 +02:00
###########################################################
# This is only for logging the distance to goal when first having the contact
##########################################################
2022-06-30 17:33:05 +02:00
floor_contact = self._is_floor_foot_contact(self._floor_geom_id,
self._foot_geom_id) if not self.contact_with_floor else False
2022-06-21 17:15:01 +02:00
if not self.init_floor_contact:
self.init_floor_contact = floor_contact
if self.init_floor_contact and not self.has_left_floor:
self.has_left_floor = not floor_contact
if not self.contact_with_floor and self.has_left_floor:
self.contact_with_floor = floor_contact
if self.contact_dist is None and self.contact_with_floor:
self.contact_dist = np.linalg.norm(self.sim.data.site_xpos[self.model.site_name2id('foot_site')]
- np.array([self.goal, 0, 0]))
2022-05-31 19:41:08 +02:00
info = {
'height': height_after,
'x_pos': site_pos_after,
'max_height': self.max_height,
'goal': self.goal,
'goal_dist': goal_dist,
'height_rew': self.max_height,
2022-06-21 17:15:01 +02:00
'healthy_reward': self.healthy_reward * self.healthy_reward,
'healthy': self.is_healthy,
'contact_dist': self.contact_dist if self.contact_dist is not None else 0
2022-06-30 17:33:05 +02:00
}
2022-05-31 19:41:08 +02:00
return observation, reward, done, info