-
Notifications
You must be signed in to change notification settings - Fork 102
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
End-to-end planner updates #349
Conversation
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.
Thanks @halil93ibrahim for the new node and the updates! As this tool seems more involved and different in nature, i don't think we need to force the ROS node format that is followed in other packages, what do you think @ad-daniel?
Changes are good from my perspective, most comments are about minor stuff; some broken links in the docs and leftover comments.
projects/opendr_ws2/src/planning/planning/end_to_end_planner.py
Outdated
Show resolved
Hide resolved
src/opendr/planning/end_to_end_planning/e2e_planning_learner.py
Outdated
Show resolved
Hide resolved
src/opendr/planning/end_to_end_planning/envs/UAV_depth_planning_env.py
Outdated
Show resolved
Hide resolved
src/opendr/planning/end_to_end_planning/envs/UAV_depth_planning_env.py
Outdated
Show resolved
Hide resolved
src/opendr/planning/end_to_end_planning/envs/UAV_depth_planning_env.py
Outdated
Show resolved
Hide resolved
src/opendr/planning/end_to_end_planning/envs/UAV_depth_planning_env.py
Outdated
Show resolved
Hide resolved
Co-authored-by: Kostas Tsampazis <27914645+tsampazk@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.
Yes, I think this tool is a bit of an exception and it doesn't make much sense to enforce the same constraints as the others
src/opendr/planning/end_to_end_planning/e2e_planning_learner.py
Outdated
Show resolved
Hide resolved
Hello, I have implemented your comments. Please let me know If there is further. |
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.
Thanks @halil93ibrahim! Two very minor comments and it's good to go from my perspective.
For tests to run successfully, preferably roscore and the Webots world provided are expected to run. What should I do to perform those?
I'm not exactly sure how to handle this.
Co-authored-by: Kostas Tsampazis <27914645+tsampazk@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.
Thank you!
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.
Thank you
For tests to run successfully, preferably roscore and the Webots world provided are expected to run. What should I do to perform those?
You mean for the integrated tests (CI) ? The CI machines don't have GPU and running simulations CPU-only will likely result in very long tests, and the simulation also relied on a older version of webots (~1.5GB at the time) and required Ardupilot. As such we decided not to go that route and instead have a test that just ensures the tool is functional (i.e. can be installed without dependency conflicts and tests some functionality). An easier approach could be to record locally the simulation data (sensor data) and use that in the test without needing to install webots itself. At the time we opted for the current test, do you think a different approach would be better now?
653ae93
I meant the CI tests. Now, the tests are passing similar to the one we did before. The tool does not require Ardupilot in this version, but still needs the old version of Webots. So, I could think of a different approach when I complete the implementations in Webots 2022b. |
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.
Thanks @halil93ibrahim, new changes LGTM!
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.
Ah I see, having webots on the loop would be ideal, but like I mentioned it will depend on the performance. If the tests take too long is not great and without GPU that might be the case. We can explore the option again when the version for R2022b is ready.
Looks good to me as well, thank you!
I am creating this PR instead of #286, since it includes updates in the end-to-end planner tool to include the recent work. I have also implemented the ROS1 node here, which publishes the output of the planner as a target waypoint.