-
-
Notifications
You must be signed in to change notification settings - Fork 12.1k
[docs][misc] IOProcessor plugins fixes #24046
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
[docs][misc] IOProcessor plugins fixes #24046
Conversation
Signed-off-by: Christian Pinto <christian.pinto@ibm.com>
Signed-off-by: Christian Pinto <christian.pinto@ibm.com>
Signed-off-by: Christian Pinto <christian.pinto@ibm.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.
Code Review
This pull request introduces several valuable improvements. It fixes broken links in the documentation, which enhances usability. A critical correctness issue is addressed in post_process_async by sorting model outputs, ensuring that they are processed in the correct order. The PR also adds a new feature to disable softmax in pooling parameters for encode tasks, providing more control over the raw model output. This new feature is accompanied by corresponding updates in an example and tests. Additionally, the prithvi_io_processor plugin is simplified by removing redundant async method overrides, relying on the improved base class implementation. Overall, the changes are well-implemented and improve the robustness and functionality of IOProcessor plugins.
DarkLight1337
left a comment
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 for fixing!
maxdebayser
left a comment
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, I didn't think about the ordering issue.
Signed-off-by: Christian Pinto <christian.pinto@ibm.com>
Signed-off-by: Christian Pinto <christian.pinto@ibm.com>
This is a quick follow-up PR to #22820.
Fixes:
post_process_asyncbefore invokingpost_processin default interface implementationsoftmax=Falsein pooling params for encode with plugins to get the full model raw output.@DarkLight1337 @maxdebayser