Skip to content
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

Add support for radial search in exact search #2174

Commits on Oct 2, 2024

  1. Add support for radial search in exact search

    When threshold value is set, knn plugin will not be creating graph.
    Hence, when search request is trigged during that time, exact search
    will return valid results. However, radial search was never included
    as part of exact search. This will break radial search when threshold
    is added and radial search is requested. In this commit, new method
    is introduced to accept min score and return documents that are greater
    than min score, similar to how radial search is performed by native
    engines. This search is independent of engine, but, radial search is
    supported only for FAISS engine out of all native engines.
    
    Signed-off-by: Vijayan Balasubramanian <[email protected]>
    VijayanB committed Oct 2, 2024
    Configuration menu
    Copy the full SHA
    9637fb7 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2024

  1. Fix code review comments

    Signed-off-by: Vijayan Balasubramanian <[email protected]>
    VijayanB committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    54cdfe4 View commit details
    Browse the repository at this point in the history
  2. Refactor test

    Signed-off-by: Vijayan Balasubramanian <[email protected]>
    VijayanB committed Oct 3, 2024
    Configuration menu
    Copy the full SHA
    e51ae11 View commit details
    Browse the repository at this point in the history