Pls also be patient with my writing, as my English is not proficient.

As a programmer, I wanna learn about the algorithm, or the machine learning intelligence, that are implemented underneath such recommendation systems or related-based systems. For instance, the most obvious example would be from Amazon. They have a really good recommendation system. They know: if you like this, you might also like that, or something else like: how many % of people like this and that together.

Of course I know Amazon is a big guy and they invested a lot of brain and money into these systems. But, on the very basic core, how can we implement something like that within our database? How can we identify how this object relate to other? How can we build a statistic unit that handle this kind of thing?

I'd appreciate if someone can point out some algorithms. Or, basically, point out some good direct references/ books that we can all learn from. Thank you all!

link|improve this question
feedback

3 Answers

The are 2 different types of recommendation engines.

The simplest is item-based ie "customers that bought product A also bought product B". This is easy to implement. Store a sparse symmetrical matrix nxn (where n is the number of items). Each element (m[a][b]) is the number of times anyone has bought item 'a' along with item 'b'.

The other is user-based. That is "people like you often like things like this". A possible solution to this problem is k-means clustering. ie construct a set of clusters where users of similar taste are placed in the same cluster and make suggestions based on users in the same cluster.

A better solution, but an even more complicated one is a technique called Restricted Boltzmann Machines. There's an introduction to them here

link|improve this answer
1  
@HTa: The distinction between "customer similarity" and "product similarity" which @dan_waterworth draws is the most fundamental dividing line among recommendation engine strategies. However "restricted boltzmann machines" and "k-means clustering" should be seen as stand-ins for "whatever machine learning technique you want to use". Either customer-similarity or product-similarity can be done with a matrix and either can be done with A.I. / stats / M.L. You can read about either on Wikipedia. – Lao Tzu Mar 9 '11 at 8:56
feedback

A first attempt could look like this:

//First Calculate how often any product pair was bought together
//The time/memory should be about Sum over all Customers of Customer.BoughtProducts^2
Dictionary<Pair<ProductID,ProductID>> boughtTogether=new Dictionary<Pair<ProductID,ProductID>>();
foreach(Customer in Customers)
{
    foreach(product1 in Customer.BoughtProducts)
        foreach(product2 in Customer.BoughtProducts)
            {
                int counter=boughtTogether[Pair(product1,product2)] or 0 if missing;
                counter++;
                boughtTogether[Pair(product1,product2)]=counter;
            }
}

boughtTogether.GroupBy(entry.Key.First).Select(group.OrderByDescending(entry=>entry.Value).Take(10).Select(new{key.Second as ProductID,Value as Count}));

First I calculate how often each pair of products was bought together, and then I group them by the product and select the top 20 other products bought with it. The result should be put into some kind of dictionary keyed by product ID.

This might get too slow or cost too much memory for large databases.

link|improve this answer
feedback

I think, you talk about knowledge base systems. I don't remember the programming language (maybe LISP), but there is implementations. Also, look at OWL.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.