Skip to content

Latest commit

 

History

History
79 lines (59 loc) · 3.39 KB

README.md

File metadata and controls

79 lines (59 loc) · 3.39 KB

RankLib for .NET

NuGet Release Build Status license badge docs

Ranklib for .NET is a hardened port to .NET of RankLib, a popular open source learning to rank library written in Java. It maintains compatibility with input and output files of RankLib, allowing it to be used to integrate with systems that use RankLib, such as the Elasticsearch Learning to Rank and OpenSearch Learning to Rank plugins.

RankLib is available as both a command line tool for training and evaluating rankers, as well as a library for incorporating into solutions.

Installation

Library

To add as a library to an existing project

dotnet add package SearchPioneer.RankLib --prerelease

Command Line Tool

To add as a global .NET command line tool

dotnet tool install -g SearchPioneer.RankLib.Cli --prerelease

To see all the commands supported by the command line tool

dotnet-ranklib --help

What is Learning to Rank (LTR)?

Learning to Rank (LTR) is a technique in machine learning that trains models to optimize the ranking order of items in a list based on relevance to a specific query or user intent. The goal is to improve the quality of search results, recommendations, and other ranked lists by understanding and modeling what users find most relevant or useful. LTR is widely used in search engines, recommendation systems, and information retrieval to enhance user satisfaction and engagement.

Algorithms and Metrics

The following ranking algorithms are implemented

  1. MART (Multiple Additive Regression Trees, a.k.a. Gradient Boosted Decision Trees (GBDT))
  2. RankNet
  3. LambdaRank
  4. RankBoost
  5. AdaRank
  6. Coordinate Ascent
  7. LambdaMART
  8. ListNet
  9. Random Forests

The following metrics are implemented to measure the effectiveness of ranking

  1. Average Precision (MAP)
  2. Best at K (Best@K)
  3. Discounted Cumulative Gain (DCG@K)
  4. Expected Reciprocal Rank (ERR@K)
  5. Normalized Discounted Cumulative Gain (NDCG@K)
  6. Precision at K (P@K)
  7. Reciprocal Rank (RR)