most_similar() return the k most similar vectors #4364
Merged
+129
−14
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.
Description
Modified the
most_similar
method ofVectors
so that it returns the topn
most similar vectors rather than the single most similar vector.The new value returned looks like
(keys, best_rows, scores)
wherekeys
,best_rows
, andscores
are arrays containing an array for each query. Soscores[0]
would be an array of scores corresponding to then
vectors most similar to the0
th query.In theory, performance should not be impacted much —
argmax
is replaced byargpartition
, both of which run in linear time with respect to the number of elements. If the user chooses to sort then
most similar entries by setting thesort
parameter to true, it will add anO(n lg n)
step to sort the entries. However, I haven't tested the performance in practice yet and I might be missing something.This could break existing code since the return type is changed from a tuple of three 1d arrays to a tuple of three 2d arrays. We could have it use the old method when
n = 1
and the new method otherwise, but then it could be confusing to use & documentation could get messy. Could also keep the old method and add a newn_most_similar
method.This is my first time contributing to an open source project, so let me know your thoughts!
Types of change
Enhancement (#3697)
Checklist