-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Proposal reference implementation #3924
Merged
ilyachur
merged 49 commits into
openvinotoolkit:master
from
blesniewski:proposal_ref_impl
Feb 8, 2021
Merged
Proposal reference implementation #3924
ilyachur
merged 49 commits into
openvinotoolkit:master
from
blesniewski:proposal_ref_impl
Feb 8, 2021
Conversation
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
blesniewski
force-pushed
the
proposal_ref_impl
branch
from
January 20, 2021 17:45
140c96a
to
3ff0e9f
Compare
ilyachur
reviewed
Jan 22, 2021
ngraph/core/reference/include/ngraph/runtime/reference/proposal.hpp
Outdated
Show resolved
Hide resolved
ngraph/core/reference/include/ngraph/runtime/reference/proposal.hpp
Outdated
Show resolved
Hide resolved
ngraph/core/reference/include/ngraph/runtime/reference/proposal.hpp
Outdated
Show resolved
Hide resolved
lazarevevgeny
suggested changes
Jan 25, 2021
lazarevevgeny
suggested changes
Jan 31, 2021
lazarevevgeny
suggested changes
Feb 2, 2021
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.
The spec looks good. But the shape infer function still needs improvements.
ilyachur
reviewed
Feb 3, 2021
...e/tests/functional/shared_test_classes/include/shared_test_classes/single_layer/proposal.hpp
Outdated
Show resolved
Hide resolved
inference-engine/tests/functional/shared_test_classes/src/single_layer/proposal.cpp
Outdated
Show resolved
Hide resolved
inference-engine/tests/functional/inference_engine/ngraph_reader/proposal_tests.cpp
Show resolved
Hide resolved
ngraph/core/reference/include/ngraph/runtime/reference/proposal.hpp
Outdated
Show resolved
Hide resolved
lazarevevgeny
approved these changes
Feb 3, 2021
ilyachur
approved these changes
Feb 5, 2021
LiyangLingIntel
pushed a commit
to Flex-plaidml-team/openvino
that referenced
this pull request
Apr 23, 2021
* Reference implementation for Proposal, enable CPU SLT * code style fix * add type prop test for invalid anchor count * add unit test * fix shapes in attribute test * temp workaround- disable maring end of boxes list * Disable CPU smoke test- spec misalignment * code style fixes * add some details to the specification * disable myriadx proposal slt * review changes, using usigned int and size_t * improve proposal op shape inference to cover dynamic too, add unit test coverage * remove unused variable in test body * remove batch size in tests where its not used * add post nms topn initialization in tests where it was missing * review comments * style fix * style fix 2 * add tests, remove unused variables, change shape inference checks * style fix * add input tensors type checks and test coverage * align input type in attribute and ngraphreader tests to match specification * fix wrong dimension in error message * proposalv4 ref impl * enable single layer and unit tests for proposalv4 ref impl * align output termination with cpu, enable cpu slt * custom slt compares to detect less-than-predicted number of boxes * custom slt compares to detect less-than-predicted number of boxes * Clarify output termination in spec * review comments * smaller input data for unit tests * add check for batch_dim being static * disable gpu slt for proposal * test data style fix * test data style fix 2 * add type section to specification * shape inference improvement * multiply expected 1st dim in tests by post_nms_topn * add checks and testcases for dynamic ranks * indentation, review comments * reduce code redundancy in ref implementation * remove comment * Fix typo in proposal1 spec * Fix typo in proposal4 spec (cherry picked from commit 210ad81)
YangleiZouIntel
pushed a commit
to plaidml/openvino
that referenced
this pull request
May 25, 2021
* Proposal reference implementation (openvinotoolkit#3924) * Reference implementation for Proposal, enable CPU SLT * code style fix * add type prop test for invalid anchor count * add unit test * fix shapes in attribute test * temp workaround- disable maring end of boxes list * Disable CPU smoke test- spec misalignment * code style fixes * add some details to the specification * disable myriadx proposal slt * review changes, using usigned int and size_t * improve proposal op shape inference to cover dynamic too, add unit test coverage * remove unused variable in test body * remove batch size in tests where its not used * add post nms topn initialization in tests where it was missing * review comments * style fix * style fix 2 * add tests, remove unused variables, change shape inference checks * style fix * add input tensors type checks and test coverage * align input type in attribute and ngraphreader tests to match specification * fix wrong dimension in error message * proposalv4 ref impl * enable single layer and unit tests for proposalv4 ref impl * align output termination with cpu, enable cpu slt * custom slt compares to detect less-than-predicted number of boxes * custom slt compares to detect less-than-predicted number of boxes * Clarify output termination in spec * review comments * smaller input data for unit tests * add check for batch_dim being static * disable gpu slt for proposal * test data style fix * test data style fix 2 * add type section to specification * shape inference improvement * multiply expected 1st dim in tests by post_nms_topn * add checks and testcases for dynamic ranks * indentation, review comments * reduce code redundancy in ref implementation * remove comment * Fix typo in proposal1 spec * Fix typo in proposal4 spec (cherry picked from commit 210ad81) * Replace nms partial sort to stable sort Co-authored-by: Bartosz Lesniewski <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Reference implementation for Proposal