-
Notifications
You must be signed in to change notification settings - Fork 676
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
feat(autoware_tensorrt_yolox): add schema for autoware_tensorrt_yolox #10047
base: main
Are you sure you want to change the base?
feat(autoware_tensorrt_yolox): add schema for autoware_tensorrt_yolox #10047
Conversation
Signed-off-by: vish0012 <[email protected]>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
"maximum": 1.0, | ||
"description": "A threshold value of existence probability score, all of objects with score less than this threshold are ignored." | ||
"description": "Threshold for object existence probability. Objects with scores below this value are ignored.", | ||
"default": 0.35 |
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.
[Q] Why did you remove min and max values?
"maximum": 1.0, | ||
"description": "A threshold value of NMS." | ||
"description": "Threshold value for Non-Maximum Suppression (NMS).", | ||
"default": 0.7 |
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.
[Q] Why did you remove min and max values?
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #10047 +/- ##
=======================================
Coverage 29.76% 29.76%
=======================================
Files 1444 1444
Lines 108686 108681 -5
Branches 42664 42665 +1
=======================================
Hits 32352 32352
+ Misses 73150 73145 -5
Partials 3184 3184
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Description
Implement the ROS Node configuration layout described in https://github.com/orgs/autowarefoundation/discussions/3371 for the autoware_tensorrt_yolox package.
Related links
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.