recommendation-engine

How to create my own recommendation engine? [closed]

橙三吉。 提交于 2019-11-27 08:57:56
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 6 years ago . I am interested in recommendation engines these days and I want to improve myself in this area. I am currently reading "Programming Collective Intelligence" I think this is the best book about this subject, from O'Reilly. But I don't have any ideas how to implement engine; What I

How to build a 'related questions' engine?

天大地大妈咪最大 提交于 2019-11-27 03:33:39
问题 One of our bigger sites has a section where users can send questions to the website owner which get evaluated personally by his staff. When the same question pops up very often they can add this particular question to the Faq. In order to prevent them from receiving dozens of similar questions a day we would like to provide a feature similar to the 'Related questions' on this site (stack overflow). What ways are there to build this kind of feature? I know that i should somehow evaluate the

Get Google Analytics “Visitors Flow” data from API

谁都会走 提交于 2019-11-27 01:53:58
问题 I'm trying to gather information from Google Analytics to build a recommendation engine for my site. The site consists of many pages, so I'm tracking the number of times a user clicks, for example, from page A to page B. Currently I can measure the A -> B transitions on Google Analytics with previousPagePath = '/A' and nextPagePath = '/B' , but the question I really want to answer is, "Of all the visits to the site that included viewing page A, how many times were pages B, C, ... viewed in

Where can I learn about recommendation systems?

泪湿孤枕 提交于 2019-11-26 20:03:18
问题 I'd like to play around with building a recommendations system, and by that I mean an algorithm that looks at preferences and/or reviews posted by a user and then makes recommendations for them, similar to what netflix or amazon use. What are some good resources for learning how to write something like this? Where should I start? 回答1: Check out the Wikipedia page on the Netflix Prize and its discussion forum. Also, the somewhat related 2009 GitHub Contest is a good source for full source code