Are there any well known algorithms for figuring out the "Recommended Items" that websites often use? On a new project, I'm currently tracking things they've viewed, purchased, searched on, favourited, etc. I am curious what the best way would be to utilize all of this information to intelligently give meaningful recommendations.
Algorithm for "recommend items" for a user who has some preferences tracked
372 Views Asked by egervari At
3
There are 3 best solutions below
0

I thing easyrec
would be a good starting point for you to track such user interactions.YOu just need to include some javascript code to your page and it does the rest.
http://easyrec.org/recommendation-engine
You can also check the other recommendation engines listed here https://stackoverflow.com/questions/4469281/recommendation-engine# but problem is most of these frameworks target user rating predicting over collaborative filtering.
0

- There are mechanisms like 'people who bought this items also bought'.
- Category tops: if someone is viewing 'computers/storage devices', show the top selling products in that category.
- Previous searches: use the (non offensive) items that the user has browsed in previous sessions. (there is a way to track via cookie for non logged in users)
- Promoted items: show items that are promoted and make big business benefit. However, do not get swayed away by this, show one or two promoted items to keep viewers interest.
There are recommendation engines, but as a developer business needs drives the recommendation creation. So, many times I find it's better to hack some SQL scripts to get them.
I recommend you two books:
Programming Collective Intelligence
Toby Segaran (ISBN: 978-0-596-52932-1)
http://shop.oreilly.com/product/9780596529321.do
In this book, "Chapter 2. Making Recommendations" covers:
Collective Intelligence in Action
Satnam Alag (ISBN: 1933988312)
http://www.manning.com/alag/
In this book, "Capter 12. Building a recommendation engine" covers:
I hope it helps you.