-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Filtered (term|disjunctive|conjunctive) queries. - Pre-filtered vector search. - Post-filtered vector search. - (Term|Disjunctive) queries queries combined across multiple fields using a DisjunctionMaxQuery. I settled on 5% for the filter density, which felt like a nice trade-off as queries would still match many documents, yet taking the filter into account should help speed up evaluation in a number of cases (ie. doing exhaustive evaluation and post-filtering hits that don't match the query would likely not be a good approach).
- Loading branch information
Showing
3 changed files
with
150 additions
and
6 deletions.
There are no files selected for viewing
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
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
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