-
Notifications
You must be signed in to change notification settings - Fork 193
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
Add NeurIPS2022 competition agent to agent zoo #1838
Conversation
Adaickalavan
commented
Feb 7, 2023
•
edited
Loading
edited
- Adds agent contributed as part of NeurIPS2022 Driving SMARTS competition to the SMARTS agent zoo.
- Agent added: Interaction-aware Motion Prediction
- Policy files are hosted at PyPI and smarts-project.
- Added documentation in ReadTheDocs.
baselines/driving_smarts/v0/interaction_aware_motion_prediction.yaml
Outdated
Show resolved
Hide resolved
@@ -0,0 +1,19 @@ | |||
[metadata] | |||
name = smarts_agent_iamp_stub |
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.
Is this name intended?
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.
This setup file simply installs smarts_agent_iamp
package as dependency which contains the entire trained model. Thus I named this as <package_name>_stub
. Any other naming system is welcomed. Alternatively, we may also consider sidestepping this setup file and somehow directly pip install smarts_agent_iamp
package when users execute scl zoo install <agent_locator>
.
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.
It seems fine for now.
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.
Fantastic work!