python 中的广告推荐系统

Ad recommender system in python

我尝试使用以下库来创建简单的广告推荐系统: http://surpriselib.com/ 惊喜库严格数据折叠结构:

Such a file is assumed to specify only one rating per line, and each line needs to respect the following structure:

user ; item ; rating ; [timestamp]

我使用没有评级的简单结构:

user_id ad_id

它定义了用户对广告的点击。我需要某种协作过滤器来向用户推荐合适的广告。我应该使用其他库来执行此操作还是有其他方法来创建广告推荐系统?

要构建推荐系统,您可以使用 Graphlab Create Library

它还包括带有推荐应用程序的示例应用程序。

https://github.com/turi-code/sample-movie-recommender

详情参考:

https://turi.com/learn/userguide/recommender/introduction.html