Replies: 1 comment 2 replies
-
Not as far as I know. I am unsure if the code would support continuous 0-1 (I think that it might) scores. However, otherwise, a solution is as you say create a binary mapping and potentially two versions of the dataset (one with only relevant and one with both). However, it might be better to simply create a PR to update the reranking task to allow for multi-level relevance scores. @orionw knows more about this area than me so maybe he has a better idea. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Thank you for all your hard work.
I am trying to use a custom reranking dataset with multi-level relevance scores (e.g.,
relevant
,less relevant
,non-relevant
). However, it seemsAbsTaskReranking
only supports binary relevance scores (positive
/negative
). Is there any existing support for reranking datasets with multi-level relevance scores in MTEB?One workaround might be to convert multi-level relevance scores into binary ones (e.g.,
relevant
andless relevant
->positive
,non-relevant
->negative
), as mentioned in #818 (comment). While this approach is simple and effective, it is not ideal because it discards the granularity of the original relevance scores. Thank you in advance!Beta Was this translation helpful? Give feedback.
All reactions