I am trying to fully understand the item-to-item Amazon's algorithm to apply it to my system to recommend items the user might like, matching the previous items the user liked.
So far I have read these: Amazon paper, item-to-item presentation and item-based algorithms. Also I found this question, but after that I just got more confused.
What I can tell is that I need to follow the next steps to get the list of recommended items:
- Have my data set with the items that liked to the users (I have set liked=1 and not liked=0).
- Use Pearson Correlation Score (How is this done? I found the formula, but is there any example?).
- Then what should I do?
So I came with this questions:
- What are the differences between the item-to-item and item-based filtering? Are both algorithms the same?
- Is it right to replace the ranked score with liked or not?
- Is it right to use the item-to-item algorithm, or is there any other more suitable for my case?
Any information about this topic will be appreciated.