I've been reading papers on pairwise ranking and this is what I don't get:
what is the difference in the training/testing data between pointwise and pairwise ranking? This is the paper that I have been reading: http://www.cs.cornell.edu/people/tj/publications/joachims_02c.pdf
In there, it says that a data point in pairwaise ranking is an inequality between two links:
[line] .=. [inequality between two links, which is the target] qid:[qid] [[feature of both link 1 and 2]:[value of 1 and 2]] # [info]
RankLib, however, does support pairwise rankers like RankNet and RankBoost, but the datapoint format that it uses it's that of pointwise
[line] .=. [absolute ranking, which is the target] qid:[qid] [feature1]:[value1] [feature2]:[value2] ... # [info]
Is there something I am missing?