-
Notifications
You must be signed in to change notification settings - Fork 505
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
[0.2.3][Hydra Migration] Made agents to be of type Dict[str, AgentConfig] and added migration readme #1007
Merged
vincentpierre
merged 14 commits into
facebookresearch:hydra_migration_3_v2
from
rpartsey:hydra_migration_3_v2_agents_upd
Nov 29, 2022
Merged
[0.2.3][Hydra Migration] Made agents to be of type Dict[str, AgentConfig] and added migration readme #1007
Changes from 10 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
af48d72
made habitat.simulator.agents be a Dict[str, AgentConfig]
rpartsey c82cdb4
addressed comments
rpartsey b56447e
refactored sim agents configuration
rpartsey bf44e6d
moved rearrange agents declarations to agents folder; finised agents …
rpartsey 5eb9ef2
updated get_config import
rpartsey cf0100e
Cfg sys migration readme (#2)
rpartsey d05b5b9
addressed most of the comments
rpartsey b8d32dd
added main_agent alias
rpartsey 87fdd95
renamed habitat config reagme and added baselines config readme
rpartsey fcffeb3
Merge branch 'hydra_migration_3_v2' into hydra_migration_3_v2_agents_upd
rpartsey de5150e
Update habitat-lab/habitat/config/default.py
rpartsey da80fd3
added desctiption for the agents_order field
rpartsey 66cbd8c
Merge branch 'hydra_migration_3_v2_agents_upd' of github.com:rpartsey…
rpartsey ce2ec58
added a dot :)
rpartsey File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Habitat-Lab Configuration System | ||
================================ | ||
![Habitat with Hydra](/res/img/habitat_with_hydra.png) | ||
|
||
Habitat-Lab's and Habitat-Baselines' configuration system has been changed from [YACS](https://github.com/rbgirshick/yacs) | ||
to [Hydra](https://hydra.cc). Please, see [habitat-lab/habitat/config/README.md](/habitat-lab/habitat/config/README.md) | ||
to find out more about what was changed, what new functionality is enabled and explore typical examples of | ||
how to work with configs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Okay, so why are we naming the agent with dictionary keys instead of just introducing a harmless name object to the AgentConfig? Seems like we are just complicating multiagent support. Is there a good reason to do this? Is it due to limitations in YAML? That dictionaries are easier to merge together? Can we preserve the ordering of the dictionary somehow to specify agent order?
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.
Better yet can we copy the way defaults is defined at the top fo the yaml