From 55f35b2720587bec7e2508182c558e72b851371c Mon Sep 17 00:00:00 2001 From: sunshine-2015 Date: Mon, 16 Apr 2018 16:38:07 +0800 Subject: [PATCH] Update README_EN.md add link for the reference --- ltr/README_EN.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/ltr/README_EN.md b/ltr/README_EN.md index 0174fdfd..f36c5f08 100644 --- a/ltr/README_EN.md +++ b/ltr/README_EN.md @@ -45,7 +45,7 @@ for label, left_doc, right_doc in pairwise_train_dataset(): For the ranking model, the RankNet model of the Pairwise method and the LambdaRank of the Listwise method are provided in this example, respectively representing two types of the learning methods. The ranking model of the Pointwise method can be degraded to the regression problem. Please refer to the [recommendation system](https://github.com/PaddlePaddle/book/blob/develop/05.recommender_system/README.cn.md) in the PaddleBook. -### RankNet model +## RankNet model [RankNet](http://icml.cc/2015/wp-content/uploads/2015/06/icml_ranking.pdf) is a classic Pairwise ranking learning method, which is a typical forward neural network ranking model. The $i$ document in the document collection $S$ is denoted as $U_i$, its document feature vector is denoted as $x_i$, and for a given document pair $U_i$, $U_j$, RankNet maps the input single document feature vector $x$ to $f(x)$, and gets $s_i=f(x_i),$s_j=f(x_j)$.The probability that the correlation of $U_i$ is better than $U_j$ is recorded as $P_{i,j}$. @@ -87,7 +87,7 @@ Because the network structure in Pairwise is Left-right symmetrical, half of the The structure defined in the ***half_ranknet*** function uses the same model structure as in FIG 3: two hidden layers, a fully connected layer with **hidden_size=10** and a fully connected layer with **hidden_size=1**. In this example, **input_dim** refers to the dimension of the characteristic of the input **single document**. The value of label is 1,0. Each input sample is the structure of **