Skip to content
Snippets Groups Projects
Commit c928734f authored by Oleksandr Maksymets's avatar Oleksandr Maksymets
Browse files

Fixed for sensors test

parent 4d7d8b32
No related branches found
No related tags found
No related merge requests found
...@@ -288,14 +288,6 @@ class HabitatSim(Simulator): ...@@ -288,14 +288,6 @@ class HabitatSim(Simulator):
position_b[0], np.ndarray position_b[0], np.ndarray
): ):
path.requested_ends = np.array(position_b, dtype=np.float32) path.requested_ends = np.array(position_b, dtype=np.float32)
# TODO(erikwijmans) Remove next line as soon as multi goal shortest
# path passes the tests.
return np.min(
[
self.geodesic_distance(position_a, position)
for position in position_b
]
)
else: else:
path.requested_ends = np.array( path.requested_ends = np.array(
[np.array(position_b, dtype=np.float32)] [np.array(position_b, dtype=np.float32)]
......
...@@ -272,7 +272,7 @@ class HeadingSensor(Sensor): ...@@ -272,7 +272,7 @@ class HeadingSensor(Sensor):
heading_vector = quaternion_rotate_vector(quat, direction_vector) heading_vector = quaternion_rotate_vector(quat, direction_vector)
phi = cartesian_to_polar(-heading_vector[2], heading_vector[0])[1] phi = cartesian_to_polar(-heading_vector[2], heading_vector[0])[1]
return np.array(phi) return np.array([phi], dtype=np.float32)
def get_observation( def get_observation(
self, observations, episode, *args: Any, **kwargs: Any self, observations, episode, *args: Any, **kwargs: Any
...@@ -299,13 +299,8 @@ class EpisodicCompassSensor(HeadingSensor): ...@@ -299,13 +299,8 @@ class EpisodicCompassSensor(HeadingSensor):
rotation_world_agent = agent_state.rotation rotation_world_agent = agent_state.rotation
rotation_world_start = quaternion_from_coeff(episode.start_rotation) rotation_world_start = quaternion_from_coeff(episode.start_rotation)
return np.array( return self._quat_to_xy_heading(
[ rotation_world_agent.inverse() * rotation_world_start
self._quat_to_xy_heading(
rotation_world_agent.inverse() * rotation_world_start
)
],
dtype=np.float32,
) )
......
...@@ -241,14 +241,14 @@ def test_pointgoal_with_gps_compass_sensor(): ...@@ -241,14 +241,14 @@ def test_pointgoal_with_gps_compass_sensor():
obs = env.step(sample_non_stop_action(env.action_space)) obs = env.step(sample_non_stop_action(env.action_space))
pointgoal = obs["pointgoal"] pointgoal = obs["pointgoal"]
pointgoal_with_gps_compass = obs["pointgoal_with_gps_compass"] pointgoal_with_gps_compass = obs["pointgoal_with_gps_compass"]
comapss = obs["compass"] compass = obs["compass"]
gps = obs["gps"] gps = obs["gps"]
# check to see if taking non-stop actions will affect static point_goal # check to see if taking non-stop actions will affect static point_goal
assert np.allclose( assert np.allclose(
pointgoal_with_gps_compass, pointgoal_with_gps_compass,
quaternion_rotate_vector( quaternion_rotate_vector(
quaternion.from_rotation_vector( quaternion.from_rotation_vector(
comapss * np.array([0, 1, 0]) compass * np.array([0, 1, 0])
).inverse(), ).inverse(),
pointgoal - gps, pointgoal - gps,
), ),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment