-
Notifications
You must be signed in to change notification settings - Fork 74
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
ByField Rerank Improvements #969
base: main
Are you sure you want to change the base?
Conversation
Thanks for creating this PR. Can you provide a few examples so that I can better understand the nuance between |
src/test/java/org/opensearch/neuralsearch/processor/rerank/ByFieldRerankProcessorTests.java
Outdated
Show resolved
Hide resolved
src/main/java/org/opensearch/neuralsearch/processor/rerank/ByFieldRerankProcessor.java
Outdated
Show resolved
Hide resolved
can you please check that this will work when the |
@brianf-aws is this still work in progress? |
Hey @martin-gaievski I paused on this mainly because we mentioned this was not urgent. I am not sure what time I should prioritize this, what are your thoughts? |
I don't think it's high priority, how about we close the PR for now, and then reopen once you have bandwidth for it? Let me know if you have objects/concerns |
Sounds good, thanks for understanding |
Hey everyone I want to reopen this PR and work on it, I should have more bandwidth with the holidays coming up. |
Good to see this reopened @brianf-aws, please let us know once it's ready for review |
@brianf-aws Is there any update? We can help you if you came across some challenges. |
Apologies for the delay I introduced a new commit that addresses previous review comments and adds String parsing. Thank you for your patience :) @yuye-aws, @martin-gaievski do you mind taking a look? |
All my comments have been resolved. Rerunning the failed CI tests now... |
CI failed due to flakey tests. This PR is fine. |
@martin-gaievski Do you have any hint to fix the flakey test: https://github.com/opensearch-project/neural-search/actions/runs/12521109826/job/35052143851?pr=969 |
we need a deep dive for that, three are multiple issues opened in relation to fixing flaky tests |
@brianf-aws can you rebase on the latest main please? There were multiple PRs merged recently to neural, having latest code will help RCA on the issue with tests |
Previously used docId for saying where the problem is, there is no gauarantee that this field exists instead _id is always guaranteed to be there. Also logging of the mapping was provided because it may be misleading when a user has a number as a string. It can be confusing for a user to something like [3.3] is not a number when the reality is that it was sent like "3.3" thus the type of the value is provided to help users understand better Signed-off-by: Brian Flores <[email protected]>
Signed-off-by: Brian Flores <[email protected]>
06a25a5
to
06d1577
Compare
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.
Looks good to me after rebase
Pinging @martin-gaievski to review again. |
Description
Fixes two logging issues
getClass().getSimpleName()
Adds Numerical String Parsing
Check List
--signoff
.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.