Score Reranker udf? #33252
Unanswered
JackTan25
asked this question in
Q&A and General discussion
Score Reranker udf?
#33252
Replies: 3 comments 2 replies
-
|
Wait @czs007 to comment. |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
thanks @czs007 I will modify the source code and test it locally |
Beta Was this translation helpful? Give feedback.
0 replies
-
@czs007 I modify only one row code, but after test, I find out the recall is zero. That's very strange. Maybe my modification is wrong??
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello, I'm trying to use milvus's multi-column top-k result. But I find the recall is very low. Finally, I find the reason lies that milvus use https://milvus.io/docs/reranking.md#Weighted-Scoring-WeightedRanker, which will not use distance as score. I hope we can use the origin distance as the score computation, that's
(w0 * L2(vector0, v_const0) + w1 * L2(vector1,v_const1) + w2 * L2(vector2,v_const2))by using WeightRanker(w0,w1,w2). Hope add new ranker to implement this one.Beta Was this translation helpful? Give feedback.
All reactions