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
Hi,
faced with interesting question, answer for which I don't have. When training LGBM Ranker it's necessary to provide a group array, which helps the model to distinct sessions and compare only those elements, which belong to the same group. So while training the model doesn't know that there are other groups when it compares documents from a given one. But while prediction we do not provide the model with group array and scores are not depended on the group. That's a little bit confusing. My question is - are the ranker scores for different groups in the same space or in other words - are scores for different groups comparable?
The text was updated successfully, but these errors were encountered:
I would pass the groups in iteratively during inference. So if I have 3 groups I want to predict ranks for, I would pass each one in one by one to the predict() method. If you pass all 3 at once, then you will get the model ranks for all rows in all 3 groups.
Hi,
faced with interesting question, answer for which I don't have. When training LGBM Ranker it's necessary to provide a group array, which helps the model to distinct sessions and compare only those elements, which belong to the same group. So while training the model doesn't know that there are other groups when it compares documents from a given one. But while prediction we do not provide the model with group array and scores are not depended on the group. That's a little bit confusing. My question is - are the ranker scores for different groups in the same space or in other words - are scores for different groups comparable?
The text was updated successfully, but these errors were encountered: