如何构建推荐/相似性引擎
我正在寻找创建推荐引擎的技术。我正在使用 sphinx 全文引擎。
I am looking for techniques for creating a recommendation engine. I am using the sphinx fulltext engine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你真的应该关注处理人际关系的东西。您想要的是实现图(即节点和边)的东西,然后使用图遍历来查找符合您的条件的节点。这大大简化了它,但推荐引擎并不容易。
You should really be looking at something that handles relationships. What you want is something that implements a graph (i.e nodes and edges) then you use graph traversal to find nodes that match your criteria. That's simplifying it a lot, but recommendation engines are not easy.
http://code.google.com/apis/predict/
希望这会对您有所帮助。
http://code.google.com/apis/predict/
Hope this will help you.