-
Notifications
You must be signed in to change notification settings - Fork 508
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes for the HRL Trainer #1209
Conversation
* Fixed interactive play * removing f string --------- Co-authored-by: vincentpierre <vincentpierre@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some comments. Please address especially on the habitat-lab side.
habitat-lab/habitat/tasks/rearrange/multi_task/rearrange_pddl.py
Outdated
Show resolved
Hide resolved
island_radius = sim.pathfinder.island_radius(start_position) | ||
if island_radius != targ_island_radius: | ||
continue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why we are checking this is not obvious.
island_radius = sim.pathfinder.island_radius(start_position) | |
if island_radius != targ_island_radius: | |
continue | |
island_radius = sim.pathfinder.island_radius(start_position) | |
position_on_largest_island = island_radius == targ_island_radius | |
if not position_on_largest_island: | |
continue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed, let me delay this change for a later PR to get the right solution.
* Speed fix * Added config overwrite * Updated speed fixes * Merged * Fixed PDDL * Bug Fix For Interactive Play Script (facebookresearch#1155) * Fixed interactive play * removing f string --------- Co-authored-by: vincentpierre <vincentpierre@users.noreply.github.com> * More PDDL fixes * Precommit * Updated docs * Cleaned up PDDL * Precommit * Fixed tests * Fixed PDDL base problem * Renamed PDDL types * CI test fix * PDDL Fixes * Handle repeat IDs * Fixed grasp criteria * Removed unnecessary code * Added rel idx fix * Proper rewards * Cleaned up sim * Removed unnecessary * Only PDDL for interactive play * Added some type check fixes * Addressing PR * Pddl fixes * precommit * Abstraction methods * Fixed problem with open/close tasks * Fixed tests --------- Co-authored-by: vincentpierre <vincentpierre@users.noreply.github.com>
* Speed fix * Added config overwrite * Updated speed fixes * Merged * Fixed PDDL * Bug Fix For Interactive Play Script (facebookresearch#1155) * Fixed interactive play * removing f string --------- Co-authored-by: vincentpierre <vincentpierre@users.noreply.github.com> * More PDDL fixes * Precommit * Updated docs * Cleaned up PDDL * Precommit * Fixed tests * Fixed PDDL base problem * Renamed PDDL types * CI test fix * PDDL Fixes * Handle repeat IDs * Fixed grasp criteria * Removed unnecessary code * Added rel idx fix * Proper rewards * Cleaned up sim * Removed unnecessary * Only PDDL for interactive play * Added some type check fixes * Addressing PR * Pddl fixes * precommit * Abstraction methods * Fixed problem with open/close tasks * Fixed tests --------- Co-authored-by: vincentpierre <vincentpierre@users.noreply.github.com>
Motivation and Context
Bug fixes for the HRL trainer to properly work
How Has This Been Tested
Training the HL policy on the rearrange easy task.
Types of changes