Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Habitat Lab
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
Meta Research
Habitat Lab
Commits
c928734f
Commit
c928734f
authored
5 years ago
by
Oleksandr Maksymets
Browse files
Options
Downloads
Patches
Plain Diff
Fixed for sensors test
parent
4d7d8b32
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
habitat/sims/habitat_simulator/habitat_simulator.py
+0
-8
0 additions, 8 deletions
habitat/sims/habitat_simulator/habitat_simulator.py
habitat/tasks/nav/nav.py
+3
-8
3 additions, 8 deletions
habitat/tasks/nav/nav.py
test/test_sensors.py
+2
-2
2 additions, 2 deletions
test/test_sensors.py
with
5 additions
and
18 deletions
habitat/sims/habitat_simulator/habitat_simulator.py
+
0
−
8
View file @
c928734f
...
@@ -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
)]
...
...
This diff is collapsed.
Click to expand it.
habitat/tasks/nav/nav.py
+
3
−
8
View file @
c928734f
...
@@ -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
,
)
)
...
...
This diff is collapsed.
Click to expand it.
test/test_sensors.py
+
2
−
2
View file @
c928734f
...
@@ -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
"
]
com
a
pss
=
obs
[
"
compass
"
]
comp
a
ss
=
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
(
com
a
pss
*
np
.
array
([
0
,
1
,
0
])
comp
a
ss
*
np
.
array
([
0
,
1
,
0
])
).
inverse
(),
).
inverse
(),
pointgoal
-
gps
,
pointgoal
-
gps
,
),
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment