订购广告/优惠以增加收入(置信度算法?)

时间:2012-04-05 16:43:27

标签: algorithm sorting advertising

我有一个网站,其中会有一个用户可以填写虚拟货币的优惠清单。什么是一个不错的算法来决定排列它们的顺序?

重要的是:

  • 新的优惠提升,让更多人看到它们以获得一些优惠 他们的指标
  • 最高的EPC优惠(最佳赚钱机构,最高转换率)

我的指标:

 - Tags (if the user likes movies, the offers tagged with movies should move up)
 - Reported EPC - EPC of the offer according to the affiliate network
 - Network EPC  - EPC of the offer across all of our sites
 - Site EPC     - EPC of the offer on this site
 - Source EPC   - EPC of the offer from a certain source (there can be multiple per user)
 - Payout       - How much the offer pays per conversion (lead)
 - Clicks       - Clicks network-wide, site-wide, and from a certain source

针对此类问题是否有推荐的算法?我正在考虑一些排序置信度算法(如威尔逊排序算法),但我不知道如何用我的指标来实现它。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

您基本上是在尝试构建广告推荐系统。这应该是一个很好的起点:http://pages.cs.wisc.edu/~beechung/icml11-tutorial/。看一下netflix挑战(电影推荐),KDD杯2011挑战(音乐推荐)等等。