You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
Hello. I have a question about custom scoring.
I can get L2Norm-based knn score and cosine-based knn score.
What I want is weighted sum of two scoring method.
score(d,q) = w1 * (1/(1+L2Norm(v1(d),v1(q))) + w2 * cosine(v2(d),v2(q))
Is there any way to get this custom score?
(It seems that only one scoring method is possible for one index, because scoring method is declared in index creating time, am I right?)
The text was updated successfully, but these errors were encountered: