Learning to rank

From HandWiki
Short description: Use of machine learning to rank items

Learning to rank[1] or machine-learned ranking (MLR) is the application of machine learning, typically supervised, semi-supervised or reinforcement learning, in the construction of ranking models for information retrieval systems.[2] Training data may, for example, consist of lists of items with some partial order specified between items in each list. This order is typically induced by giving a numerical or ordinal score or a binary judgment (e.g. "relevant" or "not relevant") for each item. The goal of constructing the ranking model is to rank new, unseen lists in a similar way to rankings in the training data.

Applications

In information retrieval

A possible architecture of a machine-learned search engine.

Ranking is a central part of many information retrieval problems, such as document retrieval, collaborative filtering, sentiment analysis, and online advertising.

A possible architecture of a machine-learned search engine is shown in the accompanying figure.

Training data consists of queries and documents matching them together with the relevance degree of each match. It may be prepared manually by human assessors (or raters, as Google calls them), who check results for some queries and determine relevance of each result. It is not feasible to check the relevance of all documents, and so typically a technique called pooling is used — only the top few documents, retrieved by some existing ranking models are checked. This technique may introduce selection bias. Alternatively, training data may be derived automatically by analyzing clickthrough logs (i.e. search results which got clicks from users),[3] query chains,[4] or such search engines' features as Google's (since-replaced) SearchWiki. Clickthrough logs can be biased by the tendency of users to click on the top search results on the assumption that they are already well-ranked.

Training data is used by a learning algorithm to produce a ranking model which computes the relevance of documents for actual queries.

Typically, users expect a search query to complete in a short time (such as a few hundred milliseconds for web search), which makes it impossible to evaluate a complex ranking model on each document in the corpus, and so a two-phase scheme is used.[5] First, a small number of potentially relevant documents are identified using simpler retrieval models which permit fast query evaluation, such as the vector space model, boolean model, weighted AND,[6] or BM25. This phase is called top-[math]\displaystyle{ k }[/math] document retrieval and many heuristics were proposed in the literature to accelerate it, such as using a document's static quality score and tiered indexes.[7] In the second phase, a more accurate but computationally expensive machine-learned model is used to re-rank these documents.

In other areas

Learning to rank algorithms have been applied in areas other than information retrieval:

Feature vectors

For the convenience of MLR algorithms, query-document pairs are usually represented by numerical vectors, which are called feature vectors. Such an approach is sometimes called bag of features and is analogous to the bag of words model and vector space model used in information retrieval for representation of documents.

Components of such vectors are called features, factors or ranking signals. They may be divided into three groups (features from document retrieval are shown as examples):

  • Query-independent or static features — those features, which depend only on the document, but not on the query. For example, PageRank or document's length. Such features can be precomputed in off-line mode during indexing. They may be used to compute document's static quality score (or static rank), which is often used to speed up search query evaluation.[7][10]
  • Query-dependent or dynamic features — those features, which depend both on the contents of the document and the query, such as TF-IDF score or other non-machine-learned ranking functions.
  • Query-level features or query features, which depend only on the query. For example, the number of words in a query.

Some examples of features, which were used in the well-known LETOR dataset:

  • TF, TF-IDF, BM25, and language modeling scores of document's zones (title, body, anchors text, URL) for a given query;
  • Lengths and IDF sums of document's zones;
  • Document's PageRank, HITS ranks and their variants.

Selecting and designing good features is an important area in machine learning, which is called feature engineering.

Evaluation measures

There are several measures (metrics) which are commonly used to judge how well an algorithm is doing on training data and to compare the performance of different MLR algorithms. Often a learning-to-rank problem is reformulated as an optimization problem with respect to one of these metrics.

Examples of ranking quality measures:

  • Mean average precision (MAP);
  • DCG and NDCG;
  • Precision@n, NDCG@n, where "@n" denotes that the metrics are evaluated only on top n documents;
  • Mean reciprocal rank;
  • Kendall's tau;
  • Spearman's rho.

DCG and its normalized variant NDCG are usually preferred in academic research when multiple levels of relevance are used.[11] Other metrics such as MAP, MRR and precision, are defined only for binary judgments.

Recently, there have been proposed several new evaluation metrics which claim to model user's satisfaction with search results better than the DCG metric:

Both of these metrics are based on the assumption that the user is more likely to stop looking at search results after examining a more relevant document, than after a less relevant document.

Approaches

Tie-Yan Liu of Microsoft Research Asia has analyzed existing algorithms for learning to rank problems in his book Learning to Rank for Information Retrieval.[1] He categorized them into three groups by their input spaces, output spaces, hypothesis spaces (the core function of the model) and loss functions: the pointwise, pairwise, and listwise approach. In practice, listwise approaches often outperform pairwise approaches and pointwise approaches. This statement was further supported by a large scale experiment on the performance of different learning-to-rank methods on a large collection of benchmark data sets.[14]

In this section, without further notice, [math]\displaystyle{ x }[/math] denotes an object to be evaluated, for example, a document or an image, [math]\displaystyle{ f(x) }[/math] denotes a single-value hypothesis, [math]\displaystyle{ h(\cdot) }[/math] denotes a bi-variate or multi-variate function and [math]\displaystyle{ L(\cdot) }[/math] denotes the loss function.

Pointwise approach

In this case, it is assumed that each query-document pair in the training data has a numerical or ordinal score. Then the learning-to-rank problem can be approximated by a regression problem — given a single query-document pair, predict its score. Formally speaking, the pointwise approach aims at learning a function [math]\displaystyle{ f(x) }[/math] predicting the real-value or ordinal score of a document [math]\displaystyle{ x }[/math] using the loss function [math]\displaystyle{ L(f; x_j, y_j) }[/math].

A number of existing supervised machine learning algorithms can be readily used for this purpose. Ordinal regression and classification algorithms can also be used in pointwise approach when they are used to predict the score of a single query-document pair, and it takes a small, finite number of values.

Pairwise approach

In this case, the learning-to-rank problem is approximated by a classification problem — learning a binary classifier [math]\displaystyle{ h(x_u, x_v) }[/math] that can tell which document is better in a given pair of documents. The classifier shall take two documents as its input and the goal is to minimize a loss function [math]\displaystyle{ L(h; x_u, x_v, y_{u,v}) }[/math]. The loss function typically reflects the number and magnitude of inversions in the induced ranking.

In many cases, the binary classifier [math]\displaystyle{ h(x_u, x_v) }[/math] is implemented with a scoring function [math]\displaystyle{ f(x) }[/math]. As an example, RankNet [15] adapts a probability model and defines [math]\displaystyle{ h(x_u, x_v) }[/math] as the estimated probability of the document [math]\displaystyle{ x_u }[/math] has higher quality than [math]\displaystyle{ x_v }[/math]:

[math]\displaystyle{ P_{u, v}(f) = \text{CDF} (f(x_u) - f(x_v)), }[/math]

where [math]\displaystyle{ \text{CDF}(\cdot) }[/math] is a cumulative distribution function, for example, the standard logistic CDF, i.e.

[math]\displaystyle{ \text{CDF}(x) = \frac{ 1 }{ 1 + \exp\left[ - x \right] }. }[/math]

Listwise approach

These algorithms try to directly optimize the value of one of the above evaluation measures, averaged over all queries in the training data. This is often difficult in practice because most evaluation measures are not continuous functions with respect to ranking model's parameters, and so continuous approximations or bounds on evaluation measures have to be used. For example the SoftRank algorithm.[16] LambdaMART is a pairwise algorithm which has been empirically shown to approximate listwise objective functions.[17]

List of methods

A partial list of published learning-to-rank algorithms is shown below with years of first publication of each method:

Year Name Type Notes
1989 OPRF [18] 2 pointwise Polynomial regression (instead of machine learning, this work refers to pattern recognition, but the idea is the same)
1992 SLR [19] 2 pointwise Staged logistic regression
1999 MART (Multiple Additive Regression Trees) 2 pairwise
2000 Ranking SVM (RankSVM) 2 pairwise A more recent exposition is in,[3] which describes an application to ranking using clickthrough logs.
2002 Pranking[20] 1 pointwise Ordinal regression.
2003 RankBoost 2 pairwise
2005 RankNet 2 pairwise
2006 IR-SVM 2 pairwise Ranking SVM with query-level normalization in the loss function.
2006 LambdaRank pairwise/listwise RankNet in which pairwise loss function is multiplied by the change in the IR metric caused by a swap.
2007 AdaRank 3 listwise
2007 FRank 2 pairwise Based on RankNet, uses a different loss function - fidelity loss.
2007 GBRank 2 pairwise
2007 ListNet 3 listwise
2007 McRank 1 pointwise
2007 QBRank 2 pairwise
2007 RankCosine 3 listwise
2007 RankGP[21] 3 listwise
2007 RankRLS 2 pairwise

Regularized least-squares based ranking. The work is extended in [22] to learning to rank from general preference graphs.

2007 SVMmap 3 listwise
2008 LambdaSMART/LambdaMART pairwise/listwise Winning entry in the Yahoo Learning to Rank competition in 2010, using an ensemble of LambdaMART models. Based on MART (1999)[23] “LambdaSMART”, for Lambda-submodel-MART, or LambdaMART for the case with no submodel.
2008 ListMLE 3 listwise Based on ListNet.
2008 PermuRank 3 listwise
2008 SoftRank 3 listwise
2008 Ranking Refinement[24] 2 pairwise A semi-supervised approach to learning to rank that uses Boosting.
2008 SSRankBoost[25] 2 pairwise An extension of RankBoost to learn with partially labeled data (semi-supervised learning to rank)
2008 SortNet[26] 2 pairwise SortNet, an adaptive ranking algorithm which orders objects using a neural network as a comparator.
2009 MPBoost 2 pairwise Magnitude-preserving variant of RankBoost. The idea is that the more unequal are labels of a pair of documents, the harder should the algorithm try to rank them.
2009 BoltzRank 3 listwise Unlike earlier methods, BoltzRank produces a ranking model that looks during query time not just at a single document, but also at pairs of documents.
2009 BayesRank 3 listwise A method combines Plackett-Luce Model and neural network to minimize the expected Bayes risk, related to NDCG, from the decision-making aspect.
2010 NDCG Boost[27] 3 listwise A boosting approach to optimize NDCG.
2010 GBlend 2 pairwise Extends GBRank to the learning-to-blend problem of jointly solving multiple learning-to-rank problems with some shared features.
2010 IntervalRank 2 pairwise & listwise
2010 CRR 2 pointwise & pairwise Combined Regression and Ranking. Uses stochastic gradient descent to optimize a linear combination of a pointwise quadratic loss and a pairwise hinge loss from Ranking SVM.
2014 LCR 2 pairwise Applied local low-rank assumption on collaborative ranking. Received best student paper award at WWW'14.
2015 FaceNet pairwise Ranks face images with the triplet metric via deep convolutional network.
2016 XGBoost pairwise Supports various ranking objectives and evaluation metrics.
2017 ES-Rank listwise Evolutionary Strategy Learning to Rank technique with 7 fitness evaluation metrics
2018 DLCM [28] 2 listwise A multi-variate ranking function that encodes multiple items from an initial ranked list (local context) with a recurrent neural network and create result ranking accordingly.
2018 PolyRank[29] pairwise Learns simultaneously the ranking and the underlying generative model from pairwise comparisons.
2018 FATE-Net/FETA-Net [30] listwise End-to-end trainable architectures, which explicitly take all items into account to model context effects.
2019 FastAP [31] listwise Optimizes Average Precision to learn deep embeddings
2019 Mulberry listwise & hybrid Learns ranking policies maximizing multiple metrics across the entire dataset
2019 DirectRanker pairwise Generalisation of the RankNet architecture
2019 GSF [32] 2 listwise A permutation-invariant multi-variate ranking function that encodes and ranks items with groupwise scoring functions built with deep neural networks.
2020 RaMBO[33] listwise Optimizes rank-based metrics using blackbox backpropagation[34]
2020 PRM [35] pairwise Transformer network encoding both the dependencies among items and the interactions

between the user and items

2020 SetRank [36] 2 listwise A permutation-invariant multi-variate ranking function that encodes and ranks items with self-attention networks.
2021 PiRank [37] listwise Differentiable surrogates for ranking able to exactly recover the desired metrics and scales favourably to large list sizes, significantly improving internet-scale benchmarks.
2022 SAS-Rank listwise Combining Simulated Annealing with Evolutionary Strategy for implicit and explicit learning to rank from relevance labels
2022 VNS-Rank listwise Variable Neighborhood Search in 2 Novel Methodologies in AI for Learning to Rank
2022 VNA-Rank listwise Combining Simulated Annealing with Variable Neighbourhood Search for Learning to Rank
2023 GVN-Rank listwise Combining Gradient Ascent with Variable Neighbourhood Search for Learning to Rank

Note: as most supervised learning to Rank algorithms can be applied to pointwise, pairwise and listwise case, only those methods which are specifically designed with ranking in mind are shown above.

History

Norbert Fuhr introduced the general idea of MLR in 1992, describing learning approaches in information retrieval as a generalization of parameter estimation;[38] a specific variant of this approach (using polynomial regression) had been published by him three years earlier.[18] Bill Cooper proposed logistic regression for the same purpose in 1992 [19] and used it with his Berkeley research group to train a successful ranking function for TREC. Manning et al.[39] suggest that these early works achieved limited results in their time due to little available training data and poor machine learning techniques.

Several conferences, such as NIPS, SIGIR and ICML had workshops devoted to the learning-to-rank problem since mid-2000s (decade).

Practical usage by search engines

Commercial web search engines began using machine learned ranking systems since the 2000s (decade). One of the first search engines to start using it was AltaVista (later its technology was acquired by Overture, and then Yahoo), which launched a gradient boosting-trained ranking function in April 2003.[40][41]

Bing's search is said to be powered by RankNet algorithm,[42][when?] which was invented at Microsoft Research in 2005.

In November 2009 a Russian search engine Yandex announced[43] that it had significantly increased its search quality due to deployment of a new proprietary MatrixNet algorithm, a variant of gradient boosting method which uses oblivious decision trees.[44] Recently they have also sponsored a machine-learned ranking competition "Internet Mathematics 2009"[45] based on their own search engine's production data. Yahoo has announced a similar competition in 2010.[46]

As of 2008, Google's Peter Norvig denied that their search engine exclusively relies on machine-learned ranking.[47] Cuil's CEO, Tom Costello, suggests that they prefer hand-built models because they can outperform machine-learned models when measured against metrics like click-through rate or time on landing page, which is because machine-learned models "learn what people say they like, not what people actually like".[48]

In January 2017, the technology was included in the open source search engine Apache Solr.[49] It is also available in the open source OpenSearch and the source-available Elasticsearch.[50][51] These implementations make learning to rank widely accessible for enterprise search.

Vulnerabilities

Similar to recognition applications in computer vision, recent neural network based ranking algorithms are also found to be susceptible to covert adversarial attacks, both on the candidates and the queries.[52] With small perturbations imperceptible to human beings, ranking order could be arbitrarily altered. In addition, model-agnostic transferable adversarial examples are found to be possible, which enables black-box adversarial attacks on deep ranking systems without requiring access to their underlying implementations.[52][53]

Conversely, the robustness of such ranking systems can be improved via adversarial defenses such as the Madry defense.[54]

See also

References

  1. 1.0 1.1 Tie-Yan Liu (2009), "Learning to Rank for Information Retrieval", Foundations and Trends in Information Retrieval 3 (3): 225–331, doi:10.1561/1500000016, ISBN 978-1-60198-244-5 . Slides from Tie-Yan Liu's talk at WWW 2009 conference are available online
  2. Mehryar Mohri, Afshin Rostamizadeh, Ameet Talwalkar (2012) Foundations of Machine Learning, The MIT Press ISBN:9780262018258.
  3. 3.0 3.1 Joachims, T. (2002), "Optimizing Search Engines using Clickthrough Data", Proceedings of the ACM Conference on Knowledge Discovery and Data Mining, http://www.cs.cornell.edu/people/tj/publications/joachims_02c.pdf, retrieved 2009-11-11 
  4. Joachims T.; Radlinski F. (2005), "Query Chains: Learning to Rank from Implicit Feedback", Proceedings of the ACM Conference on Knowledge Discovery and Data Mining, Bibcode2006cs........5035R, http://radlinski.org/papers/Radlinski05QueryChains.pdf, retrieved 2009-12-19 
  5. B. Cambazoglu; H. Zaragoza; O. Chapelle; J. Chen; C. Liao; Z. Zheng; J. Degenhardt., "Early exit optimizations for additive machine learned ranking systems", WSDM '10: Proceedings of the Third ACM International Conference on Web Search and Data Mining, 2010., http://olivier.chapelle.cc/pub/wsdm2010.pdf, retrieved 2009-12-23 
  6. "Efficient query evaluation using a two-level retrieval process", Proceedings of the twelfth international conference on Information and knowledge management, 2003, pp. 426–434, doi:10.1145/956863.956944, ISBN 978-1-58113-723-1, http://cis.poly.edu/westlab/papers/cntdstrb/p426-broder.pdf, retrieved 2009-12-15 
  7. 7.0 7.1 Manning C.; Raghavan P.; Schütze H. (2008), Introduction to Information Retrieval, Cambridge University Press . Section 7.1
  8. 8.0 8.1 Kevin K. Duh (2009), Learning to Rank with Partially-Labeled Data, http://ssli.ee.washington.edu/people/duh/thesis/uwthesis.pdf, retrieved 2009-12-27 
  9. Yuanhua Lv, Taesup Moon, Pranam Kolari, Zhaohui Zheng, Xuanhui Wang, and Yi Chang, Learning to Model Relatedness for News Recommendation , in International Conference on World Wide Web (WWW), 2011.
  10. Richardson, M.; Prakash, A.; Brill, E. (2006). "Beyond PageRank: Machine Learning for Static Ranking". pp. 707–715. http://research.microsoft.com/en-us/um/people/mattri/papers/www2006/staticrank.pdf. Retrieved 2009-11-18. 
  11. "Archived copy". http://www.stanford.edu/class/cs276/handouts/lecture15-learning-ranking.ppt. 
  12. Olivier Chapelle; Donald Metzler; Ya Zhang; Pierre Grinspan (2009), "Expected Reciprocal Rank for Graded Relevance", CIKM, http://research.yahoo.com/files/err.pdf 
  13. Gulin A.; Karpovich P.; Raskovalov D.; Segalovich I. (2009), "Yandex at ROMIP'2009: optimization of ranking algorithms by machine learning methods", Proceedings of ROMIP'2009: 163–168, http://romip.ru/romip2009/15_yandex.pdf, retrieved 2009-11-13  (in Russian)
  14. Tax, Niek; Bockting, Sander; Hiemstra, Djoerd (2015), "A cross-benchmark comparison of 87 learning to rank methods", Information Processing & Management 51 (6): 757–772, doi:10.1016/j.ipm.2015.07.002, http://wwwhome.cs.utwente.nl/~hiemstra/papers/ipm2015.pdf, retrieved 2017-10-15 
  15. Burges, Chris J. C.; Shaked, Tal; Renshaw, Erin; Lazier, Ari; Deeds, Matt; Hamilton, Nicole; Hullender, Greg (1 August 2005). Learning to Rank using Gradient Descent. https://www.microsoft.com/en-us/research/publication/learning-to-rank-using-gradient-descent. Retrieved 31 March 2021. 
  16. Taylor, M.J., Guiver, J., Robertson, S.E., & Minka, T.P. (2008). SoftRank: optimizing non-smooth rank metrics. Web Search and Data Mining.
  17. Burges, Chris J. C. (2010-06-23) (in en-US). From RankNet to LambdaRank to LambdaMART: An Overview. https://www.microsoft.com/en-us/research/publication/from-ranknet-to-lambdarank-to-lambdamart-an-overview/. 
  18. 18.0 18.1 Fuhr, Norbert (1989), "Optimum polynomial retrieval functions based on the probability ranking principle", ACM Transactions on Information Systems 7 (3): 183–204, doi:10.1145/65943.65944 
  19. 19.0 19.1 Cooper, William S.; Gey, Frederic C.; Dabney, Daniel P. (1992), "Probabilistic retrieval based on staged logistic regression", Proceedings of the 15th annual international ACM SIGIR conference on Research and development in information retrieval - SIGIR '92, pp. 198–210, doi:10.1145/133160.133199, ISBN 978-0897915236 
  20. Pranking. 2001. pp. 641–647. 
  21. RankGP. 
  22. Pahikkala, Tapio; Tsivtsivadze, Evgeni; Airola, Antti; Järvinen, Jouni; Boberg, Jorma (2009), "An efficient algorithm for learning to rank from preference graphs", Machine Learning 75 (1): 129–165, doi:10.1007/s10994-008-5097-z. 
  23. C. Burges. (2010). From RankNet to LambdaRank to LambdaMART: An Overview .
  24. Rong Jin, Hamed Valizadegan, Hang Li, Ranking Refinement and Its Application for Information Retrieval , in International Conference on World Wide Web (WWW), 2008.
  25. Massih-Reza Amini, Vinh Truong, Cyril Goutte, A Boosting Algorithm for Learning Bipartite Ranking Functions with Partially Labeled Data , International ACM SIGIR conference, 2008. The code is available for research purposes.
  26. Leonardo Rigutini, Tiziano Papini, Marco Maggini, Franco Scarselli, "SortNet: learning to rank by a neural-based sorting algorithm" , SIGIR 2008 workshop: Learning to Rank for Information Retrieval, 2008
  27. Hamed Valizadegan, Rong Jin, Ruofei Zhang, Jianchang Mao, Learning to Rank by Optimizing NDCG Measure , in Proceeding of Neural Information Processing Systems (NIPS), 2010.
  28. Ai, Qingyao; Bi, Keping; Jiafeng, Guo; Croft, W. Bruce (2018), "Learning a Deep Listwise Context Model for Ranking Refinement", The 41st International ACM SIGIR Conference on Research & Development in Information Retrieval, pp. 135–144, doi:10.1145/3209978.3209985, ISBN 9781450356572 
  29. Davidov, Ori; Ailon, Nir; Oliveira, Ivo F. D. (2018). "A New and Flexible Approach to the Analysis of Paired Comparison Data". Journal of Machine Learning Research 19 (60): 1–29. ISSN 1533-7928. http://jmlr.org/papers/v19/17-179.html. Retrieved 2019-09-17. 
  30. Pfannschmidt, Karlson; Gupta, Pritha; Hüllermeier, Eyke (2018). "Deep Architectures for Learning Context-dependent Ranking Functions". arXiv:1803.05796 [stat.ML].
  31. Fatih Cakir, Kun He, Xide Xia, Brian Kulis, Stan Sclaroff, Deep Metric Learning to Rank , In Proc. IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2019.
  32. Ai, Qingyao; Wang, Xuanhui; Bruch, Sebastian; Golbandi, Nadav; Bendersky, Michael; Najork, Marc (2019), "Learning Groupwise Multivariate Scoring Functions Using Deep Neural Networks", Proceedings of the 2019 ACM SIGIR International Conference on Theory of Information Retrieval, pp. 85–92, doi:10.1145/3341981.3344218, ISBN 9781450368810 
  33. Rolínek, Michal; Musil, Vít; Paulus, Anselm; Vlastelica, Marin; Michaelis, Claudio; Martius, Georg (2020-03-18). "Optimizing Rank-based Metrics with Blackbox Differentiation". arXiv:1912.03500 [cs.LG].
  34. Vlastelica, Marin; Paulus, Anselm; Musil, Vít; Martius, Georg; Rolínek, Michal (2019-12-04) (in en). Differentiation of Blackbox Combinatorial Solvers. 
  35. Liu, Weiwen; Liu, Qing; Tang, Ruiming; Chen, Junyang; He, Xiuqiang; Heng, Pheng Ann (2020-10-19). "Personalized Re-ranking with Item Relationships for E-commerce". Proceedings of the 29th ACM International Conference on Information & Knowledge Management. CIKM '20. Virtual Event, Ireland: Association for Computing Machinery. pp. 925–934. doi:10.1145/3340531.3412332. ISBN 978-1-4503-6859-9. https://doi.org/10.1145/3340531.3412332. Retrieved 2021-04-26. 
  36. Pang, Liang; Xu, Jun; Ai, Qingyao; Lan, Yanyan; Cheng, Xueqi; Wen, Jirong (2020), "SetRank", Proceedings of the 43rd International ACM SIGIR Conference on Research and Development in Information Retrieval, pp. 499–508, doi:10.1145/3397271.3401104, ISBN 9781450380164 
  37. Swezey, Robin; Grover, Aditya; Charron, Bruno; Ermon, Stefano (2021-11-27). "PiRank: Scalable Learning To Rank via Differentiable Sorting". Advances in Neural Information Processing Systems. NeurIPS '21 (Virtual Event, Ireland) 34. 
  38. Fuhr, Norbert (1992), "Probabilistic Models in Information Retrieval", Computer Journal 35 (3): 243–255, doi:10.1093/comjnl/35.3.243 
  39. Manning C.; Raghavan P.; Schütze H. (2008), Introduction to Information Retrieval, Cambridge University Press . Sections 7.4 and 15.5
  40. Jan O. Pedersen. The MLR Story
  41. U.S. Patent 7,197,497
  42. "Bing Search Blog: User Needs, Features and the Science behind Bing". http://www.bing.com/community/blogs/search/archive/2009/06/01/user-needs-features-and-the-science-behind-bing.aspx?PageIndex=4. 
  43. Yandex corporate blog entry about new ranking model "Snezhinsk" (in Russian)
  44. The algorithm wasn't disclosed, but a few details were made public in [1] and [2] .
  45. "Yandex's Internet Mathematics 2009 competition page". http://imat2009.yandex.ru/academic/mathematic/2009/en/. 
  46. "Yahoo Learning to Rank Challenge". http://learningtorankchallenge.yahoo.com/. 
  47. Rajaraman, Anand (2008-05-24). "Are Machine-Learned Models Prone to Catastrophic Errors?". http://anand.typepad.com/datawocky/2008/05/are-human-experts-less-prone-to-catastrophic-errors-than-machine-learned-models.html. 
  48. Costello, Tom (2009-06-26). "Cuil Blog: So how is Bing doing?". http://www.cuil.com/info/blog/2009/06/26/so-how-is-bing-doing. 
  49. "How Bloomberg Integrated Learning-to-Rank into Apache Solr | Tech at Bloomberg" (in en-US). Tech at Bloomberg. 2017-01-23. https://www.techatbloomberg.com/blog/bloomberg-integrated-learning-rank-apache-solr/. 
  50. "Learning to Rank for Amazon OpenSearch Service - Amazon OpenSearch Service". https://docs.aws.amazon.com/opensearch-service/latest/developerguide/learning-to-rank.html. 
  51. "Elasticsearch Learning to Rank: the documentation — Elasticsearch Learning to Rank documentation". https://elasticsearch-learning-to-rank.readthedocs.io/en/latest/. 
  52. 52.0 52.1 Zhou, Mo; Niu, Zhenxing; Wang, Le; Zhang, Qilin; Hua, Gang (2020). "Adversarial Ranking Attack and Defense". arXiv:2002.11293v2 [cs.CV].
  53. Li, Jie; Ji, Rongrong; Liu, Hong; Hong, Xiaopeng; Gao, Yue; Tian, Qi (2019). Universal Perturbation Attack Against Image Retrieval. pp. 4899–4908. https://openaccess.thecvf.com/content_ICCV_2019/html/Li_Universal_Perturbation_Attack_Against_Image_Retrieval_ICCV_2019_paper.html. Retrieved 2020-07-04. 
  54. Madry, Aleksander; Makelov, Aleksandar; Schmidt, Ludwig; Tsipras, Dimitris; Vladu, Adrian (2017-06-19). "Towards Deep Learning Models Resistant to Adversarial Attacks". arXiv:1706.06083v4 [stat.ML].

External links

Competitions and public datasets