RankBoost的思想比較简单,是二元Learning to rank的常规思路:通过构造目标分类器,使得pair之间的对象存在相对大小关系.通俗点说,把对象组成一对对的pair,比方一组排序r1>r2>r3>r4,那能够构成pair:(r1,r2)(r1,r3),(r1,r4),(r2,r3)(r3,r4),这种pair是正值,也就是label是1.而余下的pair如(r2,r1)的值应该是-1或0.这样一个排序问题就被巧妙的转换为了分类问题.近来CV界许多又用这种learning…
机器学习的 ranking 技术——learning2rank,包括 pointwise.pairwise.listwise 三大类型. [Ref-1]给出的: <Point wise ranking 类似于回归> Point wise ranking is analogous to regression. Each point has an associated rank score, and you want to predict that rank score. So your labe…